-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Feb 19, 2025 at 11:17 AM
-- Server version: 10.4.32-MariaDB
-- PHP Version: 8.3.16

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


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

--
-- Database: `avs_ecom`
--

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

--
-- Table structure for table `activations`
--

CREATE TABLE `activations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `code` varchar(120) NOT NULL,
  `completed` tinyint(1) NOT NULL DEFAULT 0,
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `activations`
--

INSERT INTO `activations` (`id`, `user_id`, `code`, `completed`, `completed_at`, `created_at`, `updated_at`) VALUES
(1, 1, 'yUDBVhDHUsdbHw2mBg75kMLkxIuhSgES', 1, '2024-10-31 20:46:47', '2024-10-31 20:46:47', '2024-10-31 20:46:47');

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

--
-- Table structure for table `admin_notifications`
--

CREATE TABLE `admin_notifications` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `action_label` varchar(191) DEFAULT NULL,
  `action_url` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  `read_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `permission` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ads`
--

CREATE TABLE `ads` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `expired_at` datetime DEFAULT NULL,
  `location` varchar(120) DEFAULT NULL,
  `key` varchar(120) NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `url` varchar(191) DEFAULT NULL,
  `clicked` bigint(20) NOT NULL DEFAULT 0,
  `order` int(11) DEFAULT 0,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `open_in_new_tab` tinyint(1) NOT NULL DEFAULT 1,
  `tablet_image` varchar(191) DEFAULT NULL,
  `mobile_image` varchar(191) DEFAULT NULL,
  `ads_type` varchar(191) DEFAULT NULL,
  `google_adsense_slot_id` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ads`
--

INSERT INTO `ads` (`id`, `name`, `expired_at`, `location`, `key`, `image`, `url`, `clicked`, `order`, `status`, `created_at`, `updated_at`, `open_in_new_tab`, `tablet_image`, `mobile_image`, `ads_type`, `google_adsense_slot_id`) VALUES
(3, 'Ads 3', '2029-11-01 00:00:00', 'not_set', 'WXAUTIJV1QU0', 'logo-avs.jpeg', '/products', 5, 3, 'published', '2024-10-31 20:47:01', '2025-02-14 23:44:31', 1, NULL, NULL, 'custom_ad', NULL);

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

--
-- Table structure for table `ads_translations`
--

CREATE TABLE `ads_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ads_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `url` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `announcements`
--

CREATE TABLE `announcements` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `content` text NOT NULL,
  `has_action` tinyint(1) NOT NULL DEFAULT 0,
  `action_label` varchar(60) DEFAULT NULL,
  `action_url` varchar(400) DEFAULT NULL,
  `action_open_new_tab` tinyint(1) NOT NULL DEFAULT 0,
  `dismissible` tinyint(1) NOT NULL DEFAULT 0,
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `announcements`
--

INSERT INTO `announcements` (`id`, `name`, `content`, `has_action`, `action_label`, `action_url`, `action_open_new_tab`, `dismissible`, `start_date`, `end_date`, `is_active`, `created_at`, `updated_at`) VALUES
(1, 'Announcement 1', 'Enjoy free shipping on all orders over $99! Shop now and save on delivery costs.', 0, NULL, NULL, 0, 1, '2024-11-01 03:46:56', NULL, 1, '2024-10-31 20:46:56', '2024-10-31 20:46:56'),
(2, 'Announcement 2', 'Need assistance? Our customer support is available 24/7 to help you with any questions or concerns.', 0, NULL, NULL, 0, 1, '2024-11-01 03:46:56', NULL, 1, '2024-10-31 20:46:56', '2024-10-31 20:46:56'),
(3, 'Announcement 3', '<p>Shop with confidence! We offer a hassle-free 30 days return service for your peace of mind.</p>', 0, NULL, NULL, 0, 1, '2024-11-01 03:46:56', '2025-02-14 00:00:00', 1, '2024-10-31 20:46:56', '2025-02-14 08:50:00'),
(4, 'New Announcement', '<p>Hello Guys</p>', 0, NULL, NULL, 0, 0, '2025-02-14 00:00:00', '2025-02-16 12:00:00', 1, '2025-02-14 08:51:19', '2025-02-14 08:51:19');

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

--
-- Table structure for table `announcements_translations`
--

CREATE TABLE `announcements_translations` (
  `lang_code` varchar(191) NOT NULL,
  `announcements_id` bigint(20) UNSIGNED NOT NULL,
  `content` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `audit_histories`
--

CREATE TABLE `audit_histories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `module` varchar(60) NOT NULL,
  `request` longtext DEFAULT NULL,
  `action` varchar(120) NOT NULL,
  `user_agent` text DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `reference_user` bigint(20) UNSIGNED NOT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_name` varchar(191) NOT NULL,
  `type` varchar(20) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `audit_histories`
--

INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(1, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 0, 1, 'AVS Admin', 'info', '2025-02-14 08:22:03', '2025-02-14 08:22:03'),
(2, 1, 'product', '{\"name\":\"Metallic Pleated Maxi Skirt\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\Product\",\"slug\":\"metallic-pleated-maxi-skirt\",\"slug_id\":\"113\",\"is_slug_editable\":\"1\",\"description\":\"<p>Complete your look with these classic aviator sunglasses, offering a touch of timeless glamour and UV protection for your eyes.<\\/p>\",\"content\":\"<div class=\\\"row justify-content-center\\\"><div class=\\\"col-xl-10\\\"><div class=\\\"tp-product-details-desc-item pb-105\\\"><div class=\\\"row\\\"><div class=\\\"col-lg-6\\\"><div class=\\\"pt-25\\\"><p><span>Women\'s Floral Dress<\\/span><\\/p><h3 class=\\\"tp-product-details-desc-title\\\">Elegance Redefined<\\/h3><p>Embrace timeless elegance with our exquisite women\'s floral dress. Crafted from luxurious fabrics and adorned with delicate floral patterns, this dress exudes grace and sophistication. Whether attending a garden party or a formal event, you\'ll make a stunning impression in this captivating ensemble.<\\/p><\\/div><div><h3 class=\\\"tp-product-details-desc-title\\\">Flawless Fit and Comfort<\\/h3><p>Designed for both style and comfort, our floral dress features a tailored silhouette that flatters every figure. The soft, breathable fabric ensures all-day comfort, while the fitted bodice and flowing skirt create a graceful silhouette. Feel confident and poised with every step you take.<\\/p><\\/div><\\/div><div class=\\\"col-lg-6\\\"><div class=\\\"tp-product-details-desc-thumb\\\"><img src=\\\"\\/storage\\/fashion\\/products\\/product-1.png\\\" alt=\\\"Women\'s Floral Dress\\\"><\\/div><\\/div><\\/div><\\/div><div class=\\\"tp-product-details-desc-item pb-75\\\"><div class=\\\"row\\\"><div class=\\\"col-lg-7\\\"><div class=\\\"tp-product-details-desc-thumb\\\"><img src=\\\"\\/storage\\/fashion\\/products\\/product-2.png\\\" alt=\\\"Back View of Floral Dress\\\"><\\/div><\\/div><div class=\\\"col-lg-5 order-first order-lg-last\\\"><div class=\\\"des-content-2 pl-40\\\"><h3 class=\\\"tp-product-details-desc-title\\\">Versatile Style<\\/h3><p>Transition effortlessly from day to night with our versatile floral dress. Pair it with sandals and a sunhat for a chic daytime look, or dress it up with heels and statement jewelry for an evening soir\\u00e9e. However you style it, you\'ll radiate confidence and charm.<\\/p><\\/div><\\/div><\\/div><\\/div><div class=\\\"tp-product-details-desc-item\\\"><div class=\\\"row\\\"><div class=\\\"col-xl-12\\\"><div class=\\\"tp-product-details-desc-banner text-center m-img\\\"><h3 class=\\\"tp-product-details-desc-banner-title tp-product-details-desc-title\\\">Quality Craftsmanship<\\/h3><p><img src=\\\"\\/storage\\/fashion\\/products\\/product-3.png\\\" alt=\\\"Fashion Atelier\\\"><\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"images\":[null,\"fashion\\/products\\/fifth-iphone-removebg-preview.png\",\"fashion\\/products\\/third-iphone-removebg-preview.png\",\"fashion\\/products\\/seccond-iphone-removebg-preview.png\",\"fashion\\/products\\/first-iphone-removebg-preview.png\"],\"video_media\":[[{\"key\":\"file\",\"value\":\"main\\/video\\/video-1.mp4\"},{\"key\":\"url\",\"value\":null},{\"key\":\"thumbnail\",\"value\":\"main\\/video\\/1.jpg\"}]],\"product_type\":\"physical\",\"specification_table_id\":\"1\",\"specification_attributes\":{\"1\":{\"value\":\"76.51 cm\",\"order\":\"0\"},\"2\":{\"value\":\"89.46 cm\",\"order\":\"0\"},\"3\":{\"value\":\"78.2 cm\",\"order\":\"0\"},\"4\":{\"value\":\"97.15 cm\",\"order\":\"0\"},\"5\":{\"value\":\"30.34 cm\",\"order\":\"0\"}},\"variation_default_id\":\"55\",\"botble-ecommerce-tables-product-variation-table-43_length\":\"10\",\"attribute_sets\":[\"3\",\"4\"],\"has_product_options\":\"1\",\"related_products\":null,\"cross_sale_products\":{\"8\":{\"id\":\"8\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\"},\"17\":{\"id\":\"17\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\",\"apply_to_all_variations\":\"1\"},\"68\":{\"id\":\"1\",\"is_variant\":\"1\",\"price\":null,\"price_type\":\"fixed\"},\"69\":{\"id\":\"1\",\"is_variant\":\"1\",\"price\":null,\"price_type\":\"fixed\"},\"19\":{\"id\":\"19\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\"},\"27\":{\"id\":\"27\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\",\"apply_to_all_variations\":\"1\"},\"78\":{\"id\":\"1\",\"is_variant\":\"1\",\"price\":null,\"price_type\":\"fixed\"},\"79\":{\"id\":\"1\",\"is_variant\":\"1\",\"price\":null,\"price_type\":\"fixed\"},\"32\":{\"id\":\"32\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\"},\"36\":{\"id\":\"36\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\"},\"38\":{\"id\":\"38\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\"}},\"faq_schema_config\":[[{\"key\":\"question\",\"value\":null},{\"key\":\"answer\",\"value\":null}]],\"selected_existing_faqs\":[\"3\",\"5\",\"6\",\"7\",\"10\"],\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"status\":\"published\",\"store_id\":\"3\",\"is_featured\":\"1\",\"categories\":[\"2\",\"4\",\"12\",\"14\"],\"brand_id\":\"5\",\"sku\":\"YE-178-A1\",\"image\":\"main\\/products\\/product-details-desc-1.jpg\",\"product_collections\":[\"2\"],\"taxes\":[\"2\"],\"minimum_order_quantity\":\"0\",\"maximum_order_quantity\":\"0\",\"tag\":\"[{\\\"value\\\":\\\"Iphone\\\"},{\\\"value\\\":\\\"Printer\\\"},{\\\"value\\\":\\\"Office\\\"}]\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 43, 'Metallic Pleated Maxi Skirt', 'primary', '2025-02-14 08:30:46', '2025-02-14 08:30:46'),
(3, 1, 'product', '{\"name\":\"Apple\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\Product\",\"slug\":\"metallic-pleated-maxi-skirt\",\"slug_id\":\"113\",\"is_slug_editable\":\"1\",\"description\":\"<p>Complete your look with these classic aviator sunglasses, offering a touch of timeless glamour and UV protection for your eyes.<\\/p>\",\"content\":\"<div class=\\\"row justify-content-center\\\"><div class=\\\"col-xl-10\\\"><div class=\\\"tp-product-details-desc-item pb-105\\\"><div class=\\\"row\\\"><div class=\\\"col-lg-6\\\"><div class=\\\"pt-25\\\"><p><span>Women\'s Floral Dress<\\/span><\\/p><h3 class=\\\"tp-product-details-desc-title\\\">Elegance Redefined<\\/h3><p>Embrace timeless elegance with our exquisite women\'s floral dress. Crafted from luxurious fabrics and adorned with delicate floral patterns, this dress exudes grace and sophistication. Whether attending a garden party or a formal event, you\'ll make a stunning impression in this captivating ensemble.<\\/p><\\/div><div><h3 class=\\\"tp-product-details-desc-title\\\">Flawless Fit and Comfort<\\/h3><p>Designed for both style and comfort, our floral dress features a tailored silhouette that flatters every figure. The soft, breathable fabric ensures all-day comfort, while the fitted bodice and flowing skirt create a graceful silhouette. Feel confident and poised with every step you take.<\\/p><\\/div><\\/div><div class=\\\"col-lg-6\\\"><div class=\\\"tp-product-details-desc-thumb\\\"><img src=\\\"\\/storage\\/fashion\\/products\\/product-1.png\\\" alt=\\\"Women\'s Floral Dress\\\"><\\/div><\\/div><\\/div><\\/div><div class=\\\"tp-product-details-desc-item pb-75\\\"><div class=\\\"row\\\"><div class=\\\"col-lg-7\\\"><div class=\\\"tp-product-details-desc-thumb\\\"><img src=\\\"\\/storage\\/fashion\\/products\\/product-2.png\\\" alt=\\\"Back View of Floral Dress\\\"><\\/div><\\/div><div class=\\\"col-lg-5 order-first order-lg-last\\\"><div class=\\\"des-content-2 pl-40\\\"><h3 class=\\\"tp-product-details-desc-title\\\">Versatile Style<\\/h3><p>Transition effortlessly from day to night with our versatile floral dress. Pair it with sandals and a sunhat for a chic daytime look, or dress it up with heels and statement jewelry for an evening soir\\u00e9e. However you style it, you\'ll radiate confidence and charm.<\\/p><\\/div><\\/div><\\/div><\\/div><div class=\\\"tp-product-details-desc-item\\\"><div class=\\\"row\\\"><div class=\\\"col-xl-12\\\"><div class=\\\"tp-product-details-desc-banner text-center m-img\\\"><h3 class=\\\"tp-product-details-desc-banner-title tp-product-details-desc-title\\\">Quality Craftsmanship<\\/h3><p><img src=\\\"\\/storage\\/fashion\\/products\\/product-3.png\\\" alt=\\\"Fashion Atelier\\\"><\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"images\":[null,\"fashion\\/products\\/fifth-iphone-removebg-preview.png\",\"fashion\\/products\\/third-iphone-removebg-preview.png\",\"fashion\\/products\\/seccond-iphone-removebg-preview.png\",\"fashion\\/products\\/first-iphone-removebg-preview.png\"],\"video_media\":[[{\"key\":\"file\",\"value\":\"main\\/video\\/video-1.mp4\"},{\"key\":\"url\",\"value\":null},{\"key\":\"thumbnail\",\"value\":\"main\\/video\\/1.jpg\"}]],\"product_type\":\"physical\",\"specification_table_id\":\"1\",\"specification_attributes\":{\"1\":{\"value\":\"76.51 cm\",\"order\":\"0\"},\"2\":{\"value\":\"89.46 cm\",\"order\":\"0\"},\"3\":{\"value\":\"78.2 cm\",\"order\":\"0\"},\"4\":{\"value\":\"97.15 cm\",\"order\":\"0\"},\"5\":{\"value\":\"30.34 cm\",\"order\":\"0\"}},\"variation_default_id\":\"55\",\"botble-ecommerce-tables-product-variation-table-43_length\":\"10\",\"attribute_sets\":[\"3\",\"4\"],\"has_product_options\":\"1\",\"related_products\":null,\"cross_sale_products\":{\"8\":{\"id\":\"8\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\"},\"17\":{\"id\":\"17\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\",\"apply_to_all_variations\":\"1\"},\"68\":{\"id\":\"1\",\"is_variant\":\"1\",\"price\":\"0.00\",\"price_type\":\"fixed\"},\"69\":{\"id\":\"1\",\"is_variant\":\"1\",\"price\":\"0.00\",\"price_type\":\"fixed\"},\"19\":{\"id\":\"19\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\"},\"27\":{\"id\":\"27\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\",\"apply_to_all_variations\":\"1\"},\"78\":{\"id\":\"1\",\"is_variant\":\"1\",\"price\":\"0.00\",\"price_type\":\"fixed\"},\"79\":{\"id\":\"1\",\"is_variant\":\"1\",\"price\":\"0.00\",\"price_type\":\"fixed\"},\"32\":{\"id\":\"32\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\"},\"36\":{\"id\":\"36\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\"},\"38\":{\"id\":\"38\",\"is_variant\":\"0\",\"price\":\"0.00\",\"price_type\":\"fixed\"}},\"faq_schema_config\":[[{\"key\":\"question\",\"value\":null},{\"key\":\"answer\",\"value\":null}]],\"selected_existing_faqs\":[\"3\",\"5\",\"6\",\"7\",\"10\"],\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"status\":\"published\",\"store_id\":\"3\",\"is_featured\":\"1\",\"categories\":[\"2\"],\"brand_id\":\"5\",\"sku\":\"YE-178-A1\",\"image\":\"fashion\\/products\\/first-iphone-removebg-preview.png\",\"product_collections\":[\"2\"],\"product_labels\":[\"2\"],\"taxes\":[\"2\"],\"minimum_order_quantity\":\"0\",\"maximum_order_quantity\":\"0\",\"tag\":\"[{\\\"value\\\":\\\"Iphone\\\"},{\\\"value\\\":\\\"Printer\\\"},{\\\"value\\\":\\\"Office\\\"}]\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 43, 'Apple', 'primary', '2025-02-14 08:32:27', '2025-02-14 08:32:27'),
(4, 1, 'product', '[]', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 99, 'Apple', 'danger', '2025-02-14 08:34:09', '2025-02-14 08:34:09'),
(5, 1, 'product', '[]', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 100, 'Apple', 'danger', '2025-02-14 08:34:14', '2025-02-14 08:34:14'),
(6, 1, 'announcement', '{\"name\":\"Announcement 3\",\"content\":\"<p>Shop with confidence! We offer a hassle-free 30 days return service for your peace of mind.<\\/p>\",\"start_date\":\"2024-11-01 03:46:56\",\"end_date\":\"2025-02-14 00:00:0\",\"has_action\":\"0\",\"action_label\":null,\"action_url\":null,\"action_open_new_tab\":\"0\",\"is_active\":\"1\",\"submitter\":\"save\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 3, 'Announcement 3', 'primary', '2025-02-14 08:50:00', '2025-02-14 08:50:00'),
(7, 1, 'announcement', '{\"name\":\"New Announcement\",\"content\":\"<p>Hello Guys<\\/p>\",\"start_date\":\"2025-02-14 00:00:0\",\"end_date\":\"2025-02-16 12:00:0\",\"has_action\":\"0\",\"action_label\":null,\"action_url\":null,\"action_open_new_tab\":\"0\",\"is_active\":\"1\",\"submitter\":\"apply\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 4, 'New Announcement', 'info', '2025-02-14 08:51:20', '2025-02-14 08:51:20'),
(8, 1, 'simpleslideritem', '{\"simple_slider_id\":\"1\",\"title\":\"The Clothing Collection\",\"subtitle\":null,\"link\":\"\\/products\",\"button_label\":\"Shop Collection\",\"description\":\"New Arrivals 2023\",\"order\":\"0\",\"image\":\"fashion\\/products\\/first-iphone-removebg-preview.png\",\"background_color\":\"transparent\",\"is_light\":\"0\",\"tablet_image\":null,\"mobile_image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 1, 'The Clothing Collection', 'primary', '2025-02-14 10:15:15', '2025-02-14 10:15:15'),
(9, 1, 'simpleslideritem', '{\"simple_slider_id\":\"1\",\"title\":\"The Summer Collection\",\"subtitle\":null,\"link\":\"\\/products\",\"button_label\":\"Shop Collection\",\"description\":\"Best Selling 2023\",\"order\":\"1\",\"image\":\"fashion\\/products\\/seccond-iphone-removebg-preview.png\",\"background_color\":\"transparent\",\"is_light\":\"0\",\"tablet_image\":null,\"mobile_image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 2, 'The Summer Collection', 'primary', '2025-02-14 10:15:35', '2025-02-14 10:15:35'),
(10, 1, 'simpleslideritem', '{\"simple_slider_id\":\"1\",\"title\":\"Amazing New designs\",\"subtitle\":null,\"link\":\"\\/products\",\"button_label\":\"Shop Collection\",\"description\":\"Winter Has Arrived\",\"order\":\"2\",\"image\":\"fashion\\/products\\/third-iphone-removebg-preview.png\",\"background_color\":\"transparent\",\"is_light\":\"0\",\"tablet_image\":null,\"mobile_image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 3, 'Amazing New designs', 'primary', '2025-02-14 10:15:53', '2025-02-14 10:15:53'),
(11, 1, 'simpleslider', '{\"name\":\"Home slider\",\"key\":\"home-slider\",\"description\":\"The main slider on homepage\",\"botble-simple-slider-tables-simple-slider-item-table_length\":\"10\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 1, 'Home slider', 'primary', '2025-02-14 10:17:14', '2025-02-14 10:17:14'),
(12, 1, 'page', '{\"name\":\"Home\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/localhost:81\\/avs_ecom3\\/public\",\"description\":null,\"content\":\"<shortcode>[ads style=\\\"2\\\" key_1=\\\"WXAUTIJV1QU0\\\" key_2=\\\"7Z5RXBBWV7J2\\\" key_3=\\\"JY08TDO8FG1E\\\" full_width=\\\"1\\\" enable_lazy_loading=\\\"no\\\"][\\/ads]<\\/shortcode><shortcode>[simple-slider style=\\\"2\\\" key=\\\"home-slider\\\" shape_1=\\\"fashion\\/sliders\\/shape-1.png\\\" shape_2=\\\"fashion\\/sliders\\/shape-2.png\\\" shape_3=\\\"fashion\\/sliders\\/shape-3.png\\\" is_autoplay=\\\"yes\\\" autoplay_speed=\\\"5000\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\"slider\\\" title=\\\"Popular on the Shofy store.\\\" subtitle=\\\"Shop by Category\\\" category_ids=\\\"1,2,7,11,18,19\\\" background_color=\\\"#F3F5F7\\\" enable_lazy_loading=\\\"no\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\"Customer Favorite Style Product\\\" subtitle=\\\"All Product Shop\\\" limit=\\\"8\\\" tabs=\\\"all,featured,on-sale,trending,top-rated\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\"slider-full-width\\\" title=\\\"This Week\'s Featured\\\" subtitle=\\\"Shop by Category\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" background_color=\\\"#EFF1F5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"Trending Arrivals\\\" subtitle=\\\"More to Discover\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" ads_ids=\\\"6\\\" style=\\\"slider\\\" ads=\\\"VKJNCBIBQC1O\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"This Week\'s Featured\\\" subtitle=\\\"Best Seller This Week\'s\\\" by=\\\"specify\\\" product_ids=\\\"3,4,5,6\\\" limit=\\\"12\\\" style=\\\"grid\\\" button_label=\\\"Shop All Now\\\" button_url=\\\"\\/products\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\"1\\\" title=\\\"The Review Are In\\\" testimonial_ids=\\\"2,3,4\\\" enable_lazy_loading=\\\"yes\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\"Latest News &amp; Articles\\\" subtitle=\\\"Our Blog &amp; News\\\" type=\\\"recent\\\" limit=\\\"3\\\" button_label=\\\"Discover More\\\" button_url=\\\"\\/blog\\\" enable_lazy_loading=\\\"yes\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\"2\\\" quantity=\\\"4\\\" title_1=\\\"Free Delivery\\\" description_1=\\\"Orders from all item\\\" icon_1=\\\"ti ti-truck-delivery\\\" title_2=\\\"Return &amp; Refund\\\" description_2=\\\"Money-back guarantee\\\" icon_2=\\\"ti ti-currency-dollar\\\" title_3=\\\"Member Discount\\\" description_3=\\\"Every order over $140.00\\\" icon_3=\\\"ti ti-discount-2\\\" title_4=\\\"Support 24\\/7\\\" description_4=\\\"Contact us 24 hours a day\\\" icon_4=\\\"ti ti-headset\\\" enable_lazy_loading=\\\"yes\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\"2\\\" limit=\\\"5\\\" enable_lazy_loading=\\\"yes\\\"][\\/gallery]<\\/shortcode>\",\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"full-width\",\"image\":null,\"breadcrumb_style\":\"none\",\"breadcrumb_background\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 1, 'Home', 'primary', '2025-02-14 10:18:54', '2025-02-14 10:18:54'),
(13, 1, 'page', '{\"name\":\"Home\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/localhost:81\\/avs_ecom3\\/public\",\"description\":null,\"content\":\"<shortcode>[simple-slider style=\\\"2\\\" key=\\\"home-slider\\\" shape_1=\\\"fashion\\/sliders\\/shape-1.png\\\" shape_2=\\\"fashion\\/sliders\\/shape-2.png\\\" shape_3=\\\"fashion\\/sliders\\/shape-3.png\\\" is_autoplay=\\\"yes\\\" autoplay_speed=\\\"5000\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\"2\\\" key_1=\\\"WXAUTIJV1QU0\\\" key_2=\\\"7Z5RXBBWV7J2\\\" key_3=\\\"JY08TDO8FG1E\\\" full_width=\\\"1\\\" enable_lazy_loading=\\\"no\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\"slider\\\" title=\\\"Popular on the Shofy store.\\\" subtitle=\\\"Shop by Category\\\" category_ids=\\\"1,2,7,11,18,19\\\" background_color=\\\"#F3F5F7\\\" enable_lazy_loading=\\\"no\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\"Customer Favorite Style Product\\\" subtitle=\\\"All Product Shop\\\" limit=\\\"8\\\" tabs=\\\"all,featured,on-sale,trending,top-rated\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\"slider-full-width\\\" title=\\\"This Week\'s Featured\\\" subtitle=\\\"Shop by Category\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" background_color=\\\"#EFF1F5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"Trending Arrivals\\\" subtitle=\\\"More to Discover\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" ads_ids=\\\"6\\\" style=\\\"slider\\\" ads=\\\"VKJNCBIBQC1O\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"This Week\'s Featured\\\" subtitle=\\\"Best Seller This Week\'s\\\" by=\\\"specify\\\" product_ids=\\\"3,4,5,6\\\" limit=\\\"12\\\" style=\\\"grid\\\" button_label=\\\"Shop All Now\\\" button_url=\\\"\\/products\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\"1\\\" title=\\\"The Review Are In\\\" testimonial_ids=\\\"2,3,4\\\" enable_lazy_loading=\\\"yes\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\"Latest News &amp; Articles\\\" subtitle=\\\"Our Blog &amp; News\\\" type=\\\"recent\\\" limit=\\\"3\\\" button_label=\\\"Discover More\\\" button_url=\\\"\\/blog\\\" enable_lazy_loading=\\\"yes\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\"2\\\" quantity=\\\"4\\\" title_1=\\\"Free Delivery\\\" description_1=\\\"Orders from all item\\\" icon_1=\\\"ti ti-truck-delivery\\\" title_2=\\\"Return &amp; Refund\\\" description_2=\\\"Money-back guarantee\\\" icon_2=\\\"ti ti-currency-dollar\\\" title_3=\\\"Member Discount\\\" description_3=\\\"Every order over $140.00\\\" icon_3=\\\"ti ti-discount-2\\\" title_4=\\\"Support 24\\/7\\\" description_4=\\\"Contact us 24 hours a day\\\" icon_4=\\\"ti ti-headset\\\" enable_lazy_loading=\\\"yes\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\"2\\\" limit=\\\"5\\\" enable_lazy_loading=\\\"yes\\\"][\\/gallery]<\\/shortcode>\",\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"full-width\",\"image\":null,\"breadcrumb_style\":\"none\",\"breadcrumb_background\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 1, 'Home', 'primary', '2025-02-14 10:19:19', '2025-02-14 10:19:19'),
(14, 1, 'simpleslideritem', '{\"simple_slider_id\":\"1\",\"title\":\"The Clothing Collection\",\"subtitle\":\"Demo\",\"link\":\"\\/products\",\"button_label\":\"Shop Collection\",\"description\":\"New Arrivals 2023\",\"order\":\"0\",\"image\":\"fashion\\/products\\/first-iphone-removebg-preview.png\",\"background_color\":\"transparent\",\"is_light\":\"0\",\"tablet_image\":null,\"mobile_image\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 1, 'The Clothing Collection', 'primary', '2025-02-14 10:20:24', '2025-02-14 10:20:24'),
(15, 1, 'of the system', '[]', 'logged out', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 1, 'AVS Admin', 'info', '2025-02-14 10:32:24', '2025-02-14 10:32:24'),
(16, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 0, 1, 'AVS Admin', 'info', '2025-02-14 10:35:19', '2025-02-14 10:35:19'),
(17, 1, 'page', '{\"name\":\"Brands\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"brands\",\"slug_id\":\"121\",\"is_slug_editable\":\"1\",\"description\":null,\"content\":\"<shortcode>[ecommerce-brands show_brand_name=\\\"1\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-brands]<\\/shortcode>\",\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"default\",\"image\":\"fashion\\/products\\/seccond-iphone-removebg-preview.png\",\"breadcrumb_style\":\"align-start\",\"breadcrumb_background\":\"fashion\\/products\\/fifth-iphone-removebg-preview.png\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 3, 'Brands', 'primary', '2025-02-14 10:37:37', '2025-02-14 10:37:37'),
(18, 1, 'discount', '{\"type\":\"coupon\",\"code\":\"KDVLETLRQJUP\",\"title\":null,\"is_unlimited\":\"1\",\"description\":null,\"type_option\":\"amount\",\"value\":\"20\",\"target\":\"amount-minimum-order\",\"min_order_price\":\"200\",\"product_quantity\":\"1\",\"start_date\":\"2025-02-14\",\"start_time\":\"00:00\",\"end_date\":\"2025-02-16\",\"end_time\":\"23:59\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 11, 'ID: 11', 'info', '2025-02-14 10:39:42', '2025-02-14 10:39:42'),
(19, 1, 'plugin-order', '{\"description\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 1, 'ID: 1', 'primary', '2025-02-14 10:45:50', '2025-02-14 10:45:50'),
(20, 1, 'product', '{\"_method\":\"delete\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 34, 'Pleated Midi Skirt', 'danger', '2025-02-14 10:47:33', '2025-02-14 10:47:33'),
(21, 1, 'simpleslideritem', '{\"simple_slider_id\":\"1\",\"title\":\"The Clothing Collection\",\"subtitle\":\"Demo\",\"link\":\"\\/products\",\"button_label\":\"Shop Collection\",\"description\":\"New Arrivals 2023\",\"order\":\"0\",\"image\":\"fashion\\/products\\/first-iphone-removebg-preview.png\",\"background_color\":\"transparent\",\"is_light\":\"0\",\"tablet_image\":\"fashion\\/products\\/first-iphone-removebg-preview.png\",\"mobile_image\":\"fashion\\/products\\/first-iphone-removebg-preview.png\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 1, 'The Clothing Collection', 'primary', '2025-02-14 10:54:14', '2025-02-14 10:54:14'),
(22, 1, 'simpleslideritem', '{\"simple_slider_id\":\"1\",\"title\":\"The Summer Collection\",\"subtitle\":null,\"link\":\"\\/products\",\"button_label\":\"Shop Collection\",\"description\":\"Best Selling 2023\",\"order\":\"1\",\"image\":\"fashion\\/products\\/seccond-iphone-removebg-preview.png\",\"background_color\":\"transparent\",\"is_light\":\"0\",\"tablet_image\":\"fashion\\/products\\/seccond-iphone-removebg-preview.png\",\"mobile_image\":\"fashion\\/products\\/seccond-iphone-removebg-preview.png\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 2, 'The Summer Collection', 'primary', '2025-02-14 10:54:35', '2025-02-14 10:54:35'),
(23, 1, 'simpleslideritem', '{\"simple_slider_id\":\"1\",\"title\":\"Amazing New designs\",\"subtitle\":null,\"link\":\"\\/products\",\"button_label\":\"Shop Collection\",\"description\":\"Winter Has Arrived\",\"order\":\"2\",\"image\":\"fashion\\/products\\/third-iphone-removebg-preview.png\",\"background_color\":\"transparent\",\"is_light\":\"0\",\"tablet_image\":\"fashion\\/products\\/third-iphone-removebg-preview.png\",\"mobile_image\":\"fashion\\/products\\/third-iphone-removebg-preview.png\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 3, 'Amazing New designs', 'primary', '2025-02-14 10:54:55', '2025-02-14 10:54:55'),
(24, 1, 'simpleslider', '{\"name\":\"Home slider\",\"key\":\"home-slider\",\"description\":\"The main slider on homepage\",\"botble-simple-slider-tables-simple-slider-item-table_length\":\"10\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 1, 'Home slider', 'primary', '2025-02-14 10:55:05', '2025-02-14 10:55:05'),
(25, 1, 'page', '{\"name\":\"Home\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/localhost:81\\/avs_ecom3\\/public\",\"description\":null,\"content\":\"<shortcode>[simple-slider style=\\\"2\\\" key=\\\"home-slider\\\" shape_1=\\\"fashion\\/sliders\\/shape-1.png\\\" shape_2=\\\"fashion\\/sliders\\/shape-2.png\\\" shape_3=\\\"fashion\\/sliders\\/shape-3.png\\\" is_autoplay=\\\"yes\\\" autoplay_speed=\\\"5000\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\"2\\\" key_1=\\\"WXAUTIJV1QU0\\\" key_2=\\\"7Z5RXBBWV7J2\\\" key_3=\\\"JY08TDO8FG1E\\\" full_width=\\\"1\\\" enable_lazy_loading=\\\"no\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\"slider\\\" title=\\\"Popular on the Shofy store.\\\" subtitle=\\\"Shop by Category\\\" category_ids=\\\"1,2,7,11,18,19\\\" background_color=\\\"#F3F5F7\\\" enable_lazy_loading=\\\"no\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\"Customer Favorite Style Product\\\" subtitle=\\\"All Product Shop\\\" limit=\\\"8\\\" tabs=\\\"all,featured,on-sale,trending,top-rated\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\"slider-full-width\\\" title=\\\"This Week\'s Featured\\\" subtitle=\\\"Shop by Category\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" background_color=\\\"#EFF1F5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"Trending Arrivals\\\" subtitle=\\\"More to Discover\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" ads_ids=\\\"6\\\" style=\\\"slider\\\" ads=\\\"VKJNCBIBQC1O\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"This Week\'s Featured\\\" subtitle=\\\"Best Seller This Week\'s\\\" by=\\\"specify\\\" product_ids=\\\"3,4,5,6\\\" limit=\\\"12\\\" style=\\\"grid\\\" button_label=\\\"Shop All Now\\\" button_url=\\\"\\/products\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\"1\\\" title=\\\"The Review Are In\\\" testimonial_ids=\\\"2,3,4\\\" enable_lazy_loading=\\\"yes\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\"Latest News &amp; Articles\\\" subtitle=\\\"Our Blog &amp; News\\\" type=\\\"recent\\\" limit=\\\"3\\\" button_label=\\\"Discover More\\\" button_url=\\\"\\/blog\\\" enable_lazy_loading=\\\"yes\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\"2\\\" quantity=\\\"4\\\" title_1=\\\"Free Delivery\\\" description_1=\\\"Orders from all item\\\" icon_1=\\\"ti ti-truck-delivery\\\" title_2=\\\"Return &amp; Refund\\\" description_2=\\\"Money-back guarantee\\\" icon_2=\\\"ti ti-currency-dollar\\\" title_3=\\\"Member Discount\\\" description_3=\\\"Every order over $140.00\\\" icon_3=\\\"ti ti-discount-2\\\" title_4=\\\"Support 24\\/7\\\" description_4=\\\"Contact us 24 hours a day\\\" icon_4=\\\"ti ti-headset\\\" enable_lazy_loading=\\\"yes\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\"2\\\" limit=\\\"5\\\" enable_lazy_loading=\\\"yes\\\"][\\/gallery]<\\/shortcode>\",\"submitter\":\"save\",\"status\":\"published\",\"template\":\"full-width\",\"image\":\"fashion\\/products\\/fifth-iphone-removebg-preview.png\",\"breadcrumb_style\":\"none\",\"breadcrumb_background\":\"fashion\\/products\\/first-iphone-removebg-preview.png\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 1, 'Home', 'primary', '2025-02-14 10:58:06', '2025-02-14 10:58:06'),
(26, 1, 'page', '{\"name\":\"New Products\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"new-products\",\"slug_id\":\"0\",\"is_slug_editable\":\"1\",\"description\":\"New Products Added\",\"content\":\"<shortcode>[ecommerce-collections collection_ids=\\\"2\\\" items_per_view=\\\"5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-collections]<\\/shortcode>\",\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"full-width\",\"image\":\"fashion\\/products\\/first-iphone-removebg-preview.png\",\"breadcrumb_style\":\"align-start\",\"breadcrumb_background\":\"fashion\\/products\\/third-iphone-removebg-preview.png\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 14, 'New Products', 'info', '2025-02-14 10:59:43', '2025-02-14 10:59:43'),
(27, 1, 'menunode', '{\"data\":{\"reference_type\":\"Botble\\\\Page\\\\Models\\\\Page\",\"reference_id\":\"14\",\"title\":\"New Products\",\"menu_id\":\"1\",\"position\":\"31\"}}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 42, 'New Products', 'info', '2025-02-14 11:01:01', '2025-02-14 11:01:01');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(28, 1, 'menu_location', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 1, 'ID: 1', 'info', '2025-02-14 11:02:04', '2025-02-14 11:02:04'),
(29, 1, 'menu', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 1, 'Main menu', 'primary', '2025-02-14 11:02:04', '2025-02-14 11:02:04');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(30, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 1, 'Home', 'primary', '2025-02-14 11:02:04', '2025-02-14 11:02:04'),
(31, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 2, 'Electronics', 'primary', '2025-02-14 11:02:04', '2025-02-14 11:02:04');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(32, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 3, 'Fashion', 'primary', '2025-02-14 11:02:04', '2025-02-14 11:02:04'),
(33, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 4, 'Beauty', 'primary', '2025-02-14 11:02:04', '2025-02-14 11:02:04');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(34, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 5, 'Jewelry', 'primary', '2025-02-14 11:02:04', '2025-02-14 11:02:04'),
(35, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 6, 'Grocery', 'primary', '2025-02-14 11:02:04', '2025-02-14 11:02:04');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(36, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 7, 'Shop', 'primary', '2025-02-14 11:02:04', '2025-02-14 11:02:04'),
(37, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 8, 'Shop Categories', 'primary', '2025-02-14 11:02:04', '2025-02-14 11:02:04');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(38, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 9, 'Shop Brands', 'primary', '2025-02-14 11:02:04', '2025-02-14 11:02:04'),
(39, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 10, 'Shop List', 'primary', '2025-02-14 11:02:04', '2025-02-14 11:02:04');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(40, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 11, 'Shop Grid', 'primary', '2025-02-14 11:02:04', '2025-02-14 11:02:04'),
(41, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 12, 'Product Detail', 'primary', '2025-02-14 11:02:04', '2025-02-14 11:02:04');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(42, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 13, 'Grab Coupons', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05'),
(43, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 14, 'Cart', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(44, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 15, 'Compare', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05'),
(45, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 16, 'Wishlist', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(46, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 17, 'Track Your Order', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05'),
(47, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 18, 'Vendors', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(48, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 19, 'Pages', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05'),
(49, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 20, 'FAQs', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(50, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 21, 'Login', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05'),
(51, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 22, 'Register', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(52, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 23, 'Forgot Password', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05'),
(53, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 24, '404 Error', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(54, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 25, 'Coming Soon', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05'),
(55, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 42, 'New Products', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(56, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 26, 'Blog', 'primary', '2025-02-14 11:02:05', '2025-02-14 11:02:05'),
(57, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 27, 'Blog Grid', 'primary', '2025-02-14 11:02:06', '2025-02-14 11:02:06');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(58, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 28, 'Blog List', 'primary', '2025-02-14 11:02:06', '2025-02-14 11:02:06'),
(59, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 29, 'Blog Detail', 'primary', '2025-02-14 11:02:06', '2025-02-14 11:02:06');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(60, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":null,\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/home\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" shape_1=\\\\\\\"fashion\\/sliders\\/shape-1.png\\\\\\\" shape_2=\\\\\\\"fashion\\/sliders\\/shape-2.png\\\\\\\" shape_3=\\\\\\\"fashion\\/sliders\\/shape-3.png\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" by=\\\\\\\"specify\\\\\\\" product_ids=\\\\\\\"3,4,5,6\\\\\\\" limit=\\\\\\\"12\\\\\\\" style=\\\\\\\"grid\\\\\\\" button_label=\\\\\\\"Shop All Now\\\\\\\" button_url=\\\\\\\"\\/products\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\\\\\"1\\\\\\\" title=\\\\\\\"The Review Are In\\\\\\\" testimonial_ids=\\\\\\\"2,3,4\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\\\\\"Latest News &amp; Articles\\\\\\\" subtitle=\\\\\\\"Our Blog &amp; News\\\\\\\" type=\\\\\\\"recent\\\\\\\" limit=\\\\\\\"3\\\\\\\" button_label=\\\\\\\"Discover More\\\\\\\" button_url=\\\\\\\"\\/blog\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\\\\\"2\\\\\\\" limit=\\\\\\\"5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/gallery]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:28:06.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":2,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Electronics\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":3,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-fashion.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Fashion\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":4,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-beauty.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Beauty\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":5,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-jewelry.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Jewelry\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":6,\\\"menu_id\\\":1,\\\"parent_id\\\":1,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"https:\\/\\/shofy-grocery.botble.com\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grocery\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":1,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"UROL9F9ZZVAA\\\\\\\" key_2=\\\\\\\"B30VDBKO7SBF\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ads][ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":10,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":18,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/stores\\\",\\\"icon_font\\\":null,\\\"position\\\":2,\\\"title\\\":\\\"Vendors\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":19,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":null,\\\"icon_font\\\":null,\\\"position\\\":3,\\\"title\\\":\\\"Pages\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":20,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":7,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/faqs\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"FAQs\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":7,\\\"name\\\":\\\"FAQs\\\",\\\"content\\\":\\\"[faqs style=\\\\\\\"group\\\\\\\" title=\\\\\\\"Frequently Ask Questions\\\\\\\" description=\\\\\\\"Below are frequently asked questions, you may find the answer for yourself.\\\\\\\" category_ids=\\\\\\\"1,2,3\\\\\\\" expand_first_time=\\\\\\\"1\\\\\\\"][\\/faqs]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":null,\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":125,\\\"key\\\":\\\"faqs\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":21,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"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\\\":22,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/register\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Register\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":23,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/password\\/reset\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Forgot Password\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":24,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/404\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"404 Error\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":25,\\\"menu_id\\\":1,\\\"parent_id\\\":19,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/coming-soon\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Coming Soon\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":14,\\\"title\\\":\\\"New Products\\\",\\\"menu_id\\\":\\\"1\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/new-products\\\",\\\"id\\\":42,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"target\\\":\\\"_blank\\\",\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":null,\\\"position\\\":5,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":null,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":null,\\\"position\\\":0,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":null,\\\"position\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":null,\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"locations\":[\"main-menu\"],\"submitter\":\"save\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '::1', 1, 30, 'Contact', 'primary', '2025-02-14 11:02:06', '2025-02-14 11:02:06'),
(61, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'AVS Admin', 'info', '2025-02-14 21:40:12', '2025-02-14 21:40:12'),
(62, 1, 'productcategory', '{\"_method\":\"delete\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Bags', 'danger', '2025-02-14 21:43:18', '2025-02-14 21:43:18'),
(63, 1, 'productcategory', '{\"_method\":\"delete\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'Footwear', 'danger', '2025-02-14 21:43:32', '2025-02-14 21:43:32'),
(64, 1, 'productcategory', '{\"_method\":\"delete\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'Accessories', 'danger', '2025-02-14 21:43:39', '2025-02-14 21:43:39'),
(65, 1, 'productcategory', '{\"_method\":\"delete\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'Sportswear', 'danger', '2025-02-14 21:43:46', '2025-02-14 21:43:46'),
(66, 1, 'productcategory', '{\"_method\":\"delete\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 19, 'Outerwear', 'danger', '2025-02-14 21:44:02', '2025-02-14 21:44:02'),
(67, 1, 'customer', '[]', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'Ranavadiya Hardik', 'primary', '2025-02-14 21:54:59', '2025-02-14 21:54:59'),
(68, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 65, 'Quilted Crossbody Bag', 'danger', '2025-02-14 21:55:51', '2025-02-14 21:55:51'),
(69, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 66, 'Quilted Crossbody Bag', 'danger', '2025-02-14 21:55:51', '2025-02-14 21:55:51'),
(70, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 67, 'Quilted Crossbody Bag', 'danger', '2025-02-14 21:55:51', '2025-02-14 21:55:51'),
(71, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 80, 'Ruffled Wrap Dress', 'danger', '2025-02-14 21:55:51', '2025-02-14 21:55:51'),
(72, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 81, 'Ruffled Wrap Dress', 'danger', '2025-02-14 21:55:51', '2025-02-14 21:55:51'),
(73, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 95, 'Faux Leather Leggings', 'danger', '2025-02-14 21:55:51', '2025-02-14 21:55:51'),
(74, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 96, 'Faux Leather Leggings', 'danger', '2025-02-14 21:55:51', '2025-02-14 21:55:51'),
(75, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 97, 'Faux Leather Leggings', 'danger', '2025-02-14 21:55:51', '2025-02-14 21:55:51'),
(76, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 44, 'Floral Maxi Dress', 'danger', '2025-02-14 21:55:51', '2025-02-14 21:55:51'),
(77, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 45, 'Floral Maxi Dress', 'danger', '2025-02-14 21:55:51', '2025-02-14 21:55:51'),
(78, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 46, 'Floral Maxi Dress', 'danger', '2025-02-14 21:55:51', '2025-02-14 21:55:51'),
(79, 1, 'customer', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Lenora Harber', 'danger', '2025-02-14 21:55:51', '2025-02-14 21:55:51'),
(80, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 70, 'Cotton Striped T-Shirt Dress', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(81, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 78, 'Faux Fur Trimmed Coat', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(82, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 79, 'Faux Fur Trimmed Coat', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(83, 1, 'customer', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'Bridgette Hayes MD', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(84, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 47, 'Knit Turtleneck Sweater (Digital)', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(85, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 48, 'Knit Turtleneck Sweater (Digital)', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(86, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 49, 'Knit Turtleneck Sweater (Digital)', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(87, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 50, 'Knit Turtleneck Sweater (Digital)', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(88, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 57, 'Statement Chunky Necklace', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(89, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 72, 'Cropped Cable Knit Sweater', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(90, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 73, 'Cropped Cable Knit Sweater', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(91, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 58, 'Strappy Block Heel Sandals', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(92, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 59, 'Strappy Block Heel Sandals', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(93, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 60, 'Strappy Block Heel Sandals', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(94, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 61, 'Velvet Evening Gown', 'danger', '2025-02-14 21:55:52', '2025-02-14 21:55:52'),
(95, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 62, 'Velvet Evening Gown', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(96, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 63, 'Velvet Evening Gown', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(97, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 64, 'Velvet Evening Gown', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(98, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 82, 'Velour Tracksuit Set', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(99, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 83, 'Velour Tracksuit Set', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(100, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 84, 'Velour Tracksuit Set', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(101, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 85, 'Velour Tracksuit Set', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(102, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 86, 'Velour Tracksuit Set', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(103, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 98, 'Apple', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(104, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 53, 'Tailored Wool Blazer', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(105, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 54, 'Tailored Wool Blazer', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(106, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 55, 'Embroidered Boho Blouse', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(107, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 56, 'Embroidered Boho Blouse', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(108, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 74, 'Leopard Print Midi Skirt', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(109, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 75, 'Leopard Print Midi Skirt', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(110, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 76, 'Leopard Print Midi Skirt', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(111, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 77, 'Leopard Print Midi Skirt', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(112, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 87, 'Buckle Detail Ankle Booties', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(113, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 88, 'Buckle Detail Ankle Booties', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(114, 1, 'customer', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'Sallie Crist', 'danger', '2025-02-14 21:55:53', '2025-02-14 21:55:53'),
(115, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 68, 'Lace-Up Combat Boots', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(116, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 69, 'Lace-Up Combat Boots', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(117, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 71, 'Suede Pointed-Toe Pumps', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(118, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 89, 'Cowl Neck Knit Poncho', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(119, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 90, 'Cowl Neck Knit Poncho', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(120, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 91, 'Cowl Neck Knit Poncho', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(121, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 92, 'Cowl Neck Knit Poncho', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(122, 1, 'customer', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Mr. Keith Larkin', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(123, 1, 'customer', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Heidi O\'Conner', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(124, 1, 'customer', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'Hank Zemlak', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(125, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 51, 'Classic Aviator Sunglasses', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(126, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 52, 'Classic Aviator Sunglasses', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(127, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 93, 'Chunky Knit Infinity Scarf (Digital)', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(128, 1, 'product', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 94, 'Chunky Knit Infinity Scarf (Digital)', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(129, 1, 'customer', '{\"ids\":[\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Marketplace\\\\Tables\\\\VendorTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'Ollie Pfeffer', 'danger', '2025-02-14 21:55:54', '2025-02-14 21:55:54'),
(130, 0, 'product', '{\"name\":\"Women\'s Cotton Blend Co-ord Set\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\Product\",\"slug\":\"womens-cotton-blend-co-ord-set\",\"slug_id\":\"0\",\"is_slug_editable\":\"1\",\"description\":null,\"content\":null,\"images\":[\"stores\\/ladylife\\/k2.jpeg\",\"stores\\/ladylife\\/k1.jpeg\",\"stores\\/ladylife\\/k3.jpeg\"],\"video_media\":\"[]\",\"product_type\":\"physical\",\"specification_table_id\":null,\"sale_type\":\"1\",\"sku\":\"SF-2443-ZU0Q\",\"price\":\"700\",\"sale_price\":\"650\",\"start_date\":\"2025-02-15 09:03:16\",\"end_date\":\"2025-02-17 09:03:20\",\"cost_per_item\":null,\"product_id\":null,\"barcode\":null,\"with_storehouse_management\":\"0\",\"quantity\":\"0\",\"allow_checkout_when_out_of_stock\":\"0\",\"stock_status\":\"in_stock\",\"weight\":\"200\",\"length\":\"50\",\"wide\":\"50\",\"height\":\"50\",\"is_added_attributes\":\"1\",\"added_attributes\":{\"1\":\"1\",\"2\":\"6\"},\"has_product_options\":\"1\",\"related_products\":null,\"faq_schema_config\":\"[]\",\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"categories\":[\"8\"],\"brand_id\":\"4\",\"product_collections\":[\"2\"],\"product_labels\":[\"2\"],\"taxes\":[\"2\"],\"minimum_order_quantity\":null,\"maximum_order_quantity\":\"0\",\"tag\":\"[{\\\"value\\\":\\\"Kurti\\\"}]\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 101, 'Women\'s Cotton Blend Co-ord Set', 'info', '2025-02-14 22:06:31', '2025-02-14 22:06:31'),
(131, 0, 'product-tag', '{\"name\":\"Women\'s Cotton Blend Co-ord Set\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\Product\",\"slug\":\"womens-cotton-blend-co-ord-set\",\"slug_id\":\"0\",\"is_slug_editable\":\"1\",\"description\":null,\"content\":null,\"images\":[\"stores\\/ladylife\\/k2.jpeg\",\"stores\\/ladylife\\/k1.jpeg\",\"stores\\/ladylife\\/k3.jpeg\"],\"video_media\":\"[]\",\"product_type\":\"physical\",\"specification_table_id\":null,\"sale_type\":\"1\",\"sku\":\"SF-2443-ZU0Q\",\"price\":\"700\",\"sale_price\":\"650\",\"start_date\":\"2025-02-15 09:03:16\",\"end_date\":\"2025-02-17 09:03:20\",\"cost_per_item\":null,\"product_id\":null,\"barcode\":null,\"with_storehouse_management\":\"0\",\"quantity\":\"0\",\"allow_checkout_when_out_of_stock\":\"0\",\"stock_status\":\"in_stock\",\"weight\":\"200\",\"length\":\"50\",\"wide\":\"50\",\"height\":\"50\",\"is_added_attributes\":\"1\",\"added_attributes\":{\"1\":\"1\",\"2\":\"6\"},\"has_product_options\":\"1\",\"related_products\":null,\"faq_schema_config\":\"[]\",\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"categories\":[\"8\"],\"brand_id\":\"4\",\"product_collections\":[\"2\"],\"product_labels\":[\"2\"],\"taxes\":[\"2\"],\"minimum_order_quantity\":null,\"maximum_order_quantity\":\"0\",\"tag\":\"[{\\\"value\\\":\\\"Kurti\\\"}]\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 7, 'Kurti', 'info', '2025-02-14 22:06:31', '2025-02-14 22:06:31'),
(132, 1, 'product', '{\"name\":\"Women\'s Cotton Blend Co-ord Set\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\Product\",\"slug\":\"womens-cotton-blend-co-ord-set\",\"slug_id\":\"191\",\"is_slug_editable\":\"1\",\"description\":null,\"content\":null,\"images\":[null,\"stores\\/ladylife\\/k2.jpeg\",\"stores\\/ladylife\\/k1.jpeg\",\"stores\\/ladylife\\/k3.jpeg\"],\"video_media\":\"[]\",\"product_type\":\"physical\",\"specification_table_id\":null,\"variation_default_id\":\"58\",\"botble-ecommerce-tables-product-variation-table-101_length\":\"10\",\"attribute_sets\":[\"1\",\"2\"],\"has_product_options\":\"1\",\"related_products\":null,\"faq_schema_config\":[[{\"key\":\"question\",\"value\":null},{\"key\":\"answer\",\"value\":null}]],\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"status\":\"pending\",\"store_id\":\"9\",\"is_featured\":\"0\",\"categories\":[\"8\"],\"brand_id\":\"4\",\"sku\":\"SF-2443-ZU0Q\",\"image\":\"stores\\/ladylife\\/k2.jpeg\",\"product_collections\":[\"2\"],\"product_labels\":[\"2\"],\"taxes\":[\"2\"],\"minimum_order_quantity\":\"0\",\"maximum_order_quantity\":\"0\",\"tag\":\"[{\\\"value\\\":\\\"Kurti\\\"}]\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 101, 'Women\'s Cotton Blend Co-ord Set', 'primary', '2025-02-14 22:11:20', '2025-02-14 22:11:20'),
(133, 1, 'product', '{\"name\":\"Women\'s Cotton Blend Co-ord Set\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\Product\",\"slug\":\"womens-cotton-blend-co-ord-set\",\"slug_id\":\"191\",\"is_slug_editable\":\"1\",\"description\":null,\"content\":null,\"images\":[null,\"stores\\/ladylife\\/k2.jpeg\",\"stores\\/ladylife\\/k1.jpeg\",\"stores\\/ladylife\\/k3.jpeg\"],\"video_media\":\"[]\",\"product_type\":\"physical\",\"specification_table_id\":null,\"variation_default_id\":\"58\",\"botble-ecommerce-tables-product-variation-table-101_length\":\"10\",\"attribute_sets\":[\"1\",\"2\"],\"has_product_options\":\"1\",\"related_products\":null,\"faq_schema_config\":[[{\"key\":\"question\",\"value\":null},{\"key\":\"answer\",\"value\":null}]],\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"status\":\"published\",\"store_id\":\"9\",\"is_featured\":\"0\",\"categories\":[\"8\"],\"brand_id\":\"4\",\"sku\":\"SF-2443-ZU0Q\",\"image\":\"stores\\/ladylife\\/k2.jpeg\",\"product_collections\":[\"2\"],\"product_labels\":[\"2\"],\"taxes\":[\"2\"],\"minimum_order_quantity\":\"0\",\"maximum_order_quantity\":\"0\",\"tag\":\"[{\\\"value\\\":\\\"Kurti\\\"}]\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 101, 'Women\'s Cotton Blend Co-ord Set', 'primary', '2025-02-14 22:11:39', '2025-02-14 22:11:39'),
(134, 0, 'specificationgroup', '{\"name\":\"New Group\",\"description\":\"Demo\",\"submitter\":\"save\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 5, 'New Group', 'info', '2025-02-14 22:16:13', '2025-02-14 22:16:13'),
(135, 0, 'specificationgroup', '{\"name\":\"New Group\",\"description\":\"Demo\",\"submitter\":\"save\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 5, 'New Group', 'info', '2025-02-14 22:16:13', '2025-02-14 22:16:13'),
(136, 0, 'specificationattribute', '{\"group_id\":\"5\",\"name\":\"Demo Attribute\",\"type\":\"text\",\"default_value\":\"Demo\",\"submitter\":\"save\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 9, 'Demo Attribute', 'info', '2025-02-14 22:16:53', '2025-02-14 22:16:53'),
(137, 0, 'specificationattribute', '{\"group_id\":\"5\",\"name\":\"Demo Attribute\",\"type\":\"text\",\"default_value\":\"Demo\",\"submitter\":\"save\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 9, 'Demo Attribute', 'info', '2025-02-14 22:16:53', '2025-02-14 22:16:53'),
(138, 0, 'specificationtable', '{\"name\":\"Demo Group\",\"description\":\"Demo\",\"groups\":[\"5\"]}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 3, 'Demo Group', 'info', '2025-02-14 22:17:33', '2025-02-14 22:17:33'),
(139, 0, 'specificationtable', '{\"name\":\"Demo Group\",\"description\":\"Demo\",\"groups\":[\"5\"]}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 3, 'Demo Group', 'info', '2025-02-14 22:17:33', '2025-02-14 22:17:33'),
(140, 1, 'page', '{\"name\":\"Home\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/localhost:8000\",\"description\":null,\"content\":\"<shortcode>[simple-slider style=\\\"2\\\" key=\\\"home-slider\\\" customize_font_family_of_description=\\\"0\\\" font_family_of_description=\\\"Oregano\\\" title_font_size=\\\"100\\\" shape_1=\\\"logo-avs-1.jpeg\\\" shape_2=\\\"third-iphone-removebg-preview.png\\\" shape_3=\\\"seccond-iphone-removebg-preview.png\\\" shape_4=\\\"fifth-iphone-removebg-preview.png\\\" is_autoplay=\\\"yes\\\" autoplay_speed=\\\"5000\\\" is_loop=\\\"yes\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\"2\\\" key_1=\\\"WXAUTIJV1QU0\\\" key_2=\\\"7Z5RXBBWV7J2\\\" key_3=\\\"JY08TDO8FG1E\\\" full_width=\\\"1\\\" enable_lazy_loading=\\\"no\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\"slider\\\" title=\\\"Popular on the Shofy store.\\\" subtitle=\\\"Shop by Category\\\" category_ids=\\\"1,2,7,11,18,19\\\" background_color=\\\"#F3F5F7\\\" enable_lazy_loading=\\\"no\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\"Customer Favorite Style Product\\\" subtitle=\\\"All Product Shop\\\" limit=\\\"8\\\" tabs=\\\"all,featured,on-sale,trending,top-rated\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\"slider-full-width\\\" title=\\\"This Week\'s Featured\\\" subtitle=\\\"Shop by Category\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" background_color=\\\"#EFF1F5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"Trending Arrivals\\\" subtitle=\\\"More to Discover\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" ads_ids=\\\"6\\\" style=\\\"slider\\\" ads=\\\"VKJNCBIBQC1O\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"This Week\'s Featured\\\" subtitle=\\\"Best Seller This Week\'s\\\" by=\\\"specify\\\" product_ids=\\\"3,4,5,6\\\" limit=\\\"12\\\" style=\\\"grid\\\" button_label=\\\"Shop All Now\\\" button_url=\\\"\\/products\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\"1\\\" title=\\\"The Review Are In\\\" testimonial_ids=\\\"2,3,4\\\" enable_lazy_loading=\\\"yes\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\"Latest News &amp; Articles\\\" subtitle=\\\"Our Blog &amp; News\\\" type=\\\"recent\\\" limit=\\\"3\\\" button_label=\\\"Discover More\\\" button_url=\\\"\\/blog\\\" enable_lazy_loading=\\\"yes\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\"2\\\" quantity=\\\"4\\\" title_1=\\\"Free Delivery\\\" description_1=\\\"Orders from all item\\\" icon_1=\\\"ti ti-truck-delivery\\\" title_2=\\\"Return &amp; Refund\\\" description_2=\\\"Money-back guarantee\\\" icon_2=\\\"ti ti-currency-dollar\\\" title_3=\\\"Member Discount\\\" description_3=\\\"Every order over $140.00\\\" icon_3=\\\"ti ti-discount-2\\\" title_4=\\\"Support 24\\/7\\\" description_4=\\\"Contact us 24 hours a day\\\" icon_4=\\\"ti ti-headset\\\" enable_lazy_loading=\\\"yes\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\"2\\\" limit=\\\"5\\\" enable_lazy_loading=\\\"yes\\\"][\\/gallery]<\\/shortcode>\",\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"full-width\",\"image\":\"fashion\\/products\\/fifth-iphone-removebg-preview.png\",\"breadcrumb_style\":\"none\",\"breadcrumb_background\":\"fashion\\/products\\/first-iphone-removebg-preview.png\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-02-14 22:34:16', '2025-02-14 22:34:16'),
(141, 1, 'page', '{\"name\":\"Home\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/localhost:8000\",\"description\":null,\"content\":\"<shortcode>[simple-slider style=\\\"2\\\" key=\\\"home-slider\\\" customize_font_family_of_description=\\\"0\\\" font_family_of_description=\\\"Oregano\\\" title_font_size=\\\"100\\\" shape_1=\\\"logo-avs-1.jpeg\\\" is_autoplay=\\\"yes\\\" autoplay_speed=\\\"5000\\\" is_loop=\\\"yes\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\"2\\\" key_1=\\\"WXAUTIJV1QU0\\\" key_2=\\\"7Z5RXBBWV7J2\\\" key_3=\\\"JY08TDO8FG1E\\\" full_width=\\\"1\\\" enable_lazy_loading=\\\"no\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\"slider\\\" title=\\\"Popular on the Shofy store.\\\" subtitle=\\\"Shop by Category\\\" category_ids=\\\"1,2,7,11,18,19\\\" background_color=\\\"#F3F5F7\\\" enable_lazy_loading=\\\"no\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\"Customer Favorite Style Product\\\" subtitle=\\\"All Product Shop\\\" limit=\\\"8\\\" tabs=\\\"all,featured,on-sale,trending,top-rated\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\"slider-full-width\\\" title=\\\"This Week\'s Featured\\\" subtitle=\\\"Shop by Category\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" background_color=\\\"#EFF1F5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"Trending Arrivals\\\" subtitle=\\\"More to Discover\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" ads_ids=\\\"6\\\" style=\\\"slider\\\" ads=\\\"VKJNCBIBQC1O\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"This Week\'s Featured\\\" subtitle=\\\"Best Seller This Week\'s\\\" by=\\\"specify\\\" product_ids=\\\"3,4,5,6\\\" limit=\\\"12\\\" style=\\\"grid\\\" button_label=\\\"Shop All Now\\\" button_url=\\\"\\/products\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\"1\\\" title=\\\"The Review Are In\\\" testimonial_ids=\\\"2,3,4\\\" enable_lazy_loading=\\\"yes\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\"Latest News &amp; Articles\\\" subtitle=\\\"Our Blog &amp; News\\\" type=\\\"recent\\\" limit=\\\"3\\\" button_label=\\\"Discover More\\\" button_url=\\\"\\/blog\\\" enable_lazy_loading=\\\"yes\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\"2\\\" quantity=\\\"4\\\" title_1=\\\"Free Delivery\\\" description_1=\\\"Orders from all item\\\" icon_1=\\\"ti ti-truck-delivery\\\" title_2=\\\"Return &amp; Refund\\\" description_2=\\\"Money-back guarantee\\\" icon_2=\\\"ti ti-currency-dollar\\\" title_3=\\\"Member Discount\\\" description_3=\\\"Every order over $140.00\\\" icon_3=\\\"ti ti-discount-2\\\" title_4=\\\"Support 24\\/7\\\" description_4=\\\"Contact us 24 hours a day\\\" icon_4=\\\"ti ti-headset\\\" enable_lazy_loading=\\\"yes\\\"][\\/site-features]<\\/shortcode><shortcode>[gallery style=\\\"2\\\" limit=\\\"5\\\" enable_lazy_loading=\\\"yes\\\"][\\/gallery]<\\/shortcode>\",\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"full-width\",\"image\":\"fashion\\/products\\/fifth-iphone-removebg-preview.png\",\"breadcrumb_style\":\"none\",\"breadcrumb_background\":\"fashion\\/products\\/first-iphone-removebg-preview.png\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-02-14 22:35:35', '2025-02-14 22:35:35'),
(142, 1, 'page', '{\"name\":\"Home\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/localhost:8000\",\"description\":null,\"content\":\"<shortcode>[simple-slider style=\\\"2\\\" key=\\\"home-slider\\\" customize_font_family_of_description=\\\"0\\\" font_family_of_description=\\\"Oregano\\\" title_font_size=\\\"100\\\" shape_1=\\\"logo-avs-1.jpeg\\\" is_autoplay=\\\"yes\\\" autoplay_speed=\\\"5000\\\" is_loop=\\\"yes\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\"2\\\" key_1=\\\"WXAUTIJV1QU0\\\" key_2=\\\"7Z5RXBBWV7J2\\\" key_3=\\\"JY08TDO8FG1E\\\" full_width=\\\"1\\\" enable_lazy_loading=\\\"no\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\"slider\\\" title=\\\"Popular on the Shofy store.\\\" subtitle=\\\"Shop by Category\\\" category_ids=\\\"1,2,7,11,18,19\\\" background_color=\\\"#F3F5F7\\\" enable_lazy_loading=\\\"no\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\"Customer Favorite Style Product\\\" subtitle=\\\"All Product Shop\\\" limit=\\\"8\\\" tabs=\\\"all,featured,on-sale,trending,top-rated\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\"slider-full-width\\\" title=\\\"This Week\'s Featured\\\" subtitle=\\\"Shop by Category\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" background_color=\\\"#EFF1F5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"Trending Arrivals\\\" subtitle=\\\"More to Discover\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" ads_ids=\\\"6\\\" style=\\\"slider\\\" ads=\\\"VKJNCBIBQC1O\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"This Week\'s Featured\\\" subtitle=\\\"Best Seller This Week\'s\\\" by=\\\"specify\\\" product_ids=\\\"3,4,5,6\\\" limit=\\\"12\\\" style=\\\"grid\\\" button_label=\\\"Shop All Now\\\" button_url=\\\"\\/products\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\"1\\\" title=\\\"The Review Are In\\\" testimonial_ids=\\\"2,3,4\\\" enable_lazy_loading=\\\"yes\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\"Latest News &amp; Articles\\\" subtitle=\\\"Our Blog &amp; News\\\" type=\\\"recent\\\" limit=\\\"3\\\" button_label=\\\"Discover More\\\" button_url=\\\"\\/blog\\\" enable_lazy_loading=\\\"yes\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\"2\\\" quantity=\\\"4\\\" title_1=\\\"Free Delivery\\\" description_1=\\\"Orders from all item\\\" icon_1=\\\"ti ti-truck-delivery\\\" title_2=\\\"Return &amp; Refund\\\" description_2=\\\"Money-back guarantee\\\" icon_2=\\\"ti ti-currency-dollar\\\" title_3=\\\"Member Discount\\\" description_3=\\\"Every order over $140.00\\\" icon_3=\\\"ti ti-discount-2\\\" title_4=\\\"Support 24\\/7\\\" description_4=\\\"Contact us 24 hours a day\\\" icon_4=\\\"ti ti-headset\\\" enable_lazy_loading=\\\"yes\\\"][\\/site-features]<\\/shortcode>\",\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"full-width\",\"image\":\"fashion\\/products\\/fifth-iphone-removebg-preview.png\",\"breadcrumb_style\":\"none\",\"breadcrumb_background\":\"fashion\\/products\\/first-iphone-removebg-preview.png\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-02-14 22:38:41', '2025-02-14 22:38:41'),
(143, 1, 'page', '{\"name\":\"Home\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/localhost:8000\",\"description\":null,\"content\":\"<shortcode>[simple-slider style=\\\"2\\\" key=\\\"home-slider\\\" customize_font_family_of_description=\\\"0\\\" font_family_of_description=\\\"Oregano\\\" title_font_size=\\\"80\\\" is_autoplay=\\\"yes\\\" autoplay_speed=\\\"5000\\\" is_loop=\\\"yes\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ads style=\\\"2\\\" key_1=\\\"WXAUTIJV1QU0\\\" key_2=\\\"7Z5RXBBWV7J2\\\" key_3=\\\"JY08TDO8FG1E\\\" full_width=\\\"1\\\" enable_lazy_loading=\\\"no\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-categories style=\\\"slider\\\" title=\\\"Popular on the Shofy store.\\\" subtitle=\\\"Shop by Category\\\" category_ids=\\\"1,2,7,11,18,19\\\" background_color=\\\"#F3F5F7\\\" enable_lazy_loading=\\\"no\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\"Customer Favorite Style Product\\\" subtitle=\\\"All Product Shop\\\" limit=\\\"8\\\" tabs=\\\"all,featured,on-sale,trending,top-rated\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\"slider-full-width\\\" title=\\\"This Week\'s Featured\\\" subtitle=\\\"Shop by Category\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" background_color=\\\"#EFF1F5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"Trending Arrivals\\\" subtitle=\\\"More to Discover\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" ads_ids=\\\"6\\\" style=\\\"slider\\\" ads=\\\"VKJNCBIBQC1O\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"This Week\'s Featured\\\" subtitle=\\\"Best Seller This Week\'s\\\" by=\\\"specify\\\" product_ids=\\\"3,4,5,6\\\" limit=\\\"12\\\" style=\\\"grid\\\" button_label=\\\"Shop All Now\\\" button_url=\\\"\\/products\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[testimonials style=\\\"1\\\" title=\\\"The Review Are In\\\" testimonial_ids=\\\"2,3,4\\\" enable_lazy_loading=\\\"yes\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts title=\\\"Latest News &amp; Articles\\\" subtitle=\\\"Our Blog &amp; News\\\" type=\\\"recent\\\" limit=\\\"3\\\" button_label=\\\"Discover More\\\" button_url=\\\"\\/blog\\\" enable_lazy_loading=\\\"yes\\\"][\\/blog-posts]<\\/shortcode><shortcode>[site-features style=\\\"2\\\" quantity=\\\"4\\\" title_1=\\\"Free Delivery\\\" description_1=\\\"Orders from all item\\\" icon_1=\\\"ti ti-truck-delivery\\\" title_2=\\\"Return &amp; Refund\\\" description_2=\\\"Money-back guarantee\\\" icon_2=\\\"ti ti-currency-dollar\\\" title_3=\\\"Member Discount\\\" description_3=\\\"Every order over $140.00\\\" icon_3=\\\"ti ti-discount-2\\\" title_4=\\\"Support 24\\/7\\\" description_4=\\\"Contact us 24 hours a day\\\" icon_4=\\\"ti ti-headset\\\" enable_lazy_loading=\\\"yes\\\"][\\/site-features]<\\/shortcode>\",\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"full-width\",\"image\":\"fashion\\/products\\/fifth-iphone-removebg-preview.png\",\"breadcrumb_style\":\"none\",\"breadcrumb_background\":\"fashion\\/products\\/first-iphone-removebg-preview.png\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-02-14 22:39:29', '2025-02-14 22:39:29'),
(144, 1, 'page', '{\"name\":\"Home\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/localhost:8000\",\"description\":null,\"content\":\"<shortcode>[simple-slider style=\\\"2\\\" key=\\\"home-slider\\\" customize_font_family_of_description=\\\"0\\\" font_family_of_description=\\\"Oregano\\\" title_font_size=\\\"80\\\" is_autoplay=\\\"yes\\\" autoplay_speed=\\\"5000\\\" is_loop=\\\"yes\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\"slider\\\" title=\\\"Popular on the Shofy store.\\\" subtitle=\\\"Shop by Category\\\" category_ids=\\\"1,2,7,11,18,19\\\" background_color=\\\"#F3F5F7\\\" enable_lazy_loading=\\\"no\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\"2\\\" key_1=\\\"WXAUTIJV1QU0\\\" key_2=\\\"7Z5RXBBWV7J2\\\" key_3=\\\"JY08TDO8FG1E\\\" full_width=\\\"1\\\" enable_lazy_loading=\\\"no\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\"Customer Favorite Style Product\\\" subtitle=\\\"All Product Shop\\\" limit=\\\"8\\\" tabs=\\\"all,featured,on-sale,trending,top-rated\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\"slider-full-width\\\" title=\\\"This Week\'s Featured\\\" subtitle=\\\"Shop by Category\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" background_color=\\\"#EFF1F5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"Trending Arrivals\\\" subtitle=\\\"More to Discover\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" ads_ids=\\\"6\\\" style=\\\"slider\\\" ads=\\\"VKJNCBIBQC1O\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\"slider-full-width\\\" title=\\\"This Week\'s Featured\\\" subtitle=\\\"Best Seller This Week\'s\\\" limit=\\\"12\\\" slides_to_show=\\\"4\\\" items_per_row=\\\"4\\\" border_color=\\\"#fd4b6b\\\" background_color=\\\"#EFF1F5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\"2\\\" quantity=\\\"4\\\" title_1=\\\"Free Delivery\\\" description_1=\\\"Orders from all item\\\" icon_1=\\\"ti ti-truck-delivery\\\" title_2=\\\"Return &amp; Refund\\\" description_2=\\\"Money-back guarantee\\\" icon_2=\\\"ti ti-currency-dollar\\\" title_3=\\\"Member Discount\\\" description_3=\\\"Every order over $140.00\\\" icon_3=\\\"ti ti-discount-2\\\" title_4=\\\"Support 24\\/7\\\" description_4=\\\"Contact us 24 hours a day\\\" icon_4=\\\"ti ti-headset\\\" enable_lazy_loading=\\\"yes\\\"][\\/site-features]<\\/shortcode>\",\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"full-width\",\"image\":\"fashion\\/products\\/fifth-iphone-removebg-preview.png\",\"breadcrumb_style\":\"none\",\"breadcrumb_background\":\"fashion\\/products\\/first-iphone-removebg-preview.png\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-02-14 22:42:36', '2025-02-14 22:42:36'),
(145, 1, 'page', '{\"name\":\"Categories\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"categories\",\"slug_id\":\"120\",\"is_slug_editable\":\"1\",\"description\":null,\"content\":\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\"grid\\\" category_ids=\\\"2,7\\\" title=\\\"Popular on the Shofy store.\\\" subtitle=\\\"Shop by Category\\\" background_color=\\\"#F3F5F7\\\" items_per_view=\\\"5\\\" show_products_count=\\\"yes\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-categories]<\\/shortcode>\",\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"full-width\",\"image\":null,\"breadcrumb_style\":\"align-start\",\"breadcrumb_background\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Categories', 'primary', '2025-02-14 22:55:39', '2025-02-14 22:55:39'),
(146, 1, 'product-category', '{\"order\":\"1\",\"name\":\"Clothing\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\ProductCategory\",\"slug\":\"clothing\",\"slug_id\":\"53\",\"is_slug_editable\":\"1\",\"parent_id\":\"0\",\"description\":null,\"status\":\"published\",\"image\":\"manusia-formal-baju-biru-ultra-laut-bebas-png-dan-psd-pakaian-resmi-setelan-foto-paspor-pakaian-pria.jpeg\",\"icon_image\":null,\"is_featured\":\"1\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Clothing', 'primary', '2025-02-14 22:57:28', '2025-02-14 22:57:28'),
(147, 1, 'menu_location', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'ID: 1', 'info', '2025-02-14 23:02:21', '2025-02-14 23:02:21');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(148, 1, 'menu', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Main menu', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22'),
(149, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22'),
(150, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'Shop Categories', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(151, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Shop Brands', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22'),
(152, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 15, 'Compare', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22'),
(153, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 14, 'Cart', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(154, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'Wishlist', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22'),
(155, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'Shop', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22'),
(156, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 11, 'Shop Grid', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(157, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'Product Detail', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22'),
(158, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 13, 'Grab Coupons', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22'),
(159, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 17, 'Track Your Order', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(160, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 26, 'Blog', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22'),
(161, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 27, 'Blog Grid', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22'),
(162, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 28, 'Blog List', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(163, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 29, 'Blog Detail', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22'),
(164, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"2 3 4 5 6 10 18 19 20 21 22 23 24 25 42\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[]},{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":6,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":11,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Shop Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":9,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":26,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":5,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/blog\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":7,\\\"title\\\":\\\"Blog\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":5,\\\"name\\\":\\\"Blog\\\",\\\"content\\\":null,\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":123,\\\"key\\\":\\\"blog\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":5,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":27,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=grid\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Blog Grid\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":28,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog?layout=list\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Blog List\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":29,\\\"menu_id\\\":1,\\\"parent_id\\\":26,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Blog Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":8,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/blog\\/quality-foods-requirments-for-every-human-bodys\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 30, 'Contact', 'primary', '2025-02-14 23:02:22', '2025-02-14 23:02:22'),
(165, 1, 'menunode', '{\"data\":{\"menu_id\":\"1\",\"title\":\"Shop\",\"url\":\"\\/\",\"icon_font\":\"ti ti-shopping-bag-check\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"position\":\"18\"}}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 43, 'Shop', 'info', '2025-02-14 23:06:22', '2025-02-14 23:06:22'),
(166, 1, 'menunode', '{\"data\":{\"menu_id\":\"1\",\"title\":\"Details\",\"url\":\"\\/\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 44, 'Details', 'info', '2025-02-14 23:08:41', '2025-02-14 23:08:41'),
(167, 1, 'menu_location', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'ID: 1', 'info', '2025-02-14 23:10:22', '2025-02-14 23:10:22');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(168, 1, 'menu', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Main menu', 'primary', '2025-02-14 23:10:22', '2025-02-14 23:10:22'),
(169, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-02-14 23:10:22', '2025-02-14 23:10:22'),
(170, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 44, 'Details', 'primary', '2025-02-14 23:10:22', '2025-02-14 23:10:22');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(171, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'Shop Categories', 'primary', '2025-02-14 23:10:22', '2025-02-14 23:10:22'),
(172, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Shop Brands', 'primary', '2025-02-14 23:10:22', '2025-02-14 23:10:22'),
(173, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 12, 'Product Detail', 'primary', '2025-02-14 23:10:22', '2025-02-14 23:10:22');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(174, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'Shop', 'primary', '2025-02-14 23:10:22', '2025-02-14 23:10:22'),
(175, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 13, 'Grab Coupons', 'primary', '2025-02-14 23:10:22', '2025-02-14 23:10:22'),
(176, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 14, 'Cart', 'primary', '2025-02-14 23:10:22', '2025-02-14 23:10:22');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(177, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 15, 'Compare', 'primary', '2025-02-14 23:10:22', '2025-02-14 23:10:22'),
(178, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 16, 'Wishlist', 'primary', '2025-02-14 23:10:22', '2025-02-14 23:10:22'),
(179, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 17, 'Track Your Order', 'primary', '2025-02-14 23:10:22', '2025-02-14 23:10:22');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(180, 1, 'menunode', '{\"name\":\"Main menu\",\"deleted_nodes\":\"11 26 29 28 27 43\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"id\\\":1,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":1,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":0,\\\"title\\\":\\\"Home\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":1,\\\"name\\\":\\\"Home\\\",\\\"content\\\":\\\"<shortcode>[simple-slider style=\\\\\\\"2\\\\\\\" key=\\\\\\\"home-slider\\\\\\\" customize_font_family_of_description=\\\\\\\"0\\\\\\\" font_family_of_description=\\\\\\\"Oregano\\\\\\\" title_font_size=\\\\\\\"80\\\\\\\" is_autoplay=\\\\\\\"yes\\\\\\\" autoplay_speed=\\\\\\\"5000\\\\\\\" is_loop=\\\\\\\"yes\\\\\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"slider\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" category_ids=\\\\\\\"1,2,7,11,18,19\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\\\\\"2\\\\\\\" key_1=\\\\\\\"WXAUTIJV1QU0\\\\\\\" key_2=\\\\\\\"7Z5RXBBWV7J2\\\\\\\" key_3=\\\\\\\"JY08TDO8FG1E\\\\\\\" full_width=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"no\\\\\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\\\\\"Customer Favorite Style Product\\\\\\\" subtitle=\\\\\\\"All Product Shop\\\\\\\" limit=\\\\\\\"8\\\\\\\" tabs=\\\\\\\"all,featured,on-sale,trending,top-rated\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\\\\\"Trending Arrivals\\\\\\\" subtitle=\\\\\\\"More to Discover\\\\\\\" collection_ids=\\\\\\\"1\\\\\\\" limit=\\\\\\\"5\\\\\\\" with_sidebar=\\\\\\\"on\\\\\\\" ads_ids=\\\\\\\"6\\\\\\\" style=\\\\\\\"slider\\\\\\\" ads=\\\\\\\"VKJNCBIBQC1O\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\\\\\"slider-full-width\\\\\\\" title=\\\\\\\"This Week\'s Featured\\\\\\\" subtitle=\\\\\\\"Best Seller This Week\'s\\\\\\\" limit=\\\\\\\"12\\\\\\\" slides_to_show=\\\\\\\"4\\\\\\\" items_per_row=\\\\\\\"4\\\\\\\" border_color=\\\\\\\"#fd4b6b\\\\\\\" background_color=\\\\\\\"#EFF1F5\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\\\\\"2\\\\\\\" quantity=\\\\\\\"4\\\\\\\" title_1=\\\\\\\"Free Delivery\\\\\\\" description_1=\\\\\\\"Orders from all item\\\\\\\" icon_1=\\\\\\\"ti ti-truck-delivery\\\\\\\" title_2=\\\\\\\"Return &amp; Refund\\\\\\\" description_2=\\\\\\\"Money-back guarantee\\\\\\\" icon_2=\\\\\\\"ti ti-currency-dollar\\\\\\\" title_3=\\\\\\\"Member Discount\\\\\\\" description_3=\\\\\\\"Every order over $140.00\\\\\\\" icon_3=\\\\\\\"ti ti-discount-2\\\\\\\" title_4=\\\\\\\"Support 24\\/7\\\\\\\" description_4=\\\\\\\"Contact us 24 hours a day\\\\\\\" icon_4=\\\\\\\"ti ti-headset\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/site-features]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/fifth-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:12:36.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":119,\\\"key\\\":\\\"home\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"menu_id\\\":\\\"1\\\",\\\"title\\\":\\\"Details\\\",\\\"url\\\":\\\"\\/\\\",\\\"icon_font\\\":\\\"ti ti-list-details\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"position\\\":1,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"id\\\":44,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":8,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":2,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/categories\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Shop Categories\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Categories\\\",\\\"content\\\":\\\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\\\\\"grid\\\\\\\" category_ids=\\\\\\\"2,7\\\\\\\" title=\\\\\\\"Popular on the Shofy store.\\\\\\\" subtitle=\\\\\\\"Shop by Category\\\\\\\" background_color=\\\\\\\"#F3F5F7\\\\\\\" items_per_view=\\\\\\\"5\\\\\\\" show_products_count=\\\\\\\"yes\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-categories]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-15T04:25:39.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":120,\\\"key\\\":\\\"categories\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":2,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":9,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":3,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/brands\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop Brands\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":3,\\\"name\\\":\\\"Brands\\\",\\\"content\\\":\\\"<shortcode>[ecommerce-brands show_brand_name=\\\\\\\"1\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-brands]<\\/shortcode>\\\",\\\"user_id\\\":1,\\\"image\\\":\\\"fashion\\/products\\/seccond-iphone-removebg-preview.png\\\",\\\"template\\\":\\\"default\\\",\\\"description\\\":\\\"\\\",\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2025-02-14T16:07:37.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":121,\\\"key\\\":\\\"brands\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":3,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":12,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/products\\/classic-aviator-sunglasses\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":1,\\\"title\\\":\\\"Product Detail\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":7,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Shop\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":1,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null,\\\"children\\\":[]},\\\"children\\\":[{\\\"menuItem\\\":{\\\"id\\\":13,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":4,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/coupons\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":2,\\\"title\\\":\\\"Grab Coupons\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":4,\\\"name\\\":\\\"Coupons\\\",\\\"content\\\":\\\"[ecommerce-coupons coupon_ids=\\\\\\\"1,2,3,4,5,6\\\\\\\" enable_lazy_loading=\\\\\\\"yes\\\\\\\"][\\/ecommerce-coupons]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":122,\\\"key\\\":\\\"coupons\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":4,\\\"prefix\\\":\\\"\\\"}}}},{\\\"menuItem\\\":{\\\"id\\\":14,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/cart\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":4,\\\"title\\\":\\\"Cart\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":15,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/compare\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Compare\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":16,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/wishlist\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":5,\\\"title\\\":\\\"Wishlist\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}},{\\\"menuItem\\\":{\\\"id\\\":17,\\\"menu_id\\\":1,\\\"parent_id\\\":7,\\\"reference_id\\\":0,\\\"reference_type\\\":null,\\\"url\\\":\\\"\\/orders\\/tracking\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Track Your Order\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":null}}]},{\\\"menuItem\\\":{\\\"id\\\":30,\\\"menu_id\\\":1,\\\"parent_id\\\":0,\\\"reference_id\\\":6,\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"url\\\":\\\"\\/contact\\\",\\\"icon_font\\\":\\\"\\\",\\\"position\\\":3,\\\"title\\\":\\\"Contact\\\",\\\"css_class\\\":\\\"\\\",\\\"target\\\":\\\"_self\\\",\\\"has_child\\\":0,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"reference\\\":{\\\"id\\\":6,\\\"name\\\":\\\"Contact\\\",\\\"content\\\":\\\"[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main\\/contact\\/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;\\/strong&gt;&quot; icon_2=&quot;main\\/contact\\/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main\\/contact\\/icon-3.png&quot;][\\/contact-form][google-map]502 New Street, Brighton VIC, Australia[\\/google-map]\\\",\\\"user_id\\\":1,\\\"image\\\":null,\\\"template\\\":\\\"full-width\\\",\\\"description\\\":null,\\\"status\\\":{\\\"value\\\":\\\"published\\\",\\\"label\\\":\\\"Published\\\"},\\\"created_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"updated_at\\\":\\\"2024-11-01T02:17:01.000000Z\\\",\\\"slugable\\\":{\\\"id\\\":124,\\\"key\\\":\\\"contact\\\",\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"prefix\\\":\\\"\\\"}},\\\"children\\\":[]}}]\",\"menu_id\":\"1\",\"title\":\"Contact\",\"url\":\"\\/orders\\/tracking\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"icon_font\":\"ti ti-list-details\",\"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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 30, 'Contact', 'primary', '2025-02-14 23:10:22', '2025-02-14 23:10:22'),
(181, 1, 'product', '{\"name\":\"Women\'s Cotton Blend Co-ord Set\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\Product\",\"slug\":\"womens-cotton-blend-co-ord-set\",\"slug_id\":\"191\",\"is_slug_editable\":\"1\",\"description\":null,\"content\":null,\"images\":[null,\"stores\\/ladylife\\/k2.jpeg\",\"stores\\/ladylife\\/k1.jpeg\",\"stores\\/ladylife\\/k3.jpeg\"],\"video_media\":\"[]\",\"product_type\":\"physical\",\"specification_table_id\":null,\"variation_default_id\":\"58\",\"botble-ecommerce-tables-product-variation-table-101_length\":\"10\",\"attribute_sets\":[\"1\",\"2\"],\"has_product_options\":\"1\",\"related_products\":null,\"faq_schema_config\":[[{\"key\":\"question\",\"value\":null},{\"key\":\"answer\",\"value\":null}]],\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"status\":\"published\",\"store_id\":\"9\",\"is_featured\":\"0\",\"categories\":[\"8\"],\"brand_id\":\"4\",\"sku\":\"SF-2443-ZU0Q\",\"image\":\"stores\\/ladylife\\/k2.jpeg\",\"product_collections\":[\"2\"],\"product_labels\":[\"2\"],\"taxes\":[\"2\"],\"minimum_order_quantity\":\"0\",\"maximum_order_quantity\":\"0\",\"tag\":\"[{\\\"value\\\":\\\"Kurti\\\"}]\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 101, 'Women\'s Cotton Blend Co-ord Set', 'primary', '2025-02-14 23:12:55', '2025-02-14 23:12:55'),
(182, 1, 'product', '[]', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 111, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:16:32', '2025-02-14 23:16:32'),
(183, 1, 'product', '[]', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 112, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:16:36', '2025-02-14 23:16:36'),
(184, 1, 'product', '[]', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 113, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:00', '2025-02-14 23:17:00'),
(185, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"60\",\"61\",\"62\",\"63\",\"64\",\"65\",\"66\",\"70\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 104, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:21', '2025-02-14 23:17:21'),
(186, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"60\",\"61\",\"62\",\"63\",\"64\",\"65\",\"66\",\"70\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 105, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:21', '2025-02-14 23:17:21'),
(187, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"60\",\"61\",\"62\",\"63\",\"64\",\"65\",\"66\",\"70\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 106, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:21', '2025-02-14 23:17:21'),
(188, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"60\",\"61\",\"62\",\"63\",\"64\",\"65\",\"66\",\"70\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 107, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:21', '2025-02-14 23:17:21'),
(189, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"60\",\"61\",\"62\",\"63\",\"64\",\"65\",\"66\",\"70\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 108, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:21', '2025-02-14 23:17:21'),
(190, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"60\",\"61\",\"62\",\"63\",\"64\",\"65\",\"66\",\"70\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 109, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:21', '2025-02-14 23:17:21'),
(191, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"60\",\"61\",\"62\",\"63\",\"64\",\"65\",\"66\",\"70\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 110, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:21', '2025-02-14 23:17:21'),
(192, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"60\",\"61\",\"62\",\"63\",\"64\",\"65\",\"66\",\"70\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 114, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:21', '2025-02-14 23:17:21'),
(193, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"71\",\"72\",\"73\",\"74\",\"75\",\"76\",\"77\",\"78\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 115, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:43', '2025-02-14 23:17:43'),
(194, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"71\",\"72\",\"73\",\"74\",\"75\",\"76\",\"77\",\"78\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 116, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:43', '2025-02-14 23:17:43'),
(195, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"71\",\"72\",\"73\",\"74\",\"75\",\"76\",\"77\",\"78\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 117, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:43', '2025-02-14 23:17:43'),
(196, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"71\",\"72\",\"73\",\"74\",\"75\",\"76\",\"77\",\"78\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 118, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:44', '2025-02-14 23:17:44'),
(197, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"71\",\"72\",\"73\",\"74\",\"75\",\"76\",\"77\",\"78\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 119, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:44', '2025-02-14 23:17:44'),
(198, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"71\",\"72\",\"73\",\"74\",\"75\",\"76\",\"77\",\"78\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 120, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:44', '2025-02-14 23:17:44'),
(199, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"71\",\"72\",\"73\",\"74\",\"75\",\"76\",\"77\",\"78\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 121, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:44', '2025-02-14 23:17:44'),
(200, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"71\",\"72\",\"73\",\"74\",\"75\",\"76\",\"77\",\"78\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 122, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:44', '2025-02-14 23:17:44'),
(201, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"79\",\"80\",\"81\",\"82\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 123, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:56', '2025-02-14 23:17:56'),
(202, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"79\",\"80\",\"81\",\"82\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 124, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:56', '2025-02-14 23:17:56'),
(203, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"79\",\"80\",\"81\",\"82\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 125, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:56', '2025-02-14 23:17:56'),
(204, 1, 'product', '{\"_method\":\"DELETE\",\"ids\":[\"79\",\"80\",\"81\",\"82\"]}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 126, 'Women\'s Cotton Blend Co-ord Set', 'danger', '2025-02-14 23:17:56', '2025-02-14 23:17:56'),
(205, 1, 'productcategory', '{\"_method\":\"delete\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Blouses', 'danger', '2025-02-14 23:22:11', '2025-02-14 23:22:11'),
(206, 1, 'productcategory', '{\"_method\":\"delete\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Pants', 'danger', '2025-02-14 23:22:17', '2025-02-14 23:22:17'),
(207, 1, 'producttag', '{\"ids\":[\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\ProductTagTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Electronic', 'danger', '2025-02-14 23:22:45', '2025-02-14 23:22:45'),
(208, 1, 'producttag', '{\"ids\":[\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\ProductTagTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Mobile', 'danger', '2025-02-14 23:22:45', '2025-02-14 23:22:45'),
(209, 1, 'producttag', '{\"ids\":[\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\ProductTagTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'Iphone', 'danger', '2025-02-14 23:22:45', '2025-02-14 23:22:45'),
(210, 1, 'producttag', '{\"ids\":[\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\ProductTagTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'Printer', 'danger', '2025-02-14 23:22:45', '2025-02-14 23:22:45'),
(211, 1, 'producttag', '{\"ids\":[\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\ProductTagTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Office', 'danger', '2025-02-14 23:22:46', '2025-02-14 23:22:46'),
(212, 1, 'producttag', '{\"ids\":[\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\ProductTagTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'IT', 'danger', '2025-02-14 23:22:46', '2025-02-14 23:22:46'),
(213, 1, 'product-attribute-sets', '{\"title\":\"Color\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":1,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"Green\\\",\\\"color\\\":\\\"rgb(39, 78, 19)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":2,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"Blue\\\",\\\"color\\\":\\\"rgb(7, 55, 99)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":3,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"Red\\\",\\\"color\\\":\\\"#DA323F\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":4,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"Black\\\",\\\"color\\\":\\\"rgb(0, 0, 0)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":5,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"Brown\\\",\\\"color\\\":\\\"#87554B\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"Navy Blue\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"Navy Blue\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"display_layout\":\"visual\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"0\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Color', 'primary', '2025-02-14 23:24:01', '2025-02-14 23:24:01'),
(214, 1, 'product-attributes', '{\"title\":\"Color\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":1,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"Green\\\",\\\"color\\\":\\\"rgb(39, 78, 19)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":2,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"Blue\\\",\\\"color\\\":\\\"rgb(7, 55, 99)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":3,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"Red\\\",\\\"color\\\":\\\"#DA323F\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":4,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"Black\\\",\\\"color\\\":\\\"rgb(0, 0, 0)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":5,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"Brown\\\",\\\"color\\\":\\\"#87554B\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"Navy Blue\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"Navy Blue\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"display_layout\":\"visual\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"0\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Green', 'primary', '2025-02-14 23:24:01', '2025-02-14 23:24:01'),
(215, 1, 'product-attributes', '{\"title\":\"Color\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":1,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"Green\\\",\\\"color\\\":\\\"rgb(39, 78, 19)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":2,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"Blue\\\",\\\"color\\\":\\\"rgb(7, 55, 99)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":3,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"Red\\\",\\\"color\\\":\\\"#DA323F\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":4,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"Black\\\",\\\"color\\\":\\\"rgb(0, 0, 0)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":5,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"Brown\\\",\\\"color\\\":\\\"#87554B\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"Navy Blue\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"Navy Blue\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"display_layout\":\"visual\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"0\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Blue', 'primary', '2025-02-14 23:24:01', '2025-02-14 23:24:01'),
(216, 1, 'product-attributes', '{\"title\":\"Color\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":1,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"Green\\\",\\\"color\\\":\\\"rgb(39, 78, 19)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":2,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"Blue\\\",\\\"color\\\":\\\"rgb(7, 55, 99)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":3,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"Red\\\",\\\"color\\\":\\\"#DA323F\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":4,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"Black\\\",\\\"color\\\":\\\"rgb(0, 0, 0)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":5,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"Brown\\\",\\\"color\\\":\\\"#87554B\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"Navy Blue\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"Navy Blue\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"display_layout\":\"visual\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"0\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'Red', 'primary', '2025-02-14 23:24:01', '2025-02-14 23:24:01'),
(217, 1, 'product-attributes', '{\"title\":\"Color\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":1,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"Green\\\",\\\"color\\\":\\\"rgb(39, 78, 19)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":2,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"Blue\\\",\\\"color\\\":\\\"rgb(7, 55, 99)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":3,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"Red\\\",\\\"color\\\":\\\"#DA323F\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":4,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"Black\\\",\\\"color\\\":\\\"rgb(0, 0, 0)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":5,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"Brown\\\",\\\"color\\\":\\\"#87554B\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"Navy Blue\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"Navy Blue\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"display_layout\":\"visual\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"0\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'Black', 'primary', '2025-02-14 23:24:01', '2025-02-14 23:24:01'),
(218, 1, 'product-attributes', '{\"title\":\"Color\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":1,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"Green\\\",\\\"color\\\":\\\"rgb(39, 78, 19)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":2,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"Blue\\\",\\\"color\\\":\\\"rgb(7, 55, 99)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":3,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"Red\\\",\\\"color\\\":\\\"#DA323F\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":4,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"Black\\\",\\\"color\\\":\\\"rgb(0, 0, 0)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":5,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"Brown\\\",\\\"color\\\":\\\"#87554B\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"Navy Blue\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"Navy Blue\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"display_layout\":\"visual\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"0\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Brown', 'primary', '2025-02-14 23:24:01', '2025-02-14 23:24:01'),
(219, 1, 'product-attributes', '{\"title\":\"Color\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":1,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"Green\\\",\\\"color\\\":\\\"rgb(39, 78, 19)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":2,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"Blue\\\",\\\"color\\\":\\\"rgb(7, 55, 99)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":3,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"Red\\\",\\\"color\\\":\\\"#DA323F\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":4,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"Black\\\",\\\"color\\\":\\\"rgb(0, 0, 0)\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":5,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"Brown\\\",\\\"color\\\":\\\"#87554B\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"Navy Blue\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"Navy Blue\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"display_layout\":\"visual\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"0\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 21, 'Navy Blue', 'info', '2025-02-14 23:24:01', '2025-02-14 23:24:01'),
(220, 1, 'product-attribute-sets', '{\"title\":\"Size\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":6,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"S\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":7,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"M\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":8,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"L\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":9,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"XL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":10,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":6,\\\"title\\\":\\\"XXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":7,\\\"title\\\":\\\"XXXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"XXXXL\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"save\",\"status\":\"published\",\"display_layout\":\"text\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"1\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Size', 'primary', '2025-02-14 23:25:14', '2025-02-14 23:25:14'),
(221, 1, 'product-attributes', '{\"title\":\"Size\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":6,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"S\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":7,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"M\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":8,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"L\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":9,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"XL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":10,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":6,\\\"title\\\":\\\"XXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":7,\\\"title\\\":\\\"XXXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"XXXXL\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"save\",\"status\":\"published\",\"display_layout\":\"text\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"1\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'S', 'primary', '2025-02-14 23:25:14', '2025-02-14 23:25:14'),
(222, 1, 'product-attributes', '{\"title\":\"Size\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":6,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"S\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":7,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"M\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":8,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"L\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":9,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"XL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":10,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":6,\\\"title\\\":\\\"XXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":7,\\\"title\\\":\\\"XXXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"XXXXL\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"save\",\"status\":\"published\",\"display_layout\":\"text\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"1\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'M', 'primary', '2025-02-14 23:25:14', '2025-02-14 23:25:14'),
(223, 1, 'product-attributes', '{\"title\":\"Size\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":6,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"S\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":7,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"M\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":8,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"L\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":9,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"XL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":10,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":6,\\\"title\\\":\\\"XXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":7,\\\"title\\\":\\\"XXXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"XXXXL\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"save\",\"status\":\"published\",\"display_layout\":\"text\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"1\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'L', 'primary', '2025-02-14 23:25:14', '2025-02-14 23:25:14'),
(224, 1, 'product-attributes', '{\"title\":\"Size\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":6,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"S\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":7,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"M\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":8,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"L\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":9,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"XL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":10,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":6,\\\"title\\\":\\\"XXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":7,\\\"title\\\":\\\"XXXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"XXXXL\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"save\",\"status\":\"published\",\"display_layout\":\"text\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"1\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'XL', 'primary', '2025-02-14 23:25:14', '2025-02-14 23:25:14'),
(225, 1, 'product-attributes', '{\"title\":\"Size\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":6,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"S\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":7,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"M\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":8,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"L\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":9,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"XL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":10,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":6,\\\"title\\\":\\\"XXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":7,\\\"title\\\":\\\"XXXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"XXXXL\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"save\",\"status\":\"published\",\"display_layout\":\"text\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"1\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'XXL', 'primary', '2025-02-14 23:25:14', '2025-02-14 23:25:14'),
(226, 1, 'product-attributes', '{\"title\":\"Size\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":6,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"S\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":7,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"M\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":8,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"L\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":9,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"XL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":10,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":6,\\\"title\\\":\\\"XXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":7,\\\"title\\\":\\\"XXXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"XXXXL\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"save\",\"status\":\"published\",\"display_layout\":\"text\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"1\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 22, 'XXL', 'info', '2025-02-14 23:25:14', '2025-02-14 23:25:14'),
(227, 1, 'product-attributes', '{\"title\":\"Size\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":6,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"S\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":7,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"M\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":8,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"L\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":9,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"XL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":10,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":6,\\\"title\\\":\\\"XXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":7,\\\"title\\\":\\\"XXXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"XXXXL\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"save\",\"status\":\"published\",\"display_layout\":\"text\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"1\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 23, 'XXXL', 'info', '2025-02-14 23:25:14', '2025-02-14 23:25:14');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(228, 1, 'product-attributes', '{\"title\":\"Size\",\"use_image_from_product_variation\":\"0\",\"deleted_attributes\":\"[]\",\"attributes\":\"[{\\\"id\\\":6,\\\"is_default\\\":1,\\\"order\\\":0,\\\"title\\\":\\\"S\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":7,\\\"is_default\\\":0,\\\"order\\\":1,\\\"title\\\":\\\"M\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":8,\\\"is_default\\\":0,\\\"order\\\":2,\\\"title\\\":\\\"L\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":9,\\\"is_default\\\":0,\\\"order\\\":3,\\\"title\\\":\\\"XL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":10,\\\"is_default\\\":0,\\\"order\\\":4,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":5,\\\"title\\\":\\\"XXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":6,\\\"title\\\":\\\"XXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"},{\\\"id\\\":0,\\\"is_default\\\":0,\\\"order\\\":7,\\\"title\\\":\\\"XXXXL\\\",\\\"color\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}]\",\"related_attribute_is_default\":\"1\",\"swatch-title\":\"XXXXL\",\"swatch-value\":null,\"swatch-image\":null,\"submitter\":\"save\",\"status\":\"published\",\"display_layout\":\"text\",\"is_searchable\":\"1\",\"is_comparable\":\"1\",\"is_use_in_product_listing\":\"1\",\"order\":\"1\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 24, 'XXXXL', 'info', '2025-02-14 23:25:14', '2025-02-14 23:25:14'),
(229, 1, 'globaloption', '{\"ids\":[\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\GlobalOptionTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'RAM', 'danger', '2025-02-14 23:31:34', '2025-02-14 23:31:34'),
(230, 1, 'globaloption', '{\"ids\":[\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\GlobalOptionTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'CPU', 'danger', '2025-02-14 23:31:34', '2025-02-14 23:31:34'),
(231, 1, 'globaloption', '{\"ids\":[\"4\",\"3\",\"2\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\GlobalOptionTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'HDD', 'danger', '2025-02-14 23:31:34', '2025-02-14 23:31:34'),
(232, 1, 'productcollection', '{\"ids\":[\"4\",\"3\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\ProductCollectionTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Trendy Wardrobe Essentials', 'danger', '2025-02-14 23:32:02', '2025-02-14 23:32:02'),
(233, 1, 'productcollection', '{\"ids\":[\"4\",\"3\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\ProductCollectionTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'Chic & Stylish Collection', 'danger', '2025-02-14 23:32:02', '2025-02-14 23:32:02'),
(234, 1, 'productcollection', '{\"ids\":[\"4\",\"3\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\ProductCollectionTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'Weekly Fashion Picks', 'danger', '2025-02-14 23:32:02', '2025-02-14 23:32:02'),
(235, 1, 'product-collection', '{\"name\":\"Fashion Forward Finds\",\"description\":null,\"collection_products\":\"101\",\"submitter\":\"apply\",\"status\":\"published\",\"is_featured\":\"0\",\"image\":\"first-iphone-removebg-preview.png\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Fashion Forward Finds', 'primary', '2025-02-14 23:32:31', '2025-02-14 23:32:31'),
(236, 1, 'brand', '{\"ids\":[\"5\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\BrandTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'FoodPound', 'danger', '2025-02-14 23:33:30', '2025-02-14 23:33:30'),
(237, 1, 'brand', '{\"ids\":[\"5\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\BrandTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'iTea JSC', 'danger', '2025-02-14 23:33:30', '2025-02-14 23:33:30'),
(238, 1, 'brand', '{\"ids\":[\"5\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\BrandTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'Soda Brand', 'danger', '2025-02-14 23:33:30', '2025-02-14 23:33:30'),
(239, 1, 'brand', '{\"ids\":[\"5\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\BrandTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Soda Brand', 'danger', '2025-02-14 23:33:30', '2025-02-14 23:33:30'),
(240, 1, 'brand', '{\"name\":\"Fashion\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\Brand\",\"slug\":\"fashion\",\"slug_id\":\"0\",\"is_slug_editable\":\"1\",\"description\":\"All Fashion Bransds\",\"website\":null,\"order\":\"0\",\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"logo\":\"third-iphone-removebg-preview.png\",\"is_featured\":\"0\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Fashion', 'info', '2025-02-14 23:34:25', '2025-02-14 23:34:25'),
(241, 1, 'brand', '{\"name\":\"Fashion\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\Brand\",\"slug\":\"fashion\",\"slug_id\":\"193\",\"is_slug_editable\":\"1\",\"description\":\"All Fashion Bransds\",\"website\":null,\"order\":\"0\",\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"logo\":\"third-iphone-removebg-preview.png\",\"is_featured\":\"1\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Fashion', 'primary', '2025-02-14 23:37:38', '2025-02-14 23:37:38'),
(242, 1, 'review', '{\"product_id\":\"101\",\"customer_id\":\"11\",\"customer_name\":\"Ranavadiya Hardik\",\"customer_email\":\"hndeveloping@gmail.com\",\"star\":\"5\",\"comment\":\"This Product Is Amazing\",\"images\":[null],\"created_at\":\"2025-02-15 05:08:4\",\"submitter\":\"apply\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1001, 'ID: 1001', 'info', '2025-02-14 23:39:12', '2025-02-14 23:39:12'),
(243, 1, 'ads', '{\"name\":\"Ads 3\",\"title\":\"New Arrivals\",\"subtitle\":null,\"button_label\":\"Shop Now\",\"key\":\"WXAUTIJV1QU0\",\"order\":\"3\",\"ads_type\":\"custom_ad\",\"google_adsense_slot_id\":null,\"url\":\"\\/products\",\"open_in_new_tab\":\"1\",\"image\":\"logo-avs.jpeg\",\"tablet_image\":null,\"mobile_image\":null,\"status\":\"published\",\"location\":\"not_set\",\"expired_at\":\"2029-11-01\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'Ads 3', 'primary', '2025-02-14 23:44:31', '2025-02-14 23:44:31'),
(244, 1, 'ads', '{\"ids\":[\"6\",\"5\",\"4\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ads\\\\Tables\\\\AdsTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Ads 1', 'danger', '2025-02-14 23:45:00', '2025-02-14 23:45:00'),
(245, 1, 'ads', '{\"ids\":[\"6\",\"5\",\"4\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ads\\\\Tables\\\\AdsTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Ads 2', 'danger', '2025-02-14 23:45:00', '2025-02-14 23:45:00'),
(246, 1, 'ads', '{\"ids\":[\"6\",\"5\",\"4\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ads\\\\Tables\\\\AdsTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'Ads 4', 'danger', '2025-02-14 23:45:00', '2025-02-14 23:45:00'),
(247, 1, 'ads', '{\"ids\":[\"6\",\"5\",\"4\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ads\\\\Tables\\\\AdsTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Ads 5', 'danger', '2025-02-14 23:45:00', '2025-02-14 23:45:00'),
(248, 1, 'ads', '{\"ids\":[\"6\",\"5\",\"4\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ads\\\\Tables\\\\AdsTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Ads 6', 'danger', '2025-02-14 23:45:00', '2025-02-14 23:45:00'),
(249, 1, 'page', '{\"name\":\"Home\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/localhost:8000\",\"description\":null,\"content\":\"<shortcode>[simple-slider style=\\\"2\\\" key=\\\"home-slider\\\" customize_font_family_of_description=\\\"0\\\" font_family_of_description=\\\"Oregano\\\" title_font_size=\\\"80\\\" is_autoplay=\\\"yes\\\" autoplay_speed=\\\"5000\\\" is_loop=\\\"yes\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\"slider\\\" title=\\\"Popular on the Shofy store.\\\" subtitle=\\\"Shop by Category\\\" category_ids=\\\"1,2,7,11,18,19\\\" background_color=\\\"#F3F5F7\\\" enable_lazy_loading=\\\"no\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\"2\\\" key_1=\\\"WXAUTIJV1QU0\\\" full_width=\\\"0,1\\\" enable_lazy_loading=\\\"no\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\"Customer Favorite Style Product\\\" subtitle=\\\"All Product Shop\\\" limit=\\\"8\\\" tabs=\\\"all,featured,on-sale,trending,top-rated\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\"slider-full-width\\\" title=\\\"This Week\'s Featured\\\" subtitle=\\\"Shop by Category\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" background_color=\\\"#EFF1F5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"Trending Arrivals\\\" subtitle=\\\"More to Discover\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" ads_ids=\\\"6\\\" style=\\\"slider\\\" ads=\\\"VKJNCBIBQC1O\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\"slider-full-width\\\" title=\\\"This Week\'s Featured\\\" subtitle=\\\"Best Seller This Week\'s\\\" limit=\\\"12\\\" slides_to_show=\\\"4\\\" items_per_row=\\\"4\\\" border_color=\\\"#fd4b6b\\\" background_color=\\\"#EFF1F5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\"2\\\" quantity=\\\"4\\\" title_1=\\\"Free Delivery\\\" description_1=\\\"Orders from all item\\\" icon_1=\\\"ti ti-truck-delivery\\\" title_2=\\\"Return &amp; Refund\\\" description_2=\\\"Money-back guarantee\\\" icon_2=\\\"ti ti-currency-dollar\\\" title_3=\\\"Member Discount\\\" description_3=\\\"Every order over $140.00\\\" icon_3=\\\"ti ti-discount-2\\\" title_4=\\\"Support 24\\/7\\\" description_4=\\\"Contact us 24 hours a day\\\" icon_4=\\\"ti ti-headset\\\" enable_lazy_loading=\\\"yes\\\"][\\/site-features]<\\/shortcode>\",\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"full-width\",\"image\":\"fashion\\/products\\/fifth-iphone-removebg-preview.png\",\"breadcrumb_style\":\"none\",\"breadcrumb_background\":\"fashion\\/products\\/first-iphone-removebg-preview.png\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-02-14 23:45:16', '2025-02-14 23:45:16'),
(250, 1, 'brand', '{\"_method\":\"delete\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'Shofy', 'danger', '2025-02-14 23:52:10', '2025-02-14 23:52:10'),
(251, 1, 'customer', '{\"ids\":[\"10\",\"9\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\CustomerTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Prof. Ara Runte', 'danger', '2025-02-14 23:55:00', '2025-02-14 23:55:00'),
(252, 1, 'customer', '{\"ids\":[\"10\",\"9\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\CustomerTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Marcelina Weber', 'danger', '2025-02-14 23:55:00', '2025-02-14 23:55:00'),
(253, 1, 'customer', '{\"ids\":[\"10\",\"9\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Ecommerce\\\\Tables\\\\CustomerTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Dr. Darryl Hansen PhD', 'danger', '2025-02-14 23:55:00', '2025-02-14 23:55:00'),
(254, 1, 'specificationgroup', '{\"_method\":\"delete\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'Display', 'danger', '2025-02-14 23:55:58', '2025-02-14 23:55:58'),
(255, 1, 'specificationgroup', '{\"_method\":\"delete\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'Battery', 'danger', '2025-02-14 23:56:02', '2025-02-14 23:56:02'),
(256, 1, 'specificationgroup', '{\"name\":\"Cotton\",\"description\":\"Cotton Fabric\",\"submitter\":\"apply\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Cotton', 'info', '2025-02-14 23:56:18', '2025-02-14 23:56:18'),
(257, 1, 'specificationgroup', '{\"name\":\"Cotton\",\"description\":\"Cotton Fabric\",\"submitter\":\"apply\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Cotton', 'info', '2025-02-14 23:56:18', '2025-02-14 23:56:18'),
(258, 1, 'specificationgroup', '{\"_method\":\"delete\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Performance', 'danger', '2025-02-14 23:56:48', '2025-02-14 23:56:48'),
(259, 1, 'specificationgroup', '{\"_method\":\"delete\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Dimensions', 'danger', '2025-02-14 23:56:51', '2025-02-14 23:56:51'),
(260, 1, 'faq', '{\"category_id\":\"3\",\"question\":\"How Can I Return a Product?\",\"answer\":\"<p>If Your Product Was Damaged Then You Can Return Product.<\\/p>\",\"status\":\"published\",\"submitter\":\"apply\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'ID: 10', 'primary', '2025-02-15 00:05:55', '2025-02-15 00:05:55'),
(261, 1, 'menu', '{\"name\":\"footer-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/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'footer-menu', 'info', '2025-02-15 00:30:52', '2025-02-15 00:30:52'),
(262, 1, 'menunode', '{\"data\":{\"reference_type\":\"Botble\\\\Page\\\\Models\\\\Page\",\"reference_id\":\"1\",\"title\":\"Home\",\"menu_id\":\"4\",\"position\":\"1\"}}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 45, 'Home', 'info', '2025-02-15 00:31:18', '2025-02-15 00:31:18'),
(263, 1, 'menunode', '{\"data\":{\"reference_type\":\"Botble\\\\Page\\\\Models\\\\Page\",\"reference_id\":\"6\",\"title\":\"Contact\",\"menu_id\":\"4\",\"position\":\"2\"}}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 46, 'Contact', 'info', '2025-02-15 00:31:34', '2025-02-15 00:31:34'),
(264, 1, 'menunode', '{\"data\":{\"reference_type\":\"Botble\\\\Page\\\\Models\\\\Page\",\"reference_id\":\"7\",\"title\":\"FAQs\",\"menu_id\":\"4\",\"position\":\"3\"}}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 47, 'FAQs', 'info', '2025-02-15 00:32:59', '2025-02-15 00:32:59'),
(265, 1, 'menunode', '{\"data\":{\"reference_type\":\"Botble\\\\Page\\\\Models\\\\Page\",\"reference_id\":\"13\",\"title\":\"Return Policy\",\"menu_id\":\"4\",\"position\":\"4\"}}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 48, 'Return Policy', 'info', '2025-02-15 00:33:00', '2025-02-15 00:33:00'),
(266, 1, 'menunode', '{\"data\":{\"reference_type\":\"Botble\\\\Ecommerce\\\\Models\\\\ProductCategory\",\"reference_id\":\"7\",\"title\":\"Women\'s Clothing\",\"menu_id\":\"4\",\"position\":\"5\"}}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 49, 'Women\'s Clothing', 'info', '2025-02-15 00:33:13', '2025-02-15 00:33:13'),
(267, 1, 'menunode', '{\"data\":{\"reference_type\":\"Botble\\\\Ecommerce\\\\Models\\\\ProductCategory\",\"reference_id\":\"8\",\"title\":\"Dresses\",\"menu_id\":\"4\",\"position\":\"6\"}}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 50, 'Dresses', 'info', '2025-02-15 00:33:16', '2025-02-15 00:33:16'),
(268, 1, 'menu', '{\"name\":\"footer-menu\",\"deleted_nodes\":\"50\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"title\\\":\\\"Home\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":0,\\\"url\\\":\\\"\\\",\\\"id\\\":45,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":1,\\\"url\\\":\\\"\\/contact\\\",\\\"id\\\":46,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"FAQs\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":2,\\\"url\\\":\\\"\\/faqs\\\",\\\"id\\\":47,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":13,\\\"title\\\":\\\"Return Policy\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":3,\\\"url\\\":\\\"\\/return-policy\\\",\\\"id\\\":48,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Ecommerce\\\\\\\\Models\\\\\\\\ProductCategory\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"Women\'s Clothing\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/product-categories\\/womens-clothing\\\",\\\"id\\\":49,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}}]\",\"menu_id\":\"4\",\"title\":\"Women\'s Clothing\",\"url\":\"\\/\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'footer-menu', 'primary', '2025-02-15 00:33:31', '2025-02-15 00:33:31'),
(269, 1, 'menunode', '{\"name\":\"footer-menu\",\"deleted_nodes\":\"50\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"title\\\":\\\"Home\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":0,\\\"url\\\":\\\"\\\",\\\"id\\\":45,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":1,\\\"url\\\":\\\"\\/contact\\\",\\\"id\\\":46,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"FAQs\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":2,\\\"url\\\":\\\"\\/faqs\\\",\\\"id\\\":47,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":13,\\\"title\\\":\\\"Return Policy\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":3,\\\"url\\\":\\\"\\/return-policy\\\",\\\"id\\\":48,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Ecommerce\\\\\\\\Models\\\\\\\\ProductCategory\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"Women\'s Clothing\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/product-categories\\/womens-clothing\\\",\\\"id\\\":49,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}}]\",\"menu_id\":\"4\",\"title\":\"Women\'s Clothing\",\"url\":\"\\/\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 45, 'Home', 'primary', '2025-02-15 00:33:31', '2025-02-15 00:33:31'),
(270, 1, 'menunode', '{\"name\":\"footer-menu\",\"deleted_nodes\":\"50\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"title\\\":\\\"Home\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":0,\\\"url\\\":\\\"\\\",\\\"id\\\":45,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":1,\\\"url\\\":\\\"\\/contact\\\",\\\"id\\\":46,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"FAQs\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":2,\\\"url\\\":\\\"\\/faqs\\\",\\\"id\\\":47,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":13,\\\"title\\\":\\\"Return Policy\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":3,\\\"url\\\":\\\"\\/return-policy\\\",\\\"id\\\":48,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Ecommerce\\\\\\\\Models\\\\\\\\ProductCategory\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"Women\'s Clothing\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/product-categories\\/womens-clothing\\\",\\\"id\\\":49,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}}]\",\"menu_id\":\"4\",\"title\":\"Women\'s Clothing\",\"url\":\"\\/\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 46, 'Contact', 'primary', '2025-02-15 00:33:31', '2025-02-15 00:33:31'),
(271, 1, 'menunode', '{\"name\":\"footer-menu\",\"deleted_nodes\":\"50\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"title\\\":\\\"Home\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":0,\\\"url\\\":\\\"\\\",\\\"id\\\":45,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":1,\\\"url\\\":\\\"\\/contact\\\",\\\"id\\\":46,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"FAQs\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":2,\\\"url\\\":\\\"\\/faqs\\\",\\\"id\\\":47,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":13,\\\"title\\\":\\\"Return Policy\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":3,\\\"url\\\":\\\"\\/return-policy\\\",\\\"id\\\":48,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Ecommerce\\\\\\\\Models\\\\\\\\ProductCategory\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"Women\'s Clothing\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/product-categories\\/womens-clothing\\\",\\\"id\\\":49,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}}]\",\"menu_id\":\"4\",\"title\":\"Women\'s Clothing\",\"url\":\"\\/\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 47, 'FAQs', 'primary', '2025-02-15 00:33:31', '2025-02-15 00:33:31'),
(272, 1, 'menunode', '{\"name\":\"footer-menu\",\"deleted_nodes\":\"50\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"title\\\":\\\"Home\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":0,\\\"url\\\":\\\"\\\",\\\"id\\\":45,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":1,\\\"url\\\":\\\"\\/contact\\\",\\\"id\\\":46,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"FAQs\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":2,\\\"url\\\":\\\"\\/faqs\\\",\\\"id\\\":47,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":13,\\\"title\\\":\\\"Return Policy\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":3,\\\"url\\\":\\\"\\/return-policy\\\",\\\"id\\\":48,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Ecommerce\\\\\\\\Models\\\\\\\\ProductCategory\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"Women\'s Clothing\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/product-categories\\/womens-clothing\\\",\\\"id\\\":49,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}}]\",\"menu_id\":\"4\",\"title\":\"Women\'s Clothing\",\"url\":\"\\/\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 48, 'Return Policy', 'primary', '2025-02-15 00:33:31', '2025-02-15 00:33:31'),
(273, 1, 'menunode', '{\"name\":\"footer-menu\",\"deleted_nodes\":\"50\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"title\\\":\\\"Home\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":0,\\\"url\\\":\\\"\\\",\\\"id\\\":45,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":1,\\\"url\\\":\\\"\\/contact\\\",\\\"id\\\":46,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"FAQs\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":2,\\\"url\\\":\\\"\\/faqs\\\",\\\"id\\\":47,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":13,\\\"title\\\":\\\"Return Policy\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":3,\\\"url\\\":\\\"\\/return-policy\\\",\\\"id\\\":48,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Ecommerce\\\\\\\\Models\\\\\\\\ProductCategory\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"Women\'s Clothing\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/product-categories\\/womens-clothing\\\",\\\"id\\\":49,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}}]\",\"menu_id\":\"4\",\"title\":\"Women\'s Clothing\",\"url\":\"\\/\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 49, 'Women\'s Clothing', 'primary', '2025-02-15 00:33:31', '2025-02-15 00:33:31'),
(274, 1, 'menu', '{\"name\":\"footer-menu\",\"deleted_nodes\":\"50\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"title\\\":\\\"Home\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":0,\\\"url\\\":\\\"\\\",\\\"id\\\":45,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":1,\\\"url\\\":\\\"\\/contact\\\",\\\"id\\\":46,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"FAQs\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":2,\\\"url\\\":\\\"\\/faqs\\\",\\\"id\\\":47,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":13,\\\"title\\\":\\\"Return Policy\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":3,\\\"url\\\":\\\"\\/return-policy\\\",\\\"id\\\":48,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Ecommerce\\\\\\\\Models\\\\\\\\ProductCategory\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"Women\'s Clothing\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/product-categories\\/womens-clothing\\\",\\\"id\\\":49,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}}]\",\"menu_id\":\"4\",\"title\":\"Women\'s Clothing\",\"url\":\"\\/\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'footer-menu', 'primary', '2025-02-15 00:33:33', '2025-02-15 00:33:33'),
(275, 1, 'menunode', '{\"name\":\"footer-menu\",\"deleted_nodes\":\"50\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"title\\\":\\\"Home\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":0,\\\"url\\\":\\\"\\\",\\\"id\\\":45,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":1,\\\"url\\\":\\\"\\/contact\\\",\\\"id\\\":46,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"FAQs\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":2,\\\"url\\\":\\\"\\/faqs\\\",\\\"id\\\":47,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":13,\\\"title\\\":\\\"Return Policy\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":3,\\\"url\\\":\\\"\\/return-policy\\\",\\\"id\\\":48,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Ecommerce\\\\\\\\Models\\\\\\\\ProductCategory\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"Women\'s Clothing\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/product-categories\\/womens-clothing\\\",\\\"id\\\":49,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}}]\",\"menu_id\":\"4\",\"title\":\"Women\'s Clothing\",\"url\":\"\\/\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 45, 'Home', 'primary', '2025-02-15 00:33:33', '2025-02-15 00:33:33'),
(276, 1, 'menunode', '{\"name\":\"footer-menu\",\"deleted_nodes\":\"50\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"title\\\":\\\"Home\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":0,\\\"url\\\":\\\"\\\",\\\"id\\\":45,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":1,\\\"url\\\":\\\"\\/contact\\\",\\\"id\\\":46,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"FAQs\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":2,\\\"url\\\":\\\"\\/faqs\\\",\\\"id\\\":47,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":13,\\\"title\\\":\\\"Return Policy\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":3,\\\"url\\\":\\\"\\/return-policy\\\",\\\"id\\\":48,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Ecommerce\\\\\\\\Models\\\\\\\\ProductCategory\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"Women\'s Clothing\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/product-categories\\/womens-clothing\\\",\\\"id\\\":49,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}}]\",\"menu_id\":\"4\",\"title\":\"Women\'s Clothing\",\"url\":\"\\/\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 46, 'Contact', 'primary', '2025-02-15 00:33:33', '2025-02-15 00:33:33'),
(277, 1, 'menunode', '{\"name\":\"footer-menu\",\"deleted_nodes\":\"50\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"title\\\":\\\"Home\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":0,\\\"url\\\":\\\"\\\",\\\"id\\\":45,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":1,\\\"url\\\":\\\"\\/contact\\\",\\\"id\\\":46,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"FAQs\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":2,\\\"url\\\":\\\"\\/faqs\\\",\\\"id\\\":47,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":13,\\\"title\\\":\\\"Return Policy\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":3,\\\"url\\\":\\\"\\/return-policy\\\",\\\"id\\\":48,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Ecommerce\\\\\\\\Models\\\\\\\\ProductCategory\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"Women\'s Clothing\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/product-categories\\/womens-clothing\\\",\\\"id\\\":49,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}}]\",\"menu_id\":\"4\",\"title\":\"Women\'s Clothing\",\"url\":\"\\/\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 47, 'FAQs', 'primary', '2025-02-15 00:33:33', '2025-02-15 00:33:33'),
(278, 1, 'menunode', '{\"name\":\"footer-menu\",\"deleted_nodes\":\"50\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"title\\\":\\\"Home\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":0,\\\"url\\\":\\\"\\\",\\\"id\\\":45,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":1,\\\"url\\\":\\\"\\/contact\\\",\\\"id\\\":46,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"FAQs\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":2,\\\"url\\\":\\\"\\/faqs\\\",\\\"id\\\":47,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":13,\\\"title\\\":\\\"Return Policy\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":3,\\\"url\\\":\\\"\\/return-policy\\\",\\\"id\\\":48,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Ecommerce\\\\\\\\Models\\\\\\\\ProductCategory\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"Women\'s Clothing\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/product-categories\\/womens-clothing\\\",\\\"id\\\":49,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}}]\",\"menu_id\":\"4\",\"title\":\"Women\'s Clothing\",\"url\":\"\\/\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 48, 'Return Policy', 'primary', '2025-02-15 00:33:34', '2025-02-15 00:33:34'),
(279, 1, 'menunode', '{\"name\":\"footer-menu\",\"deleted_nodes\":\"50\",\"menu_nodes\":\"[{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":1,\\\"title\\\":\\\"Home\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":0,\\\"url\\\":\\\"\\\",\\\"id\\\":45,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":6,\\\"title\\\":\\\"Contact\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":1,\\\"url\\\":\\\"\\/contact\\\",\\\"id\\\":46,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"FAQs\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":2,\\\"url\\\":\\\"\\/faqs\\\",\\\"id\\\":47,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Page\\\\\\\\Models\\\\\\\\Page\\\",\\\"reference_id\\\":13,\\\"title\\\":\\\"Return Policy\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":3,\\\"url\\\":\\\"\\/return-policy\\\",\\\"id\\\":48,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}},{\\\"menuItem\\\":{\\\"reference_type\\\":\\\"Botble\\\\\\\\Ecommerce\\\\\\\\Models\\\\\\\\ProductCategory\\\",\\\"reference_id\\\":7,\\\"title\\\":\\\"Women\'s Clothing\\\",\\\"menu_id\\\":\\\"4\\\",\\\"position\\\":4,\\\"url\\\":\\\"\\/product-categories\\/womens-clothing\\\",\\\"id\\\":49,\\\"icon_image\\\":\\\"\\\",\\\"metadata\\\":[],\\\"children\\\":[]}}]\",\"menu_id\":\"4\",\"title\":\"Women\'s Clothing\",\"url\":\"\\/\",\"icon_image\":null,\"css_class\":null,\"target\":\"_self\",\"submitter\":\"apply\",\"language\":\"en_US\",\"status\":\"published\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 49, 'Women\'s Clothing', 'primary', '2025-02-15 00:33:34', '2025-02-15 00:33:34'),
(280, 1, 'of the system', '[]', 'logged out', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'AVS Admin', 'info', '2025-02-15 00:54:16', '2025-02-15 00:54:16'),
(281, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'AVS Admin', 'info', '2025-02-15 00:58:05', '2025-02-15 00:58:05'),
(282, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'AVS Admin', 'info', '2025-02-16 04:12:33', '2025-02-16 04:12:33'),
(283, 1, 'user', '{\"_method\":\"PUT\",\"first_name\":\"AVS\",\"last_name\":\"Admin\",\"email\":\"hndevelopinng@gmail.com\"}', 'has updated his profile', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'AVS Admin', 'primary', '2025-02-16 04:14:35', '2025-02-16 04:14:35'),
(284, 1, 'backup', '{\"name\":\"First Bacup\",\"description\":\"First\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 0, '', 'info', '2025-02-16 04:32:43', '2025-02-16 04:32:43'),
(285, 1, 'contact', '{\"message\":null,\"submitter\":\"apply\",\"status\":\"read\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Samir Maggio', 'primary', '2025-02-16 04:40:44', '2025-02-16 04:40:44'),
(286, 1, 'contact', '{\"ids\":[\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Contact\\\\Tables\\\\ContactTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Samir Maggio', 'danger', '2025-02-16 04:41:35', '2025-02-16 04:41:35'),
(287, 1, 'contact', '{\"ids\":[\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Contact\\\\Tables\\\\ContactTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Prof. Eino Leffler', 'danger', '2025-02-16 04:41:35', '2025-02-16 04:41:35'),
(288, 1, 'contact', '{\"ids\":[\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Contact\\\\Tables\\\\ContactTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'Kole Friesen', 'danger', '2025-02-16 04:41:35', '2025-02-16 04:41:35'),
(289, 1, 'contact', '{\"ids\":[\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Contact\\\\Tables\\\\ContactTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 4, 'Aryanna Daniel', 'danger', '2025-02-16 04:41:35', '2025-02-16 04:41:35');
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(290, 1, 'contact', '{\"ids\":[\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Contact\\\\Tables\\\\ContactTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 5, 'Prof. Rickey Okuneva V', 'danger', '2025-02-16 04:41:35', '2025-02-16 04:41:35'),
(291, 1, 'contact', '{\"ids\":[\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Contact\\\\Tables\\\\ContactTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 6, 'Dr. Horace Pfannerstill V', 'danger', '2025-02-16 04:41:35', '2025-02-16 04:41:35'),
(292, 1, 'contact', '{\"ids\":[\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Contact\\\\Tables\\\\ContactTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 7, 'Sophia Hills I', 'danger', '2025-02-16 04:41:35', '2025-02-16 04:41:35'),
(293, 1, 'contact', '{\"ids\":[\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Contact\\\\Tables\\\\ContactTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'Mr. Gay Hartmann', 'danger', '2025-02-16 04:41:35', '2025-02-16 04:41:35'),
(294, 1, 'contact', '{\"ids\":[\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Contact\\\\Tables\\\\ContactTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Lynn Harber', 'danger', '2025-02-16 04:41:35', '2025-02-16 04:41:35'),
(295, 1, 'contact', '{\"ids\":[\"10\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\",\"1\"],\"bulk_action\":1,\"bulk_action_table\":\"Botble\\\\Contact\\\\Tables\\\\ContactTable\",\"bulk_action_target\":\"Botble\\\\Table\\\\BulkActions\\\\DeleteBulkAction\"}', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'Mose Ryan', 'danger', '2025-02-16 04:41:35', '2025-02-16 04:41:35'),
(296, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'AVS Admin', 'info', '2025-02-17 07:41:44', '2025-02-17 07:41:44'),
(297, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'AVS Admin', 'info', '2025-02-17 07:41:54', '2025-02-17 07:41:54'),
(298, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 0, 1, 'AVS Admin', 'info', '2025-02-19 03:19:00', '2025-02-19 03:19:00'),
(299, 1, 'product', '{\"name\":\"Demo New Product\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\Product\",\"slug\":\"demo-new-product\",\"slug_id\":\"0\",\"is_slug_editable\":\"1\",\"description\":\"<ol><li><strong>This Is A Best Product.<\\/strong><\\/li><li><strong>With Cotton Material.<\\/strong><\\/li><li><strong>With Amazing Price.<\\/strong><\\/li><\\/ol>\",\"content\":\"<p>Content Area<\\/p>\",\"images\":[null,\"seccond-iphone-removebg-preview.png\",\"first-iphone-removebg-preview.png\",\"fifth-iphone-removebg-preview.png\"],\"video_media\":\"[]\",\"product_type\":\"physical\",\"specification_table_id\":null,\"sale_type\":\"1\",\"sku\":\"SF-2443-MCG8\",\"price\":\"1200\",\"sale_price\":\"1000\",\"start_date\":\"2025-02-19 14:32:38\",\"end_date\":\"2025-02-21 14:32:42\",\"cost_per_item\":\"100\",\"product_id\":null,\"barcode\":null,\"with_storehouse_management\":\"1\",\"quantity\":\"20\",\"allow_checkout_when_out_of_stock\":\"0\",\"stock_status\":\"in_stock\",\"weight\":\"200\",\"length\":\"100\",\"wide\":\"200\",\"height\":\"200\",\"is_added_attributes\":\"1\",\"added_attributes\":{\"1\":\"2\",\"2\":\"6\"},\"has_product_options\":\"1\",\"related_products\":\"101\",\"faq_schema_config\":\"[]\",\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"status\":\"published\",\"store_id\":null,\"is_featured\":\"0\",\"brand_id\":null,\"image\":null,\"product_collections\":[\"2\"],\"product_labels\":[\"2\"],\"taxes\":[\"2\"],\"minimum_order_quantity\":\"0\",\"maximum_order_quantity\":\"0\",\"tag\":\"[{\\\"value\\\":\\\"New\\\"},{\\\"value\\\":\\\"Demo\\\"},{\\\"value\\\":\\\"Kurti\\\"}]\",\"submitter\":\"save\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 127, 'Demo New Product', 'info', '2025-02-19 03:36:18', '2025-02-19 03:36:18'),
(300, 1, 'product-tag', '{\"name\":\"Demo New Product\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\Product\",\"slug\":\"demo-new-product\",\"slug_id\":\"0\",\"is_slug_editable\":\"1\",\"description\":\"<ol><li><strong>This Is A Best Product.<\\/strong><\\/li><li><strong>With Cotton Material.<\\/strong><\\/li><li><strong>With Amazing Price.<\\/strong><\\/li><\\/ol>\",\"content\":\"<p>Content Area<\\/p>\",\"images\":[null,\"seccond-iphone-removebg-preview.png\",\"first-iphone-removebg-preview.png\",\"fifth-iphone-removebg-preview.png\"],\"video_media\":\"[]\",\"product_type\":\"physical\",\"specification_table_id\":null,\"sale_type\":\"1\",\"sku\":\"SF-2443-MCG8\",\"price\":\"1200\",\"sale_price\":\"1000\",\"start_date\":\"2025-02-19 14:32:38\",\"end_date\":\"2025-02-21 14:32:42\",\"cost_per_item\":\"100\",\"product_id\":null,\"barcode\":null,\"with_storehouse_management\":\"1\",\"quantity\":\"20\",\"allow_checkout_when_out_of_stock\":\"0\",\"stock_status\":\"in_stock\",\"weight\":\"200\",\"length\":\"100\",\"wide\":\"200\",\"height\":\"200\",\"is_added_attributes\":\"1\",\"added_attributes\":{\"1\":\"2\",\"2\":\"6\"},\"has_product_options\":\"1\",\"related_products\":\"101\",\"faq_schema_config\":\"[]\",\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"status\":\"published\",\"store_id\":null,\"is_featured\":\"0\",\"brand_id\":null,\"image\":null,\"product_collections\":[\"2\"],\"product_labels\":[\"2\"],\"taxes\":[\"2\"],\"minimum_order_quantity\":\"0\",\"maximum_order_quantity\":\"0\",\"tag\":\"[{\\\"value\\\":\\\"New\\\"},{\\\"value\\\":\\\"Demo\\\"},{\\\"value\\\":\\\"Kurti\\\"}]\",\"submitter\":\"save\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 8, 'New', 'info', '2025-02-19 03:36:18', '2025-02-19 03:36:18'),
(301, 1, 'product-tag', '{\"name\":\"Demo New Product\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\Product\",\"slug\":\"demo-new-product\",\"slug_id\":\"0\",\"is_slug_editable\":\"1\",\"description\":\"<ol><li><strong>This Is A Best Product.<\\/strong><\\/li><li><strong>With Cotton Material.<\\/strong><\\/li><li><strong>With Amazing Price.<\\/strong><\\/li><\\/ol>\",\"content\":\"<p>Content Area<\\/p>\",\"images\":[null,\"seccond-iphone-removebg-preview.png\",\"first-iphone-removebg-preview.png\",\"fifth-iphone-removebg-preview.png\"],\"video_media\":\"[]\",\"product_type\":\"physical\",\"specification_table_id\":null,\"sale_type\":\"1\",\"sku\":\"SF-2443-MCG8\",\"price\":\"1200\",\"sale_price\":\"1000\",\"start_date\":\"2025-02-19 14:32:38\",\"end_date\":\"2025-02-21 14:32:42\",\"cost_per_item\":\"100\",\"product_id\":null,\"barcode\":null,\"with_storehouse_management\":\"1\",\"quantity\":\"20\",\"allow_checkout_when_out_of_stock\":\"0\",\"stock_status\":\"in_stock\",\"weight\":\"200\",\"length\":\"100\",\"wide\":\"200\",\"height\":\"200\",\"is_added_attributes\":\"1\",\"added_attributes\":{\"1\":\"2\",\"2\":\"6\"},\"has_product_options\":\"1\",\"related_products\":\"101\",\"faq_schema_config\":\"[]\",\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"status\":\"published\",\"store_id\":null,\"is_featured\":\"0\",\"brand_id\":null,\"image\":null,\"product_collections\":[\"2\"],\"product_labels\":[\"2\"],\"taxes\":[\"2\"],\"minimum_order_quantity\":\"0\",\"maximum_order_quantity\":\"0\",\"tag\":\"[{\\\"value\\\":\\\"New\\\"},{\\\"value\\\":\\\"Demo\\\"},{\\\"value\\\":\\\"Kurti\\\"}]\",\"submitter\":\"save\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 9, 'Demo', 'info', '2025-02-19 03:36:19', '2025-02-19 03:36:19'),
(302, 1, 'product', '[]', 'deleted', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 128, 'Demo New Product', 'danger', '2025-02-19 03:41:44', '2025-02-19 03:41:44'),
(303, 1, 'product', '{\"name\":\"Demo New Product\",\"model\":\"Botble\\\\Ecommerce\\\\Models\\\\Product\",\"slug\":\"demo-new-product\",\"slug_id\":\"194\",\"is_slug_editable\":\"1\",\"description\":\"<ol><li><strong>This Is A Best Product.<\\/strong><\\/li><li><strong>With Cotton Material.<\\/strong><\\/li><li><strong>With Amazing Price.<\\/strong><\\/li><\\/ol>\",\"content\":\"<p>Content Area<\\/p>\",\"images\":[null,\"seccond-iphone-removebg-preview.png\",\"first-iphone-removebg-preview.png\",\"fifth-iphone-removebg-preview.png\"],\"video_media\":\"[]\",\"product_type\":\"physical\",\"specification_table_id\":null,\"variation_default_id\":\"84\",\"botble-ecommerce-tables-product-variation-table-127_length\":\"10\",\"attribute_sets\":[\"1\",\"2\"],\"has_product_options\":\"1\",\"related_products\":\"101\",\"faq_schema_config\":[[{\"key\":\"question\",\"value\":null},{\"key\":\"answer\",\"value\":null}]],\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"status\":\"published\",\"store_id\":null,\"is_featured\":\"0\",\"brand_id\":null,\"sku\":\"SF-2443-MCG8\",\"image\":\"seccond-iphone-removebg-preview.png\",\"product_collections\":[\"2\"],\"product_labels\":[\"2\"],\"taxes\":[\"2\"],\"minimum_order_quantity\":\"0\",\"maximum_order_quantity\":\"0\",\"tag\":\"[{\\\"value\\\":\\\"Kurti\\\"},{\\\"value\\\":\\\"New\\\"},{\\\"value\\\":\\\"Demo\\\"}]\",\"submitter\":\"save\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 127, 'Demo New Product', 'primary', '2025-02-19 03:42:53', '2025-02-19 03:42:53'),
(304, 1, 'flash-sale', '{\"name\":\"Demo Sale\",\"products\":\"101,127\",\"products_extra\":[{\"price\":\"700\",\"quantity\":\"5\"},{\"price\":\"1200\",\"quantity\":\"3\"}],\"submitter\":\"apply\",\"status\":\"published\",\"end_date\":\"2025-03-20\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Demo Sale', 'info', '2025-02-19 03:46:28', '2025-02-19 03:46:28'),
(305, 1, 'specificationattribute', '{\"group_id\":\"6\",\"name\":\"New Attribute\",\"type\":\"textarea\",\"default_value\":\"Demo\",\"submitter\":\"apply\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'New Attribute', 'info', '2025-02-19 03:56:29', '2025-02-19 03:56:29'),
(306, 1, 'specificationattribute', '{\"group_id\":\"6\",\"name\":\"New Attribute\",\"type\":\"textarea\",\"default_value\":\"Demo\",\"submitter\":\"apply\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 10, 'New Attribute', 'info', '2025-02-19 03:56:29', '2025-02-19 03:56:29'),
(307, 1, 'plugin-order', '{\"description\":\"This Order Is Done\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 3, 'ID: 3', 'primary', '2025-02-19 04:02:56', '2025-02-19 04:02:56'),
(308, 1, 'page', '{\"name\":\"Categories\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"categories\",\"slug_id\":\"120\",\"is_slug_editable\":\"1\",\"description\":\"Categories Of Our Products\",\"content\":\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\"grid\\\" category_ids=\\\"2,7\\\" title=\\\"Popular on the Shofy store.\\\" subtitle=\\\"Shop by Category\\\" background_color=\\\"#F3F5F7\\\" items_per_view=\\\"5\\\" show_products_count=\\\"yes\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-categories]<\\/shortcode>\",\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"save\",\"status\":\"published\",\"template\":\"full-width\",\"image\":null,\"breadcrumb_style\":\"align-start\",\"breadcrumb_background\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Categories', 'primary', '2025-02-19 04:30:51', '2025-02-19 04:30:51'),
(309, 1, 'page', '{\"name\":\"Home\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/localhost:8000\",\"description\":null,\"content\":\"<shortcode>[simple-slider style=\\\"2\\\" key=\\\"home-slider\\\" customize_font_family_of_description=\\\"0\\\" font_family_of_description=\\\"Oregano\\\" title_font_size=\\\"80\\\" is_autoplay=\\\"yes\\\" autoplay_speed=\\\"5000\\\" is_loop=\\\"yes\\\"][\\/simple-slider]<\\/shortcode><p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\"slider\\\" category_ids=\\\"2,7\\\" title=\\\"Popular On The Our Store.\\\" subtitle=\\\"Shop by Category\\\" background_color=\\\"#F3F5F7\\\" items_per_view=\\\"5\\\" show_products_count=\\\"yes\\\" enable_lazy_loading=\\\"no\\\"][\\/ecommerce-categories]<\\/shortcode><shortcode>[ads style=\\\"2\\\" key_1=\\\"WXAUTIJV1QU0\\\" full_width=\\\"0,1\\\" enable_lazy_loading=\\\"no\\\"][\\/ads]<\\/shortcode><shortcode>[ecommerce-product-groups title=\\\"Customer Favorite Style Product\\\" subtitle=\\\"All Product Shop\\\" limit=\\\"8\\\" tabs=\\\"all,featured,on-sale,trending,top-rated\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-product-groups]<\\/shortcode><shortcode>[ecommerce-products style=\\\"slider-full-width\\\" title=\\\"This Week\'s Featured\\\" subtitle=\\\"Shop by Category\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" background_color=\\\"#EFF1F5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products title=\\\"Trending Arrivals\\\" subtitle=\\\"More to Discover\\\" collection_ids=\\\"1\\\" limit=\\\"5\\\" with_sidebar=\\\"on\\\" ads_ids=\\\"6\\\" style=\\\"slider\\\" ads=\\\"VKJNCBIBQC1O\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><shortcode>[ecommerce-products style=\\\"slider-full-width\\\" title=\\\"This Week\'s Featured\\\" subtitle=\\\"Best Seller This Week\'s\\\" limit=\\\"12\\\" slides_to_show=\\\"4\\\" items_per_row=\\\"4\\\" border_color=\\\"#fd4b6b\\\" background_color=\\\"#EFF1F5\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-products]<\\/shortcode><p>&nbsp;<\\/p><p>&nbsp;<\\/p><shortcode>[site-features style=\\\"2\\\" quantity=\\\"4\\\" title_1=\\\"Free Delivery\\\" description_1=\\\"Orders from all item\\\" icon_1=\\\"ti ti-truck-delivery\\\" title_2=\\\"Return &amp; Refund\\\" description_2=\\\"Money-back guarantee\\\" icon_2=\\\"ti ti-currency-dollar\\\" title_3=\\\"Member Discount\\\" description_3=\\\"Every order over $140.00\\\" icon_3=\\\"ti ti-discount-2\\\" title_4=\\\"Support 24\\/7\\\" description_4=\\\"Contact us 24 hours a day\\\" icon_4=\\\"ti ti-headset\\\" enable_lazy_loading=\\\"yes\\\"][\\/site-features]<\\/shortcode>\",\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"full-width\",\"image\":\"fashion\\/products\\/fifth-iphone-removebg-preview.png\",\"breadcrumb_style\":\"none\",\"breadcrumb_background\":\"fashion\\/products\\/first-iphone-removebg-preview.png\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 1, 'Home', 'primary', '2025-02-19 04:34:52', '2025-02-19 04:34:52'),
(310, 1, 'page', '{\"name\":\"Categories\",\"model\":\"Botble\\\\Page\\\\Models\\\\Page\",\"slug\":\"categories\",\"slug_id\":\"120\",\"is_slug_editable\":\"1\",\"description\":\"Categories Of Our Products\",\"content\":\"<p>&nbsp;<\\/p><shortcode>[ecommerce-categories style=\\\"grid\\\" category_ids=\\\"2,7\\\" title=\\\"Popular On The Our Store.\\\" subtitle=\\\"Shop by Category\\\" background_color=\\\"#F3F5F7\\\" items_per_view=\\\"5\\\" show_products_count=\\\"yes\\\" enable_lazy_loading=\\\"yes\\\"][\\/ecommerce-categories]<\\/shortcode>\",\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"full-width\",\"image\":null,\"breadcrumb_style\":\"align-start\",\"breadcrumb_background\":null}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', '127.0.0.1', 1, 2, 'Categories', 'primary', '2025-02-19 04:35:44', '2025-02-19 04:35:44');

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

--
-- Table structure for table `categories`
--

CREATE TABLE `categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `description` varchar(400) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `author_id` bigint(20) UNSIGNED DEFAULT NULL,
  `author_type` varchar(191) NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `icon` varchar(60) 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 NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `categories`
--

INSERT INTO `categories` (`id`, `name`, `parent_id`, `description`, `status`, `author_id`, `author_type`, `icon`, `order`, `is_featured`, `is_default`, `created_at`, `updated_at`) VALUES
(1, 'Crisp Bread &amp; Cake', 0, 'Beatae enim rerum excepturi praesentium qui. Nisi voluptas dolores similique perferendis illo ipsum. Assumenda ut minima corrupti aut iure.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 0, 0, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(2, 'Fashion', 0, 'Aut quod ut distinctio rem aut velit. Nulla libero voluptatem rerum voluptas sunt alias. Rerum repellendus impedit sit aut expedita quos.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(3, 'Electronic', 0, 'Nemo at et nostrum. Eligendi dolorum rerum fuga harum pariatur quasi quia. Recusandae nisi amet tempora error unde. Expedita odio tempora dolore omnis. Et quod est aperiam consequatur cupiditate ut.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(4, 'Commercial', 0, 'Qui aut aut totam dolores. Aspernatur minus ut molestias beatae. Dolor et voluptatem enim est voluptas nobis ex.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(5, 'Organic Fruits', 0, 'Voluptatem similique quasi et expedita. Voluptas itaque non dolorum mollitia. Odit aut molestiae nostrum nobis omnis ullam qui error.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(6, 'Ecological', 0, 'Ipsam et molestiae occaecati. Et totam corporis odio quisquam voluptas. Fuga dicta dolorem ut dolore iure hic non.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2024-10-31 20:46:52', '2024-10-31 20:46:52');

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

--
-- Table structure for table `categories_translations`
--

CREATE TABLE `categories_translations` (
  `lang_code` varchar(20) NOT NULL,
  `categories_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cities`
--

CREATE TABLE `cities` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `slug` varchar(120) DEFAULT NULL,
  `state_id` bigint(20) UNSIGNED DEFAULT NULL,
  `country_id` bigint(20) UNSIGNED DEFAULT NULL,
  `record_id` varchar(40) DEFAULT NULL,
  `order` tinyint(4) NOT NULL DEFAULT 0,
  `image` varchar(191) DEFAULT NULL,
  `is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cities`
--

INSERT INTO `cities` (`id`, `name`, `slug`, `state_id`, `country_id`, `record_id`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Bamboo Flat', 'bamboo-flat', 1, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2, 'Nicobar', 'nicobar', 1, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3, 'Port Blair', 'port-blair', 1, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4, 'South Andaman', 'south-andaman', 1, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(5, 'Addanki', 'addanki', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(6, 'Adoni', 'adoni', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(7, 'Akasahebpet', 'akasahebpet', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(8, 'Akividu', 'akividu', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(9, 'Akkarampalle', 'akkarampalle', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(10, 'Amalapuram', 'amalapuram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(11, 'Amudalavalasa', 'amudalavalasa', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(12, 'Anakapalle', 'anakapalle', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(13, 'Anantapur', 'anantapur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(14, 'Atmakur', 'atmakur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(15, 'Attili', 'attili', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(16, 'Avanigadda', 'avanigadda', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(17, 'Badvel', 'badvel', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(18, 'Banganapalle', 'banganapalle', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(19, 'Bapatla', 'bapatla', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(20, 'Betamcherla', 'betamcherla', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(21, 'Bhattiprolu', 'bhattiprolu', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(22, 'Bhimavaram', 'bhimavaram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(23, 'Bhimunipatnam', 'bhimunipatnam', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(24, 'Bobbili', 'bobbili', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(25, 'Challapalle', 'challapalle', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(26, 'Chemmumiahpet', 'chemmumiahpet', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(27, 'Chilakalurupet', 'chilakalurupet', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(28, 'Chinnachowk', 'chinnachowk', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(29, 'Chipurupalle', 'chipurupalle', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(30, 'Chirala', 'chirala', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(31, 'Chittoor', 'chittoor', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(32, 'Chodavaram', 'chodavaram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(33, 'Cuddapah', 'cuddapah', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(34, 'Cumbum', 'cumbum', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(35, 'Darsi', 'darsi', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(36, 'Dharmavaram', 'dharmavaram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(37, 'Dhone', 'dhone', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(38, 'Diguvametta', 'diguvametta', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(39, 'East Godavari', 'east-godavari', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(40, 'Elamanchili', 'elamanchili', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(41, 'Ellore', 'ellore', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(42, 'Emmiganur', 'emmiganur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(43, 'Erraguntla', 'erraguntla', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(44, 'Etikoppaka', 'etikoppaka', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(45, 'Gajuwaka', 'gajuwaka', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(46, 'Ganguvada', 'ganguvada', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(47, 'Gannavaram', 'gannavaram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(48, 'Giddalur', 'giddalur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(49, 'Gokavaram', 'gokavaram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(50, 'Gorantla', 'gorantla', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(51, 'GovindapuramChilakaluripetGuntur', 'govindapuramchilakaluripetguntur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(52, 'Gudivada', 'gudivada', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(53, 'Gudlavalleru', 'gudlavalleru', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(54, 'Gudur', 'gudur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(55, 'Guntakal Junction', 'guntakal-junction', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(56, 'Guntur', 'guntur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(57, 'Hindupur', 'hindupur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(58, 'Ichchapuram', 'ichchapuram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(59, 'Jaggayyapeta', 'jaggayyapeta', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(60, 'Jammalamadugu', 'jammalamadugu', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(61, 'Kadiri', 'kadiri', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(62, 'Kaikalur', 'kaikalur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(63, 'Kakinada', 'kakinada', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(64, 'Kalyandurg', 'kalyandurg', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(65, 'Kamalapuram', 'kamalapuram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(66, 'Kandukur', 'kandukur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(67, 'Kanigiri', 'kanigiri', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(68, 'Kankipadu', 'kankipadu', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(69, 'Kanuru', 'kanuru', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(70, 'Kavali', 'kavali', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(71, 'Kolanukonda', 'kolanukonda', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(72, 'Kondapalle', 'kondapalle', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(73, 'Korukollu', 'korukollu', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(74, 'Kosigi', 'kosigi', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(75, 'Kovvur', 'kovvur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(76, 'Krishna', 'krishna', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(77, 'Kuppam', 'kuppam', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(78, 'Kurnool', 'kurnool', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(79, 'Macherla', 'macherla', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(80, 'Machilipatnam', 'machilipatnam', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(81, 'Madanapalle', 'madanapalle', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(82, 'Madugula', 'madugula', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(83, 'Mandapeta', 'mandapeta', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(84, 'Mandasa', 'mandasa', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(85, 'Mangalagiri', 'mangalagiri', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(86, 'Markapur', 'markapur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(87, 'Nagari', 'nagari', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(88, 'Nagireddipalli', 'nagireddipalli', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(89, 'Nandigama', 'nandigama', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(90, 'Nandikotkur', 'nandikotkur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(91, 'Nandyal', 'nandyal', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(92, 'Narasannapeta', 'narasannapeta', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(93, 'Narasapur', 'narasapur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(94, 'Narasaraopet', 'narasaraopet', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(95, 'Narasingapuram', 'narasingapuram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(96, 'Narayanavanam', 'narayanavanam', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(97, 'Narsipatnam', 'narsipatnam', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(98, 'Nayudupet', 'nayudupet', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(99, 'Nellore', 'nellore', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(100, 'Nidadavole', 'nidadavole', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(101, 'Nuzvid', 'nuzvid', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(102, 'Ongole', 'ongole', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(103, 'Pakala', 'pakala', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(104, 'Palakollu', 'palakollu', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(105, 'Palasa', 'palasa', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(106, 'Palkonda', 'palkonda', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(107, 'Pallevada', 'pallevada', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(108, 'Palmaner', 'palmaner', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(109, 'Parlakimidi', 'parlakimidi', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(110, 'Parvatipuram', 'parvatipuram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(111, 'Pavuluru', 'pavuluru', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(112, 'Pedana', 'pedana', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(113, 'pedda nakkalapalem', 'pedda-nakkalapalem', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(114, 'Peddapuram', 'peddapuram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(115, 'Penugonda', 'penugonda', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(116, 'Penukonda', 'penukonda', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(117, 'Phirangipuram', 'phirangipuram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(118, 'Pippara', 'pippara', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(119, 'Pithapuram', 'pithapuram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(120, 'Polavaram', 'polavaram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(121, 'Ponnur', 'ponnur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(122, 'Ponnuru', 'ponnuru', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(123, 'Prakasam', 'prakasam', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(124, 'Proddatur', 'proddatur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(125, 'Pulivendla', 'pulivendla', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(126, 'Punganuru', 'punganuru', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(127, 'Puttaparthi', 'puttaparthi', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(128, 'Puttur', 'puttur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(129, 'Rajahmundry', 'rajahmundry', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(130, 'Ramachandrapuram', 'ramachandrapuram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(131, 'Ramanayyapeta', 'ramanayyapeta', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(132, 'Ramapuram', 'ramapuram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(133, 'Rampachodavaram', 'rampachodavaram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(134, 'Rayachoti', 'rayachoti', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(135, 'Rayadrug', 'rayadrug', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(136, 'Razam', 'razam', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(137, 'Razampeta', 'razampeta', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(138, 'Razole', 'razole', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(139, 'Renigunta', 'renigunta', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(140, 'Repalle', 'repalle', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(141, 'Salur', 'salur', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(142, 'Samalkot', 'samalkot', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(143, 'Sattenapalle', 'sattenapalle', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(144, 'Singarayakonda', 'singarayakonda', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(145, 'Sompeta', 'sompeta', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(146, 'Srikakulam', 'srikakulam', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(147, 'Srisailain', 'srisailain', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(148, 'Suluru', 'suluru', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(149, 'Tadepalle', 'tadepalle', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(150, 'Tadepallegudem', 'tadepallegudem', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(151, 'Tadpatri', 'tadpatri', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(152, 'Tanuku', 'tanuku', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(153, 'Tekkali', 'tekkali', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(154, 'Tirumala', 'tirumala', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(155, 'Tirupati', 'tirupati', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(156, 'Tuni', 'tuni', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(157, 'Uravakonda', 'uravakonda', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(158, 'vadlamuru', 'vadlamuru', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(159, 'Vadlapudi', 'vadlapudi', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(160, 'Venkatagiri', 'venkatagiri', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(161, 'Vepagunta', 'vepagunta', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(162, 'Vetapalem', 'vetapalem', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(163, 'Vijayawada', 'vijayawada', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(164, 'Vinukonda', 'vinukonda', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(165, 'Visakhapatnam', 'visakhapatnam', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(166, 'Vizianagaram', 'vizianagaram', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(167, 'Vizianagaram District', 'vizianagaram-district', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(168, 'Vuyyuru', 'vuyyuru', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(169, 'West Godavari', 'west-godavari', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(170, 'Yanam', 'yanam', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(171, 'Yanamalakuduru', 'yanamalakuduru', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(172, 'Yarada', 'yarada', 2, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(173, 'Along', 'along', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(174, 'Anjaw', 'anjaw', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(175, 'Basar', 'basar', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(176, 'Bomdila', 'bomdila', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(177, 'Changlang', 'changlang', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(178, 'Dibang Valley', 'dibang-valley', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(179, 'East Kameng', 'east-kameng', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(180, 'East Siang', 'east-siang', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(181, 'Hayuliang', 'hayuliang', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(182, 'Itanagar', 'itanagar', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(183, 'Khonsa', 'khonsa', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(184, 'Kurung Kumey', 'kurung-kumey', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(185, 'Lohit District', 'lohit-district', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(186, 'Lower Dibang Valley', 'lower-dibang-valley', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(187, 'Lower Subansiri', 'lower-subansiri', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(188, 'Margherita', 'margherita', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(189, 'Naharlagun', 'naharlagun', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(190, 'Pasighat', 'pasighat', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(191, 'Tawang', 'tawang', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(192, 'Tezu', 'tezu', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(193, 'Tirap', 'tirap', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(194, 'Upper Siang', 'upper-siang', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(195, 'Upper Subansiri', 'upper-subansiri', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(196, 'West Kameng', 'west-kameng', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(197, 'West Siang', 'west-siang', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(198, 'Ziro', 'ziro', 3, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(199, 'Abhayapuri', 'abhayapuri', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(200, 'Amguri', 'amguri', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(201, 'Badarpur', 'badarpur', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(202, 'Baksa', 'baksa', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(203, 'Barpathar', 'barpathar', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(204, 'Barpeta', 'barpeta', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(205, 'Barpeta Road', 'barpeta-road', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(206, 'Basugaon', 'basugaon', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(207, 'Bihpuriagaon', 'bihpuriagaon', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(208, 'Bijni', 'bijni', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(209, 'Bilasipara', 'bilasipara', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(210, 'Bokajan', 'bokajan', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(211, 'Bokakhat', 'bokakhat', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(212, 'Bongaigaon', 'bongaigaon', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(213, 'Cachar', 'cachar', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(214, 'Chabua', 'chabua', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(215, 'Chapar', 'chapar', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(216, 'Chirang', 'chirang', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(217, 'Darrang', 'darrang', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(218, 'Dergaon', 'dergaon', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(219, 'Dhekiajuli', 'dhekiajuli', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(220, 'Dhemaji', 'dhemaji', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(221, 'Dhing', 'dhing', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(222, 'Dhubri', 'dhubri', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(223, 'Dibrugarh', 'dibrugarh', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(224, 'Digboi', 'digboi', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(225, 'Dima Hasao District', 'dima-hasao-district', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(226, 'Diphu', 'diphu', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(227, 'Dispur', 'dispur', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(228, 'Duliagaon', 'duliagaon', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(229, 'Dum Duma', 'dum-duma', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(230, 'Gauripur', 'gauripur', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(231, 'Goalpara', 'goalpara', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(232, 'Gohpur', 'gohpur', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(233, 'Golaghat', 'golaghat', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(234, 'Golakganj', 'golakganj', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(235, 'Goshaingaon', 'goshaingaon', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(236, 'Guwahati', 'guwahati', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(237, 'Haflong', 'haflong', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(238, 'Hailakandi', 'hailakandi', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(239, 'Hajo', 'hajo', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(240, 'Hojai', 'hojai', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(241, 'Howli', 'howli', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(242, 'Jogighopa', 'jogighopa', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(243, 'Jorhat', 'jorhat', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(244, 'Kamrup', 'kamrup', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(245, 'Kamrup Metropolitan', 'kamrup-metropolitan', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(246, 'Karbi Anglong', 'karbi-anglong', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(247, 'Karimganj', 'karimganj', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(248, 'Kharupatia', 'kharupatia', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(249, 'Kokrajhar', 'kokrajhar', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(250, 'Lakhimpur', 'lakhimpur', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(251, 'Lakhipur', 'lakhipur', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(252, 'Lala', 'lala', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(253, 'Lumding Railway Colony', 'lumding-railway-colony', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(254, 'Mahur', 'mahur', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(255, 'Maibong', 'maibong', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(256, 'Makum', 'makum', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(257, 'Mangaldai', 'mangaldai', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(258, 'Mariani', 'mariani', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(259, 'Moranha', 'moranha', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(260, 'Morigaon', 'morigaon', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(261, 'Nagaon', 'nagaon', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(262, 'Nahorkatiya', 'nahorkatiya', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(263, 'Nalbari', 'nalbari', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(264, 'Namrup', 'namrup', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(265, 'Nazira', 'nazira', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(266, 'North Guwahati', 'north-guwahati', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(267, 'North Lakhimpur', 'north-lakhimpur', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(268, 'Numaligarh', 'numaligarh', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(269, 'Palasbari', 'palasbari', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(270, 'Raha', 'raha', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(271, 'Rangapara', 'rangapara', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(272, 'Rangia', 'rangia', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(273, 'Sapatgram', 'sapatgram', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(274, 'Sarupathar', 'sarupathar', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(275, 'Sibsagar', 'sibsagar', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(276, 'Silapathar', 'silapathar', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(277, 'Silchar', 'silchar', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(278, 'Soalkuchi', 'soalkuchi', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(279, 'Sonari', 'sonari', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(280, 'Sonitpur', 'sonitpur', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(281, 'Sorbhog', 'sorbhog', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(282, 'Tezpur', 'tezpur', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(283, 'Tinsukia', 'tinsukia', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(284, 'Titabar', 'titabar', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(285, 'Udalguri', 'udalguri', 4, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(286, 'Amarpur', 'amarpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(287, 'Araria', 'araria', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(288, 'Arrah', 'arrah', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(289, 'Arwal', 'arwal', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(290, 'Asarganj', 'asarganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(291, 'Aurangabad', 'aurangabad', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(292, 'Bagaha', 'bagaha', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(293, 'Bahadurganj', 'bahadurganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(294, 'Bairagnia', 'bairagnia', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(295, 'Baisi', 'baisi', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(296, 'Bakhtiyarpur', 'bakhtiyarpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(297, 'Bangaon', 'bangaon', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(298, 'Banka', 'banka', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(299, 'Banmankhi', 'banmankhi', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(300, 'Bar Bigha', 'bar-bigha', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(301, 'Barauli', 'barauli', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(302, 'Barh', 'barh', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(303, 'Barhiya', 'barhiya', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(304, 'Bariarpur', 'bariarpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(305, 'Baruni', 'baruni', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(306, 'Begusarai', 'begusarai', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(307, 'Belsand', 'belsand', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(308, 'Bettiah', 'bettiah', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(309, 'Bhabhua', 'bhabhua', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(310, 'Bhagalpur', 'bhagalpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(311, 'Bhagirathpur', 'bhagirathpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(312, 'Bhawanipur', 'bhawanipur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(313, 'Bhojpur', 'bhojpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(314, 'Bihar Sharif', 'bihar-sharif', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(315, 'Bihariganj', 'bihariganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(316, 'Bikramganj', 'bikramganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(317, 'Birpur', 'birpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(318, 'Bodh Gaya', 'bodh-gaya', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(319, 'Buxar', 'buxar', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(320, 'Chakia', 'chakia', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(321, 'Chapra', 'chapra', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(322, 'Chhatapur', 'chhatapur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(323, 'Colgong', 'colgong', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(324, 'Dalsingh Sarai', 'dalsingh-sarai', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(325, 'Darbhanga', 'darbhanga', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(326, 'Daudnagar', 'daudnagar', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(327, 'Dehri', 'dehri', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(328, 'Dhaka', 'dhaka', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(329, 'Dighwara', 'dighwara', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(330, 'Dinapore', 'dinapore', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(331, 'Dumra', 'dumra', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(332, 'Dumraon', 'dumraon', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(333, 'Fatwa', 'fatwa', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(334, 'Forbesganj', 'forbesganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(335, 'Gaya', 'gaya', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(336, 'Ghoga', 'ghoga', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(337, 'Gopalganj', 'gopalganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(338, 'Hajipur', 'hajipur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(339, 'Hilsa', 'hilsa', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(340, 'Hisua', 'hisua', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(341, 'Islampur', 'islampur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(342, 'Jagdispur', 'jagdispur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(343, 'Jahanabad', 'jahanabad', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(344, 'Jamalpur', 'jamalpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(345, 'Jamui', 'jamui', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(346, 'Jaynagar', 'jaynagar', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(347, 'Jehanabad', 'jehanabad', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(348, 'Jha-Jha', 'jha-jha', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(349, 'Jhanjharpur', 'jhanjharpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(350, 'Jogbani', 'jogbani', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(351, 'Kaimur District', 'kaimur-district', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(352, 'Kasba', 'kasba', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(353, 'Katihar', 'katihar', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(354, 'Khagaria', 'khagaria', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(355, 'Khagaul', 'khagaul', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(356, 'Kharagpur', 'kharagpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(357, 'Khusropur', 'khusropur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(358, 'Kishanganj', 'kishanganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(359, 'Koath', 'koath', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(360, 'Koelwar', 'koelwar', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(361, 'Lakhisarai', 'lakhisarai', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(362, 'Lalganj', 'lalganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(363, 'Luckeesarai', 'luckeesarai', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(364, 'Madhepura', 'madhepura', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(365, 'Madhubani', 'madhubani', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(366, 'Maharajgani', 'maharajgani', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(367, 'Mairwa', 'mairwa', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(368, 'Maner', 'maner', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(369, 'Manihari', 'manihari', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(370, 'Marhaura', 'marhaura', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(371, 'Masaurhi Buzurg', 'masaurhi-buzurg', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(372, 'Mohiuddi nagar', 'mohiuddi-nagar', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(373, 'Mokameh', 'mokameh', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(374, 'Monghyr', 'monghyr', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(375, 'Mothihari', 'mothihari', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(376, 'Munger', 'munger', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(377, 'Murliganj', 'murliganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(378, 'Muzaffarpur', 'muzaffarpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(379, 'Nabinagar', 'nabinagar', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(380, 'Nalanda', 'nalanda', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(381, 'Nasriganj', 'nasriganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(382, 'Naugachhia', 'naugachhia', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(383, 'Nawada', 'nawada', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(384, 'Nirmali', 'nirmali', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(385, 'Pashchim Champaran', 'pashchim-champaran', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(386, 'Patna', 'patna', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(387, 'Piro', 'piro', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(388, 'Pupri', 'pupri', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(389, 'Purba Champaran', 'purba-champaran', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(390, 'Purnia', 'purnia', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(391, 'Rafiganj', 'rafiganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(392, 'Raghunathpur', 'raghunathpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(393, 'Rajgir', 'rajgir', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(394, 'Ramnagar', 'ramnagar', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(395, 'Raxaul', 'raxaul', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(396, 'Revelganj', 'revelganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(397, 'Rohtas', 'rohtas', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(398, 'Rusera', 'rusera', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(399, 'Sagauli', 'sagauli', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(400, 'Saharsa', 'saharsa', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(401, 'Samastipur', 'samastipur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(402, 'Saran', 'saran', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(403, 'Shahbazpur', 'shahbazpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(404, 'Shahpur', 'shahpur', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(405, 'Sheikhpura', 'sheikhpura', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(406, 'Sheohar', 'sheohar', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(407, 'Sherghati', 'sherghati', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(408, 'Silao', 'silao', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(409, 'Sitamarhi', 'sitamarhi', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(410, 'Siwan', 'siwan', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(411, 'Supaul', 'supaul', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(412, 'Teghra', 'teghra', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(413, 'Tekari', 'tekari', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(414, 'Thakurganj', 'thakurganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(415, 'Vaishali', 'vaishali', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(416, 'Waris Aliganj', 'waris-aliganj', 5, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(417, 'Chandigarh', 'chandigarh', 6, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(418, 'Akaltara', 'akaltara', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(419, 'Ambagarh Chauki', 'ambagarh-chauki', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(420, 'Ambikapur', 'ambikapur', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(421, 'Arang', 'arang', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(422, 'Baikunthpur', 'baikunthpur', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(423, 'Balod', 'balod', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(424, 'Baloda', 'baloda', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(425, 'Baloda Bazar', 'baloda-bazar', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(426, 'Basna', 'basna', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(427, 'Bastar', 'bastar', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(428, 'Bemetara', 'bemetara', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(429, 'Bhanpuri', 'bhanpuri', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(430, 'Bhatapara', 'bhatapara', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(431, 'Bhatgaon', 'bhatgaon', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(432, 'Bhilai', 'bhilai', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(433, 'Bijapur', 'bijapur', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(434, 'Bilaspur', 'bilaspur', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(435, 'Champa', 'champa', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(436, 'Chhuikhadan', 'chhuikhadan', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(437, 'Dantewada', 'dantewada', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(438, 'Deori', 'deori', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(439, 'Dhamtari', 'dhamtari', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(440, 'Dongargaon', 'dongargaon', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00');
INSERT INTO `cities` (`id`, `name`, `slug`, `state_id`, `country_id`, `record_id`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`) VALUES
(441, 'Dongargarh', 'dongargarh', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(442, 'Durg', 'durg', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(443, 'Gandai', 'gandai', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(444, 'Gariaband', 'gariaband', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(445, 'Gaurela', 'gaurela', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(446, 'Gharghoda', 'gharghoda', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(447, 'Gidam', 'gidam', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(448, 'Jagdalpur', 'jagdalpur', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(449, 'Janjgir', 'janjgir', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(450, 'Janjgir-Champa', 'janjgir-champa', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(451, 'Jashpur', 'jashpur', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(452, 'Jashpurnagar', 'jashpurnagar', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(453, 'Junagarh', 'junagarh', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(454, 'Kabeerdham', 'kabeerdham', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(455, 'Kanker', 'kanker', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(456, 'Katghora', 'katghora', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(457, 'Kawardha', 'kawardha', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(458, 'Khairagarh', 'khairagarh', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(459, 'Khamharia', 'khamharia', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(460, 'Kharod', 'kharod', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(461, 'Kharsia', 'kharsia', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(462, 'Kirandul', 'kirandul', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(463, 'Kondagaon', 'kondagaon', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(464, 'Korba', 'korba', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(465, 'Koria', 'koria', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(466, 'Kota', 'kota', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(467, 'Kotaparh', 'kotaparh', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(468, 'Kumhari', 'kumhari', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(469, 'Kurud', 'kurud', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(470, 'Lormi', 'lormi', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(471, 'Mahasamund', 'mahasamund', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(472, 'Mungeli', 'mungeli', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(473, 'Narayanpur', 'narayanpur', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(474, 'Narharpur', 'narharpur', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(475, 'Pandaria', 'pandaria', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(476, 'Pandatarai', 'pandatarai', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(477, 'Pasan', 'pasan', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(478, 'Patan', 'patan', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(479, 'Pathalgaon', 'pathalgaon', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(480, 'Pendra', 'pendra', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(481, 'Pithora', 'pithora', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(482, 'Raigarh', 'raigarh', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(483, 'Raipur', 'raipur', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(484, 'Raj Nandgaon', 'raj-nandgaon', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(485, 'Ramanuj Ganj', 'ramanuj-ganj', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(486, 'Ratanpur', 'ratanpur', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(487, 'Sakti', 'sakti', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(488, 'Saraipali', 'saraipali', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(489, 'Sarangarh', 'sarangarh', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(490, 'Seorinarayan', 'seorinarayan', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(491, 'Simga', 'simga', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(492, 'Surguja', 'surguja', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(493, 'Takhatpur', 'takhatpur', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(494, 'Umarkot', 'umarkot', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(495, 'Uttar Bastar Kanker', 'uttar-bastar-kanker', 7, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(496, 'Amli', 'amli', 8, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(497, 'Dadra', 'dadra', 8, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(498, 'Dadra & Nagar Haveli', 'dadra-nagar-haveli', 8, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(499, 'Daman', 'daman', 8, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(500, 'Diu', 'diu', 8, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(501, 'Silvassa', 'silvassa', 8, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(502, 'Alipur', 'alipur', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(503, 'Bawana', 'bawana', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(504, 'Central Delhi', 'central-delhi', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(505, 'Delhi', 'delhi', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(506, 'Deoli', 'deoli', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(507, 'East Delhi', 'east-delhi', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(508, 'Karol Bagh', 'karol-bagh', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(509, 'Najafgarh', 'najafgarh', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(510, 'Nangloi Jat', 'nangloi-jat', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(511, 'Narela', 'narela', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(512, 'New Delhi', 'new-delhi', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(513, 'North Delhi', 'north-delhi', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(514, 'North East Delhi', 'north-east-delhi', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(515, 'North West Delhi', 'north-west-delhi', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(516, 'Pitampura', 'pitampura', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(517, 'Rohini', 'rohini', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(518, 'South Delhi', 'south-delhi', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(519, 'South West Delhi', 'south-west-delhi', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(520, 'West Delhi', 'west-delhi', 9, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(521, 'Aldona', 'aldona', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(522, 'Arambol', 'arambol', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(523, 'Baga', 'baga', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(524, 'Bambolim', 'bambolim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(525, 'Bandora', 'bandora', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(526, 'Benaulim', 'benaulim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(527, 'Calangute', 'calangute', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(528, 'Candolim', 'candolim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(529, 'Carapur', 'carapur', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(530, 'Cavelossim', 'cavelossim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(531, 'Chicalim', 'chicalim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(532, 'Chinchinim', 'chinchinim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(533, 'Colovale', 'colovale', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(534, 'Colva', 'colva', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(535, 'Cortalim', 'cortalim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(536, 'Cuncolim', 'cuncolim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(537, 'Curchorem', 'curchorem', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(538, 'Curti', 'curti', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(539, 'Davorlim', 'davorlim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(540, 'Dicholi', 'dicholi', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(541, 'Goa Velha', 'goa-velha', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(542, 'Guirim', 'guirim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(543, 'Jua', 'jua', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(544, 'Kankon', 'kankon', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(545, 'Madgaon', 'madgaon', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(546, 'Mapuca', 'mapuca', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(547, 'Morjim', 'morjim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(548, 'Mormugao', 'mormugao', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(549, 'Navelim', 'navelim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(550, 'North Goa', 'north-goa', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(551, 'Palle', 'palle', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(552, 'Panaji', 'panaji', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(553, 'Pernem', 'pernem', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(554, 'Ponda', 'ponda', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(555, 'Quepem', 'quepem', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(556, 'Queula', 'queula', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(557, 'Raia', 'raia', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(558, 'Saligao', 'saligao', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(559, 'Sancoale', 'sancoale', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(560, 'Sanguem', 'sanguem', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(561, 'Sanquelim', 'sanquelim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(562, 'Sanvordem', 'sanvordem', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(563, 'Serula', 'serula', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(564, 'Solim', 'solim', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(565, 'South Goa', 'south-goa', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(566, 'Taleigao', 'taleigao', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(567, 'Vagator', 'vagator', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(568, 'Valpoy', 'valpoy', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(569, 'Varca', 'varca', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(570, 'Vasco da Gama', 'vasco-da-gama', 10, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(571, 'Abrama', 'abrama', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(572, 'Adalaj', 'adalaj', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(573, 'Agol', 'agol', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(574, 'Ahmedabad', 'ahmedabad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(575, 'Ahwa', 'ahwa', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(576, 'Akrund', 'akrund', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(577, 'Amod', 'amod', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(578, 'Amreli', 'amreli', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(579, 'Amroli', 'amroli', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(580, 'Anand', 'anand', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(581, 'Anjar', 'anjar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(582, 'Ankleshwar', 'ankleshwar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(583, 'Babra', 'babra', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(584, 'Bagasara', 'bagasara', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(585, 'Bagasra', 'bagasra', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(586, 'Bakharla', 'bakharla', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(587, 'Balagam', 'balagam', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(588, 'Balasinor', 'balasinor', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(589, 'Balisana', 'balisana', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(590, 'Bamanbore', 'bamanbore', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(591, 'Banas Kantha', 'banas-kantha', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(592, 'Bandia', 'bandia', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(593, 'Bantva', 'bantva', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(594, 'Bardoli', 'bardoli', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(595, 'Bavla', 'bavla', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(596, 'Bedi', 'bedi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(597, 'Bhachau', 'bhachau', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(598, 'Bhadran', 'bhadran', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(599, 'Bhandu', 'bhandu', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(600, 'Bhanvad', 'bhanvad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(601, 'Bharuch', 'bharuch', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(602, 'Bhatha', 'bhatha', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(603, 'Bhavnagar', 'bhavnagar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(604, 'Bhayavadar', 'bhayavadar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(605, 'Bhildi', 'bhildi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(606, 'Bhojpur Dharampur', 'bhojpur-dharampur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(607, 'Bhuj', 'bhuj', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(608, 'Bilimora', 'bilimora', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(609, 'Bilkha', 'bilkha', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(610, 'Borsad', 'borsad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(611, 'Botad', 'botad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(612, 'Chaklasi', 'chaklasi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(613, 'Chalala', 'chalala', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(614, 'Chaloda', 'chaloda', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(615, 'Champaner', 'champaner', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(616, 'Chanasma', 'chanasma', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(617, 'Chhala', 'chhala', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(618, 'Chhota Udepur', 'chhota-udepur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(619, 'Chikhli', 'chikhli', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(620, 'Chotila', 'chotila', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(621, 'Chuda', 'chuda', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(622, 'Dabhoda', 'dabhoda', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(623, 'Dabhoi', 'dabhoi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(624, 'Dahegam', 'dahegam', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(625, 'Dahod', 'dahod', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(626, 'Dakor', 'dakor', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(627, 'Damnagar', 'damnagar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(628, 'Dandi', 'dandi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(629, 'Dangs (India)', 'dangs-india', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(630, 'Danta', 'danta', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(631, 'Dayapar', 'dayapar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(632, 'Delvada', 'delvada', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(633, 'Delwada', 'delwada', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(634, 'Detroj', 'detroj', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(635, 'Devbhumi Dwarka', 'devbhumi-dwarka', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(636, 'Devgadh Bariya', 'devgadh-bariya', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(637, 'Dhandhuka', 'dhandhuka', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(638, 'Dhanera', 'dhanera', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(639, 'Dhansura', 'dhansura', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(640, 'Dharampur', 'dharampur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(641, 'Dharasana', 'dharasana', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(642, 'Dhari', 'dhari', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(643, 'Dhasa', 'dhasa', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(644, 'Dhola', 'dhola', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(645, 'Dholera', 'dholera', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(646, 'Dholka', 'dholka', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(647, 'Dhoraji', 'dhoraji', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(648, 'Dhrangadhra', 'dhrangadhra', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(649, 'Dhrol', 'dhrol', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(650, 'Dhuwaran', 'dhuwaran', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(651, 'Disa', 'disa', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(652, 'Dohad', 'dohad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(653, 'Dumkhal', 'dumkhal', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(654, 'Dungarpur', 'dungarpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(655, 'Dwarka', 'dwarka', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(656, 'Gadhada', 'gadhada', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(657, 'Gandevi', 'gandevi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(658, 'Gandhidham', 'gandhidham', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(659, 'Gandhinagar', 'gandhinagar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(660, 'Gariadhar', 'gariadhar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(661, 'Ghodasar', 'ghodasar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(662, 'Ghogha', 'ghogha', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(663, 'Gir Somnath', 'gir-somnath', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(664, 'Godhra', 'godhra', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(665, 'Gondal', 'gondal', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(666, 'Gorwa', 'gorwa', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(667, 'Halenda', 'halenda', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(668, 'Halol', 'halol', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(669, 'Halvad', 'halvad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(670, 'Hansot', 'hansot', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(671, 'Harij', 'harij', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(672, 'Harsol', 'harsol', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(673, 'Hathuran', 'hathuran', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(674, 'Himatnagar', 'himatnagar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(675, 'Idar', 'idar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(676, 'Jakhau', 'jakhau', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(677, 'Jalalpore', 'jalalpore', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(678, 'Jalalpur', 'jalalpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(679, 'Jalia', 'jalia', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(680, 'Jambuda', 'jambuda', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(681, 'Jambusar', 'jambusar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(682, 'Jamnagar', 'jamnagar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(683, 'Jarod', 'jarod', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(684, 'Jasdan', 'jasdan', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(685, 'Jetalpur', 'jetalpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(686, 'Jetalsar', 'jetalsar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(687, 'Jetpur', 'jetpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(688, 'Jetpur (Navagadh)', 'jetpur-navagadh', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(689, 'Jhalod', 'jhalod', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(690, 'Jhulasan', 'jhulasan', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(691, 'Jodhpur', 'jodhpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(692, 'Jodhpur (Ahmedabad)', 'jodhpur-ahmedabad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(693, 'Jodia', 'jodia', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(694, 'Jodiya Bandar', 'jodiya-bandar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(695, 'Junagadh', 'junagadh', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(696, 'Kachchh', 'kachchh', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(697, 'Kachholi', 'kachholi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(698, 'Kadi', 'kadi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(699, 'Kadod', 'kadod', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(700, 'Kalavad', 'kalavad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(701, 'Kalol', 'kalol', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(702, 'Kandla', 'kandla', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(703, 'Kandla port', 'kandla-port', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(704, 'Kanodar', 'kanodar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(705, 'Kapadvanj', 'kapadvanj', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(706, 'Karamsad', 'karamsad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(707, 'Kariana', 'kariana', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(708, 'Karjan', 'karjan', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(709, 'Kathor', 'kathor', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(710, 'Katpur', 'katpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(711, 'Kawant', 'kawant', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(712, 'Kayavarohan', 'kayavarohan', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(713, 'Kerwada', 'kerwada', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(714, 'Keshod', 'keshod', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(715, 'Khambhalia', 'khambhalia', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(716, 'Khambhat', 'khambhat', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(717, 'Khavda', 'khavda', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(718, 'Kheda', 'kheda', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(719, 'Khedbrahma', 'khedbrahma', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(720, 'Khedoi', 'khedoi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(721, 'Kherali', 'kherali', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(722, 'Kheralu', 'kheralu', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(723, 'Kodinar', 'kodinar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(724, 'Kosamba', 'kosamba', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(725, 'Kothara', 'kothara', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(726, 'Kotharia', 'kotharia', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(727, 'Kukarmunda', 'kukarmunda', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(728, 'Kukma', 'kukma', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(729, 'Kundla', 'kundla', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(730, 'Kutch district', 'kutch-district', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(731, 'Kutiyana', 'kutiyana', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(732, 'Ladol', 'ladol', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(733, 'Lakhpat', 'lakhpat', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(734, 'Lakhtar', 'lakhtar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(735, 'Lalpur', 'lalpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(736, 'Langhnaj', 'langhnaj', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(737, 'Lathi', 'lathi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(738, 'Limbdi', 'limbdi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(739, 'Limkheda', 'limkheda', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(740, 'Lunavada', 'lunavada', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(741, 'Madhavpur Ghed', 'madhavpur-ghed', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(742, 'Madhi', 'madhi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(743, 'Mahemdavad', 'mahemdavad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(744, 'Mahesana', 'mahesana', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(745, 'Mahisa', 'mahisa', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(746, 'Mahudha', 'mahudha', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(747, 'Mahuva', 'mahuva', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(748, 'Mahuva (Surat)', 'mahuva-surat', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(749, 'Malpur', 'malpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(750, 'Manavadar', 'manavadar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(751, 'Mandal', 'mandal', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(752, 'Mandvi', 'mandvi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(753, 'Mandvi (Surat)', 'mandvi-surat', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(754, 'Mangrol', 'mangrol', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(755, 'Mangrol (Junagadh)', 'mangrol-junagadh', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(756, 'Mansa', 'mansa', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(757, 'Meghraj', 'meghraj', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(758, 'Mehsana', 'mehsana', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(759, 'Mendarda', 'mendarda', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(760, 'Mithapur', 'mithapur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(761, 'Modasa', 'modasa', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(762, 'Morbi', 'morbi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(763, 'Morva (Hadaf)', 'morva-hadaf', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(764, 'Morwa', 'morwa', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(765, 'Mundra', 'mundra', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(766, 'Nadiad', 'nadiad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(767, 'Nagwa', 'nagwa', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(768, 'Naldhara', 'naldhara', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(769, 'Naliya', 'naliya', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(770, 'Nargol', 'nargol', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(771, 'Narmada', 'narmada', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(772, 'Naroda', 'naroda', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(773, 'Navsari', 'navsari', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(774, 'Nikora', 'nikora', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(775, 'Nizar', 'nizar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(776, 'Odadar', 'odadar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(777, 'Okha', 'okha', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(778, 'Olpad', 'olpad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(779, 'Paddhari', 'paddhari', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(780, 'Padra', 'padra', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(781, 'Palanpur', 'palanpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(782, 'Palanswa', 'palanswa', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(783, 'Palitana', 'palitana', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(784, 'Paliyad', 'paliyad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(785, 'Palsana', 'palsana', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(786, 'Panch Mahals', 'panch-mahals', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(787, 'Panchmahal district', 'panchmahal-district', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(788, 'Pardi', 'pardi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(789, 'Parnera', 'parnera', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(790, 'Pavi Jetpur', 'pavi-jetpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(791, 'Petlad', 'petlad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(792, 'Pipavav', 'pipavav', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(793, 'Piplod', 'piplod', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(794, 'Porbandar', 'porbandar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(795, 'Prabhas Patan', 'prabhas-patan', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(796, 'Prantij', 'prantij', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(797, 'Radhanpur', 'radhanpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(798, 'Rajkot', 'rajkot', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(799, 'Rajpipla', 'rajpipla', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(800, 'Rajula', 'rajula', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(801, 'Ranavav', 'ranavav', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(802, 'Ranpur', 'ranpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(803, 'Rapar', 'rapar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(804, 'Reha', 'reha', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(805, 'Roha', 'roha', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(806, 'Sabar Kantha', 'sabar-kantha', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(807, 'Sachin', 'sachin', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(808, 'Salaya', 'salaya', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(809, 'Samakhiali', 'samakhiali', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(810, 'Sanand', 'sanand', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(811, 'Sankheda', 'sankheda', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(812, 'Sarbhon', 'sarbhon', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(813, 'Sardoi', 'sardoi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(814, 'Sarkhej', 'sarkhej', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(815, 'Sathamba', 'sathamba', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(816, 'Savarkundla', 'savarkundla', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(817, 'Savli', 'savli', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(818, 'Sayla', 'sayla', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(819, 'Shivrajpur', 'shivrajpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(820, 'Siddhpur', 'siddhpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(821, 'Sihor', 'sihor', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(822, 'Sikka', 'sikka', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(823, 'Sinor', 'sinor', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(824, 'Sojitra', 'sojitra', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(825, 'Songadh', 'songadh', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(826, 'Supedi', 'supedi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(827, 'Surat', 'surat', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(828, 'Surendranagar', 'surendranagar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(829, 'Sutrapada', 'sutrapada', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(830, 'Talaja', 'talaja', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(831, 'Tankara', 'tankara', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(832, 'Tapi', 'tapi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(833, 'Than', 'than', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(834, 'Thangadh', 'thangadh', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(835, 'Tharad', 'tharad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(836, 'Thasra', 'thasra', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(837, 'The Dangs', 'the-dangs', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(838, 'Umarpada', 'umarpada', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(839, 'Umrala', 'umrala', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(840, 'Umreth', 'umreth', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(841, 'Un', 'un', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(842, 'Una', 'una', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(843, 'Unjha', 'unjha', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(844, 'Upleta', 'upleta', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(845, 'Utran', 'utran', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(846, 'Vadgam', 'vadgam', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(847, 'Vadnagar', 'vadnagar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(848, 'Vadodara', 'vadodara', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(849, 'Vaghodia', 'vaghodia', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(850, 'Vaghodia INA', 'vaghodia-ina', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(851, 'Vallabh Vidyanagar', 'vallabh-vidyanagar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(852, 'Vallabhipur', 'vallabhipur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(853, 'Valsad', 'valsad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(854, 'Vanala', 'vanala', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(855, 'Vansda', 'vansda', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(856, 'Vanthli', 'vanthli', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(857, 'Vapi', 'vapi', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(858, 'Vartej', 'vartej', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(859, 'Vasa', 'vasa', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(860, 'Vasavad', 'vasavad', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(861, 'Vaso', 'vaso', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(862, 'Vataman', 'vataman', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(863, 'Vejalpur', 'vejalpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(864, 'Veraval', 'veraval', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(865, 'Vijapur', 'vijapur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(866, 'Vinchhiya', 'vinchhiya', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(867, 'Viramgam', 'viramgam', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(868, 'Virpur', 'virpur', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(869, 'Visavadar', 'visavadar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(870, 'Visnagar', 'visnagar', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(871, 'Vyara', 'vyara', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(872, 'Wadhai', 'wadhai', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(873, 'Wadhwan', 'wadhwan', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(874, 'Waghai', 'waghai', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(875, 'Wankaner', 'wankaner', 11, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(876, 'Ambala', 'ambala', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(877, 'Asandh', 'asandh', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(878, 'Ateli Mandi', 'ateli-mandi', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(879, 'Bahadurgarh', 'bahadurgarh', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(880, 'Bara Uchana', 'bara-uchana', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(881, 'Barwala', 'barwala', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(882, 'Bawal', 'bawal', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(883, 'Beri Khas', 'beri-khas', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(884, 'Bhiwani', 'bhiwani', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(885, 'Buriya', 'buriya', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00');
INSERT INTO `cities` (`id`, `name`, `slug`, `state_id`, `country_id`, `record_id`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`) VALUES
(886, 'Charkhi Dadri', 'charkhi-dadri', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(887, 'Chhachhrauli', 'chhachhrauli', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(888, 'Dabwali', 'dabwali', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(889, 'Dharuhera', 'dharuhera', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(890, 'Ellenabad', 'ellenabad', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(891, 'Faridabad', 'faridabad', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(892, 'Farrukhnagar', 'farrukhnagar', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(893, 'Fatehabad', 'fatehabad', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(894, 'Firozpur Jhirka', 'firozpur-jhirka', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(895, 'Gharaunda', 'gharaunda', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(896, 'Gohana', 'gohana', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(897, 'Gorakhpur', 'gorakhpur', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(898, 'Gurgaon', 'gurgaon', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(899, 'Hansi', 'hansi', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(900, 'Hasanpur', 'hasanpur', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(901, 'Hisar', 'hisar', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(902, 'Hodal', 'hodal', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(903, 'Inda Chhoi', 'inda-chhoi', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(904, 'Indri', 'indri', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(905, 'Jagadhri', 'jagadhri', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(906, 'Jakhal', 'jakhal', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(907, 'Jhajjar', 'jhajjar', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(908, 'Jind', 'jind', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(909, 'Kaithal', 'kaithal', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(910, 'Kalanaur', 'kalanaur', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(911, 'Kalanwali', 'kalanwali', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(912, 'Kanina Khas', 'kanina-khas', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(913, 'Karnal', 'karnal', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(914, 'Kharkhauda', 'kharkhauda', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(915, 'Kheri Sampla', 'kheri-sampla', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(916, 'Kurukshetra', 'kurukshetra', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(917, 'Ladwa', 'ladwa', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(918, 'Loharu', 'loharu', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(919, 'Maham', 'maham', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(920, 'Mahendragarh', 'mahendragarh', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(921, 'Mandholi Kalan', 'mandholi-kalan', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(922, 'Mustafabad', 'mustafabad', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(923, 'Narayangarh', 'narayangarh', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(924, 'Narnaul', 'narnaul', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(925, 'Narnaund', 'narnaund', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(926, 'Narwana', 'narwana', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(927, 'Nilokheri', 'nilokheri', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(928, 'Nuh', 'nuh', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(929, 'Palwal', 'palwal', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(930, 'Panchkula', 'panchkula', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(931, 'Panipat', 'panipat', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(932, 'Pataudi', 'pataudi', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(933, 'Pehowa', 'pehowa', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(934, 'Pinjaur', 'pinjaur', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(935, 'Punahana', 'punahana', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(936, 'Pundri', 'pundri', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(937, 'Radaur', 'radaur', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(938, 'Rania', 'rania', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(939, 'Ratia', 'ratia', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(940, 'Rewari', 'rewari', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(941, 'Rohtak', 'rohtak', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(942, 'Safidon', 'safidon', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(943, 'Samalkha', 'samalkha', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(944, 'Shadipur Julana', 'shadipur-julana', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(945, 'Shahabad', 'shahabad', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(946, 'Sirsa', 'sirsa', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(947, 'Sohna', 'sohna', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(948, 'Sonipat', 'sonipat', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(949, 'Taoru', 'taoru', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(950, 'Thanesar', 'thanesar', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(951, 'Tohana', 'tohana', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(952, 'Tosham', 'tosham', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(953, 'Uklana', 'uklana', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(954, 'Yamunanagar', 'yamunanagar', 12, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(955, 'Arki', 'arki', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(956, 'Baddi', 'baddi', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(957, 'Banjar', 'banjar', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(958, 'Chamba', 'chamba', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(959, 'Chaupal', 'chaupal', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(960, 'Chowari', 'chowari', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(961, 'Chuari Khas', 'chuari-khas', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(962, 'Dagshai', 'dagshai', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(963, 'Dalhousie', 'dalhousie', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(964, 'Daulatpur', 'daulatpur', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(965, 'Dera Gopipur', 'dera-gopipur', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(966, 'Dharamsala', 'dharamsala', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(967, 'Gagret', 'gagret', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(968, 'Ghumarwin', 'ghumarwin', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(969, 'Hamirpur', 'hamirpur', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(970, 'Jawala Mukhi', 'jawala-mukhi', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(971, 'Jogindarnagar', 'jogindarnagar', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(972, 'Jubbal', 'jubbal', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(973, 'Jutogh', 'jutogh', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(974, 'Kalka', 'kalka', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(975, 'Kangar', 'kangar', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(976, 'Kangra', 'kangra', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(977, 'Kasauli', 'kasauli', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(978, 'Kinnaur', 'kinnaur', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(979, 'Kotkhai', 'kotkhai', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(980, 'Kotla', 'kotla', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(981, 'Kulu', 'kulu', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(982, 'Kyelang', 'kyelang', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(983, 'Lahul and Spiti', 'lahul-and-spiti', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(984, 'Manali', 'manali', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(985, 'Mandi', 'mandi', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(986, 'Nadaun', 'nadaun', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(987, 'Nagar', 'nagar', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(988, 'Nagrota', 'nagrota', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(989, 'Nahan', 'nahan', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(990, 'Nalagarh', 'nalagarh', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(991, 'Palampur', 'palampur', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(992, 'Pandoh', 'pandoh', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(993, 'Paonta Sahib', 'paonta-sahib', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(994, 'Parwanoo', 'parwanoo', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(995, 'Rajgarh', 'rajgarh', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(996, 'Rampur', 'rampur', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1001, 'Rohru', 'rohru', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1002, 'Sabathu', 'sabathu', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1003, 'Santokhgarh', 'santokhgarh', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1004, 'Sarahan', 'sarahan', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1005, 'Sarka Ghat', 'sarka-ghat', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1006, 'Seoni', 'seoni', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1007, 'Shimla', 'shimla', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1008, 'Sirmaur', 'sirmaur', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1009, 'Solan', 'solan', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1010, 'Sundarnagar', 'sundarnagar', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1011, 'Theog', 'theog', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1012, 'Tira Sujanpur', 'tira-sujanpur', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1013, 'Yol', 'yol', 13, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1014, 'Akhnur', 'akhnur', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1015, 'Anantnag', 'anantnag', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1016, 'Awantipur', 'awantipur', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1017, 'Badgam', 'badgam', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1018, 'Bandipore', 'bandipore', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1019, 'Banihal', 'banihal', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1020, 'Baramula', 'baramula', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1021, 'Batoti', 'batoti', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1022, 'Bhadarwah', 'bhadarwah', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1023, 'Bijbehara', 'bijbehara', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1024, 'Bishnah', 'bishnah', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1025, 'Doda', 'doda', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1026, 'Ganderbal', 'ganderbal', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1027, 'Gho Brahmanan de', 'gho-brahmanan-de', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1028, 'Hajan', 'hajan', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1029, 'Hiranagar', 'hiranagar', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1030, 'Jammu', 'jammu', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1031, 'Jaurian', 'jaurian', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1032, 'Kathua', 'kathua', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1033, 'Katra', 'katra', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1034, 'Khaur', 'khaur', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1035, 'Kishtwar', 'kishtwar', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1036, 'Kud', 'kud', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1037, 'Kulgam', 'kulgam', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1038, 'Kupwara', 'kupwara', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1039, 'Ladakh', 'ladakh', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1040, 'Magam', 'magam', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1041, 'Nawanshahr', 'nawanshahr', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1042, 'Noria', 'noria', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1043, 'Padam', 'padam', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1044, 'Pahlgam', 'pahlgam', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1045, 'Parol', 'parol', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1046, 'Pattan', 'pattan', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1047, 'Pulwama', 'pulwama', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1048, 'Punch', 'punch', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1049, 'Qazigund', 'qazigund', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1050, 'Rajaori', 'rajaori', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1051, 'Rajauri', 'rajauri', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1052, 'Ramban', 'ramban', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1053, 'Ramgarh', 'ramgarh', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1054, 'Riasi', 'riasi', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1055, 'Samba', 'samba', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1056, 'Shupiyan', 'shupiyan', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1057, 'Sopur', 'sopur', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1058, 'Soyibug', 'soyibug', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1059, 'Srinagar', 'srinagar', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1060, 'Sumbal', 'sumbal', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1061, 'Thang', 'thang', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1062, 'Thanna Mandi', 'thanna-mandi', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1063, 'Tral', 'tral', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1064, 'Tsrar Sharif', 'tsrar-sharif', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1065, 'Udhampur', 'udhampur', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1066, 'Uri', 'uri', 14, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1067, 'Bagra', 'bagra', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1068, 'Barka Kana', 'barka-kana', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1069, 'Barki Saria', 'barki-saria', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1070, 'Barwadih', 'barwadih', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1071, 'Bhojudih', 'bhojudih', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1072, 'Bokaro', 'bokaro', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1073, 'Bundu', 'bundu', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1074, 'Chaibasa', 'chaibasa', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1075, 'Chakradharpur', 'chakradharpur', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1076, 'Chakulia', 'chakulia', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1077, 'Chandil', 'chandil', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1078, 'Chas', 'chas', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1079, 'Chatra', 'chatra', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1080, 'Chiria', 'chiria', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1081, 'Daltonganj', 'daltonganj', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1082, 'Deogarh', 'deogarh', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1083, 'Dhanbad', 'dhanbad', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1084, 'Dhanwar', 'dhanwar', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1085, 'Dugda', 'dugda', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1086, 'Dumka', 'dumka', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1087, 'Garhwa', 'garhwa', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1088, 'Ghatsila', 'ghatsila', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1089, 'Giridih', 'giridih', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1090, 'Gobindpur', 'gobindpur', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1091, 'Godda', 'godda', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1092, 'Gomoh', 'gomoh', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1093, 'Gopinathpur', 'gopinathpur', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1094, 'Gua', 'gua', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1095, 'Gumia', 'gumia', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1096, 'Gumla', 'gumla', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1097, 'Hazaribag', 'hazaribag', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1098, 'Hazaribagh', 'hazaribagh', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1099, 'Hesla', 'hesla', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1100, 'Husainabad', 'husainabad', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1101, 'Jagannathpur', 'jagannathpur', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1102, 'Jamadoba', 'jamadoba', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1103, 'Jamshedpur', 'jamshedpur', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1104, 'Jamtara', 'jamtara', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1105, 'Jasidih', 'jasidih', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1106, 'Jharia', 'jharia', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1107, 'Jugsalai', 'jugsalai', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1108, 'Jumri Tilaiya', 'jumri-tilaiya', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1109, 'Kalikapur', 'kalikapur', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1110, 'Kandra', 'kandra', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1111, 'Kanke', 'kanke', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1112, 'Katras', 'katras', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1113, 'Kenduadih', 'kenduadih', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1114, 'Kharsawan', 'kharsawan', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1115, 'Khunti', 'khunti', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1116, 'Kodarma', 'kodarma', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1117, 'Kuju', 'kuju', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1118, 'Latehar', 'latehar', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1119, 'Lohardaga', 'lohardaga', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1120, 'Madhupur', 'madhupur', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1121, 'Malkera', 'malkera', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1122, 'Manoharpur', 'manoharpur', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1123, 'Mugma', 'mugma', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1124, 'Mushabani', 'mushabani', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1125, 'Neturhat', 'neturhat', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1126, 'Nirsa', 'nirsa', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1127, 'Noamundi', 'noamundi', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1128, 'Pakur', 'pakur', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1129, 'Palamu', 'palamu', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1130, 'Pashchim Singhbhum', 'pashchim-singhbhum', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1131, 'patamda', 'patamda', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1132, 'Pathardih', 'pathardih', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1133, 'Purba Singhbhum', 'purba-singhbhum', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1134, 'Ranchi', 'ranchi', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1135, 'Ray', 'ray', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1136, 'Sahibganj', 'sahibganj', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1137, 'Saraikela', 'saraikela', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1138, 'Sarubera', 'sarubera', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1139, 'Sijua', 'sijua', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1140, 'Simdega', 'simdega', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1141, 'Sini', 'sini', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1142, 'Topchanchi', 'topchanchi', 15, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1143, 'Afzalpur', 'afzalpur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1144, 'Ajjampur', 'ajjampur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1145, 'Aland', 'aland', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1146, 'Alnavar', 'alnavar', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1147, 'Alur', 'alur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1148, 'Anekal', 'anekal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1149, 'Ankola', 'ankola', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1150, 'Annigeri', 'annigeri', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1151, 'Arkalgud', 'arkalgud', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1152, 'Arsikere', 'arsikere', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1153, 'Athni', 'athni', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1154, 'Aurad', 'aurad', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1155, 'Badami', 'badami', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1156, 'Bagalkot', 'bagalkot', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1157, 'Bagepalli', 'bagepalli', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1158, 'Bail-Hongal', 'bail-hongal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1159, 'Ballari', 'ballari', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1160, 'Banavar', 'banavar', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1161, 'Bangalore Rural', 'bangalore-rural', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1162, 'Bangalore Urban', 'bangalore-urban', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1163, 'Bangarapet', 'bangarapet', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1164, 'Bannur', 'bannur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1165, 'Bantval', 'bantval', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1166, 'Basavakalyan', 'basavakalyan', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1167, 'Basavana Bagevadi', 'basavana-bagevadi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1168, 'Belagavi', 'belagavi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1169, 'Belluru', 'belluru', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1170, 'Beltangadi', 'beltangadi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1171, 'Belur', 'belur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1172, 'Bengaluru', 'bengaluru', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1173, 'Bhadravati', 'bhadravati', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1174, 'Bhalki', 'bhalki', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1175, 'Bhatkal', 'bhatkal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1176, 'Bidar', 'bidar', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1177, 'Bilgi', 'bilgi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1178, 'Birur', 'birur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1179, 'Byadgi', 'byadgi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1180, 'Byndoor', 'byndoor', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1181, 'Canacona', 'canacona', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1182, 'Challakere', 'challakere', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1183, 'Chamrajnagar', 'chamrajnagar', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1184, 'Channagiri', 'channagiri', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1185, 'Channapatna', 'channapatna', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1186, 'Channarayapatna', 'channarayapatna', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1187, 'Chik Ballapur', 'chik-ballapur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1188, 'Chikkaballapur', 'chikkaballapur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1189, 'Chikkamagaluru', 'chikkamagaluru', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1190, 'Chiknayakanhalli', 'chiknayakanhalli', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1191, 'Chikodi', 'chikodi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1192, 'Chincholi', 'chincholi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1193, 'Chintamani', 'chintamani', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1194, 'Chitapur', 'chitapur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1195, 'Chitradurga', 'chitradurga', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1196, 'Closepet', 'closepet', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1197, 'Coondapoor', 'coondapoor', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1198, 'Dakshina Kannada', 'dakshina-kannada', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1199, 'Dandeli', 'dandeli', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1200, 'Davanagere', 'davanagere', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1201, 'Devanhalli', 'devanhalli', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1202, 'Dharwad', 'dharwad', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1203, 'Dod Ballapur', 'dod-ballapur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1204, 'French Rocks', 'french-rocks', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1205, 'Gadag', 'gadag', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1206, 'Gadag-Betageri', 'gadag-betageri', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1207, 'Gajendragarh', 'gajendragarh', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1208, 'Gangawati', 'gangawati', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1209, 'Gangolli', 'gangolli', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1210, 'Gokak', 'gokak', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1211, 'Gokarna', 'gokarna', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1212, 'Goribidnur', 'goribidnur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1213, 'Gorur', 'gorur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1214, 'Gubbi', 'gubbi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1215, 'Gudibanda', 'gudibanda', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1216, 'Guledagudda', 'guledagudda', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1217, 'Gundlupet', 'gundlupet', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1218, 'Gurmatkal', 'gurmatkal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1219, 'Hadagalli', 'hadagalli', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1220, 'Haliyal', 'haliyal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1221, 'Hampi', 'hampi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1222, 'Hangal', 'hangal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1223, 'Harihar', 'harihar', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1224, 'Harpanahalli', 'harpanahalli', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1225, 'Hassan', 'hassan', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1226, 'Haveri', 'haveri', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1227, 'Heggadadevankote', 'heggadadevankote', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1228, 'Hirekerur', 'hirekerur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1229, 'Hiriyur', 'hiriyur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1230, 'Holalkere', 'holalkere', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1231, 'Hole Narsipur', 'hole-narsipur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1232, 'Homnabad', 'homnabad', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1233, 'Honavar', 'honavar', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1234, 'Honnali', 'honnali', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1235, 'Hosanagara', 'hosanagara', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1236, 'Hosangadi', 'hosangadi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1237, 'Hosdurga', 'hosdurga', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1238, 'Hoskote', 'hoskote', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1239, 'Hospet', 'hospet', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1240, 'Hubballi', 'hubballi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1241, 'Hukeri', 'hukeri', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1242, 'Hungund', 'hungund', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1243, 'Hunsur', 'hunsur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1244, 'Ilkal', 'ilkal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1245, 'Indi', 'indi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1246, 'Jagalur', 'jagalur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1247, 'Jamkhandi', 'jamkhandi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1248, 'Jevargi', 'jevargi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1249, 'Kadur', 'kadur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1250, 'Kalaburgi', 'kalaburgi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1251, 'Kalghatgi', 'kalghatgi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1252, 'Kampli', 'kampli', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1253, 'Kankanhalli', 'kankanhalli', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1254, 'Karkala', 'karkala', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1255, 'Karwar', 'karwar', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1256, 'Kavalur', 'kavalur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1257, 'Kerur', 'kerur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1258, 'Khanapur', 'khanapur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1259, 'Kodagu', 'kodagu', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1260, 'Kodigenahalli', 'kodigenahalli', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1261, 'Kodlipet', 'kodlipet', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1262, 'Kolar', 'kolar', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1263, 'Kollegal', 'kollegal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1264, 'Konanur', 'konanur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1265, 'Konnur', 'konnur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1266, 'Koppa', 'koppa', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1267, 'Koppal', 'koppal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1268, 'Koratagere', 'koratagere', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1269, 'Kotturu', 'kotturu', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1270, 'Krishnarajpet', 'krishnarajpet', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1271, 'Kudachi', 'kudachi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1272, 'Kudligi', 'kudligi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1273, 'Kumsi', 'kumsi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1274, 'Kumta', 'kumta', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1275, 'Kundgol', 'kundgol', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1276, 'Kunigal', 'kunigal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1277, 'Kurgunta', 'kurgunta', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1278, 'Kushalnagar', 'kushalnagar', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1279, 'Kushtagi', 'kushtagi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1280, 'Lakshmeshwar', 'lakshmeshwar', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1281, 'Lingsugur', 'lingsugur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1282, 'Londa', 'londa', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1283, 'Maddagiri', 'maddagiri', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1284, 'Maddur', 'maddur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1285, 'Madikeri', 'madikeri', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1286, 'Magadi', 'magadi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1287, 'Mahalingpur', 'mahalingpur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1288, 'Malavalli', 'malavalli', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1289, 'Malpe', 'malpe', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1290, 'Malur', 'malur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1291, 'Mandya', 'mandya', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1292, 'Mangaluru', 'mangaluru', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1293, 'Manipal', 'manipal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1294, 'Manvi', 'manvi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1295, 'Mayakonda', 'mayakonda', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1296, 'Melukote', 'melukote', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1297, 'Mudbidri', 'mudbidri', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1298, 'Muddebihal', 'muddebihal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1299, 'Mudgal', 'mudgal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1300, 'Mudgere', 'mudgere', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1301, 'Mudhol', 'mudhol', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1302, 'Mulbagal', 'mulbagal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1303, 'Mulgund', 'mulgund', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1304, 'Mulki', 'mulki', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1305, 'Mundargi', 'mundargi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1306, 'Mundgod', 'mundgod', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1307, 'Munirabad', 'munirabad', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1308, 'Murudeshwara', 'murudeshwara', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1309, 'Mysuru', 'mysuru', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1310, 'Nagamangala', 'nagamangala', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1311, 'Nanjangud', 'nanjangud', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1312, 'Narasimharajapura', 'narasimharajapura', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1313, 'Naregal', 'naregal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1314, 'Nargund', 'nargund', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1315, 'Navalgund', 'navalgund', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1316, 'Nelamangala', 'nelamangala', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1317, 'Nyamti', 'nyamti', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1318, 'Pangala', 'pangala', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1319, 'Pavugada', 'pavugada', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1320, 'Piriyapatna', 'piriyapatna', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1321, 'Ponnampet', 'ponnampet', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1322, 'Rabkavi', 'rabkavi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1323, 'Raichur', 'raichur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1324, 'Ramanagara', 'ramanagara', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1325, 'Ranibennur', 'ranibennur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1326, 'Raybag', 'raybag', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1327, 'Robertsonpet', 'robertsonpet', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1328, 'Ron', 'ron', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00');
INSERT INTO `cities` (`id`, `name`, `slug`, `state_id`, `country_id`, `record_id`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`) VALUES
(1329, 'Sadalgi', 'sadalgi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1330, 'Sagar', 'sagar', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1331, 'Sakleshpur', 'sakleshpur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1332, 'Sandur', 'sandur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1333, 'Sanivarsante', 'sanivarsante', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1334, 'Sankeshwar', 'sankeshwar', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1335, 'Sargur', 'sargur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1336, 'Saundatti', 'saundatti', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1337, 'Savanur', 'savanur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1338, 'Seram', 'seram', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1339, 'Shiggaon', 'shiggaon', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1340, 'Shikarpur', 'shikarpur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1341, 'Shimoga', 'shimoga', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1342, 'Shirhatti', 'shirhatti', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1343, 'Shorapur', 'shorapur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1344, 'Shrirangapattana', 'shrirangapattana', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1345, 'Siddapur', 'siddapur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1346, 'Sidlaghatta', 'sidlaghatta', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1347, 'Sindgi', 'sindgi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1348, 'Sindhnur', 'sindhnur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1349, 'Sira', 'sira', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1350, 'Sirsi', 'sirsi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1351, 'Siruguppa', 'siruguppa', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1352, 'Someshwar', 'someshwar', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1353, 'Somvarpet', 'somvarpet', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1354, 'Sorab', 'sorab', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1355, 'Sravana Belgola', 'sravana-belgola', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1356, 'Sringeri', 'sringeri', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1357, 'Srinivaspur', 'srinivaspur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1358, 'Sulya', 'sulya', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1359, 'Suntikoppa', 'suntikoppa', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1360, 'Talikota', 'talikota', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1361, 'Tarikere', 'tarikere', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1362, 'Tekkalakote', 'tekkalakote', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1363, 'Terdal', 'terdal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1364, 'Tiptur', 'tiptur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1365, 'Tirthahalli', 'tirthahalli', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1366, 'Tirumakudal Narsipur', 'tirumakudal-narsipur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1367, 'Tumakuru', 'tumakuru', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1368, 'Turuvekere', 'turuvekere', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1369, 'Udupi', 'udupi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1370, 'Ullal', 'ullal', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1371, 'Uttar Kannada', 'uttar-kannada', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1372, 'Vadigenhalli', 'vadigenhalli', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1373, 'Vijayapura', 'vijayapura', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1374, 'Virarajendrapet', 'virarajendrapet', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1375, 'Wadi', 'wadi', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1376, 'Yadgir', 'yadgir', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1377, 'Yelahanka', 'yelahanka', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1378, 'Yelandur', 'yelandur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1379, 'Yelbarga', 'yelbarga', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1380, 'Yellapur', 'yellapur', 16, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1381, 'Adur', 'adur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1382, 'Alappuzha', 'alappuzha', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1383, 'Aluva', 'aluva', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1384, 'Alwaye', 'alwaye', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1385, 'Angamali', 'angamali', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1386, 'Aroor', 'aroor', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1387, 'Arukutti', 'arukutti', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1388, 'Attingal', 'attingal', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1389, 'Avanoor', 'avanoor', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1390, 'Azhikkal', 'azhikkal', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1391, 'Beypore', 'beypore', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1392, 'Changanacheri', 'changanacheri', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1393, 'Chelakara', 'chelakara', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1394, 'Chengannur', 'chengannur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1395, 'Cherpulassery', 'cherpulassery', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1396, 'Cherthala', 'cherthala', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1397, 'Chetwayi', 'chetwayi', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1398, 'Chittur', 'chittur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1399, 'Cochin', 'cochin', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1400, 'Dharmadom', 'dharmadom', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1401, 'Edakkulam', 'edakkulam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1402, 'Elur', 'elur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1403, 'Erattupetta', 'erattupetta', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1404, 'Ernakulam', 'ernakulam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1405, 'Ferokh', 'ferokh', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1406, 'Guruvayur', 'guruvayur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1407, 'Idukki', 'idukki', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1408, 'Iringal', 'iringal', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1409, 'Irinjalakuda', 'irinjalakuda', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1410, 'Kadakkavoor', 'kadakkavoor', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1411, 'Kalamassery', 'kalamassery', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1412, 'Kalavoor', 'kalavoor', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1413, 'Kalpetta', 'kalpetta', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1414, 'Kanhangad', 'kanhangad', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1415, 'Kannavam', 'kannavam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1416, 'Kannur', 'kannur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1417, 'Kasaragod', 'kasaragod', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1418, 'Kattanam', 'kattanam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1419, 'Kayankulam', 'kayankulam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1420, 'Kizhake Chalakudi', 'kizhake-chalakudi', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1421, 'Kodungallur', 'kodungallur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1422, 'Kollam', 'kollam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1423, 'Kotamangalam', 'kotamangalam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1424, 'Kottayam', 'kottayam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1425, 'Kovalam', 'kovalam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1426, 'Kozhikode', 'kozhikode', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1427, 'Kumbalam', 'kumbalam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1428, 'Kunnamangalam', 'kunnamangalam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1429, 'Kunnamkulam', 'kunnamkulam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1430, 'Kunnumma', 'kunnumma', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1431, 'Kutiatodu', 'kutiatodu', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1432, 'Kuttampuzha', 'kuttampuzha', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1433, 'Lalam', 'lalam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1434, 'Mahe', 'mahe', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1435, 'Malappuram', 'malappuram', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1436, 'Manjeri', 'manjeri', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1437, 'Manjeshwaram', 'manjeshwaram', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1438, 'Mannarakkat', 'mannarakkat', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1439, 'Marayur', 'marayur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1440, 'Mattanur', 'mattanur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1441, 'Mavelikara', 'mavelikara', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1442, 'Mavoor', 'mavoor', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1443, 'Muluppilagadu', 'muluppilagadu', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1444, 'Munnar', 'munnar', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1445, 'Muvattupula', 'muvattupula', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1446, 'Muvattupuzha', 'muvattupuzha', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1447, 'Nadapuram', 'nadapuram', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1448, 'Naduvannur', 'naduvannur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1449, 'Nedumangad', 'nedumangad', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1450, 'Neyyattinkara', 'neyyattinkara', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1451, 'Nileshwar', 'nileshwar', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1452, 'Ottappalam', 'ottappalam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1453, 'Palackattumala', 'palackattumala', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1454, 'Palakkad district', 'palakkad-district', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1455, 'Palghat', 'palghat', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1456, 'Panamaram', 'panamaram', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1457, 'Pappinissheri', 'pappinissheri', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1458, 'Paravur Tekkumbhagam', 'paravur-tekkumbhagam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1459, 'Pariyapuram', 'pariyapuram', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1460, 'Pathanamthitta', 'pathanamthitta', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1461, 'Pattanamtitta', 'pattanamtitta', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1462, 'Payyanur', 'payyanur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1463, 'Perinthalmanna', 'perinthalmanna', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1464, 'Perumbavoor', 'perumbavoor', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1465, 'Perumpavur', 'perumpavur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1466, 'Perya', 'perya', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1467, 'Piravam', 'piravam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1468, 'Ponmana', 'ponmana', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1469, 'Ponnani', 'ponnani', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1470, 'Punalur', 'punalur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1471, 'Ramamangalam', 'ramamangalam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1472, 'Sharanur', 'sharanur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1473, 'Shertallai', 'shertallai', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1474, 'Taliparamba', 'taliparamba', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1475, 'Thalassery', 'thalassery', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1476, 'Thanniyam', 'thanniyam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1477, 'Thiruvananthapuram', 'thiruvananthapuram', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1478, 'Thrissur', 'thrissur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1479, 'Tirur', 'tirur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1480, 'Tiruvalla', 'tiruvalla', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1481, 'Vaikam', 'vaikam', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1482, 'Varkala', 'varkala', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1483, 'Vatakara', 'vatakara', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1484, 'Vayalar', 'vayalar', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1485, 'Vettur', 'vettur', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1486, 'Wayanad', 'wayanad', 17, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1487, 'Kargil', 'kargil', 18, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1488, 'Leh', 'leh', 18, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1489, 'Kavaratti', 'kavaratti', 19, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1490, 'Lakshadweep', 'lakshadweep', 19, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1491, 'Agar', 'agar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1492, 'Ajaigarh', 'ajaigarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1493, 'Akodia', 'akodia', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1494, 'Alampur', 'alampur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1495, 'Alirajpur', 'alirajpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1496, 'Alot', 'alot', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1497, 'Amanganj', 'amanganj', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1498, 'Amarkantak', 'amarkantak', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1499, 'Amarpatan', 'amarpatan', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1500, 'Amarwara', 'amarwara', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1501, 'Ambah', 'ambah', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1502, 'Amla', 'amla', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1503, 'Anjad', 'anjad', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1504, 'Antri', 'antri', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1505, 'Anuppur', 'anuppur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1506, 'Aron', 'aron', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1507, 'Ashoknagar', 'ashoknagar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1508, 'Ashta', 'ashta', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1509, 'Babai', 'babai', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1510, 'Badarwas', 'badarwas', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1511, 'Badnawar', 'badnawar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1512, 'Bagh', 'bagh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1513, 'Bagli', 'bagli', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1514, 'Baihar', 'baihar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1515, 'Bakshwaha', 'bakshwaha', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1516, 'Balaghat', 'balaghat', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1517, 'Baldeogarh', 'baldeogarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1518, 'Bamna', 'bamna', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1519, 'Bamor Kalan', 'bamor-kalan', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1520, 'Bamora', 'bamora', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1521, 'Banda', 'banda', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1522, 'Barela', 'barela', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1523, 'Barghat', 'barghat', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1524, 'Bargi', 'bargi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1525, 'Barhi', 'barhi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1526, 'Barwani', 'barwani', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1527, 'Basoda', 'basoda', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1528, 'Begamganj', 'begamganj', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1529, 'Beohari', 'beohari', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1530, 'Berasia', 'berasia', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1531, 'Betma', 'betma', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1532, 'Betul', 'betul', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1533, 'Betul Bazar', 'betul-bazar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1534, 'Bhabhra', 'bhabhra', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1535, 'Bhainsdehi', 'bhainsdehi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1536, 'Bhander', 'bhander', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1537, 'Bhanpura', 'bhanpura', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1538, 'Bhawaniganj', 'bhawaniganj', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1539, 'Bhikangaon', 'bhikangaon', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1540, 'Bhind', 'bhind', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1541, 'Bhitarwar', 'bhitarwar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1542, 'Bhopal', 'bhopal', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1543, 'Biaora', 'biaora', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1544, 'Bijawar', 'bijawar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1545, 'Bijrauni', 'bijrauni', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1546, 'Bodri', 'bodri', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1547, 'Burhanpur', 'burhanpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1548, 'Burhar', 'burhar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1549, 'Chanderi', 'chanderi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1550, 'Chandia', 'chandia', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1551, 'Chandla', 'chandla', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1552, 'Chhatarpur', 'chhatarpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1553, 'Chhindwara', 'chhindwara', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1554, 'Chichli', 'chichli', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1555, 'Chorhat', 'chorhat', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1556, 'Daboh', 'daboh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1557, 'Dabra', 'dabra', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1558, 'Damoh', 'damoh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1559, 'Datia', 'datia', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1560, 'Deori Khas', 'deori-khas', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1561, 'Depalpur', 'depalpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1562, 'Dewas', 'dewas', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1563, 'Dhamnod', 'dhamnod', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1564, 'Dhana', 'dhana', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1565, 'Dhar', 'dhar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1566, 'Dharampuri', 'dharampuri', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1567, 'Dindori', 'dindori', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1568, 'Etawa', 'etawa', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1569, 'Gadarwara', 'gadarwara', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1570, 'Garha Brahman', 'garha-brahman', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1571, 'Garhakota', 'garhakota', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1572, 'Gautampura', 'gautampura', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1573, 'Ghansor', 'ghansor', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1574, 'Gogapur', 'gogapur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1575, 'Gohadi', 'gohadi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1576, 'Govindgarh', 'govindgarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1577, 'Guna', 'guna', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1578, 'Gurh', 'gurh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1579, 'Gwalior', 'gwalior', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1580, 'Harda', 'harda', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1581, 'Harda Khas', 'harda-khas', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1582, 'Harpalpur', 'harpalpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1583, 'Harrai', 'harrai', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1584, 'Harsud', 'harsud', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1585, 'Hatod', 'hatod', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1586, 'Hatta', 'hatta', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1587, 'Hindoria', 'hindoria', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1588, 'Hoshangabad', 'hoshangabad', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1589, 'Iawar', 'iawar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1590, 'Ichhawar', 'ichhawar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1591, 'Iklehra', 'iklehra', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1592, 'Indore', 'indore', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1593, 'Isagarh', 'isagarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1594, 'Itarsi', 'itarsi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1595, 'Jabalpur', 'jabalpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1596, 'Jaisinghnagar', 'jaisinghnagar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1597, 'Jaithari', 'jaithari', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1598, 'Jamai', 'jamai', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1599, 'Jaora', 'jaora', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1600, 'Jatara', 'jatara', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1601, 'Jawad', 'jawad', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1602, 'Jhabua', 'jhabua', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1603, 'Jiran', 'jiran', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1604, 'Jobat', 'jobat', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1605, 'Kailaras', 'kailaras', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1606, 'Kaimori', 'kaimori', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1607, 'Kannod', 'kannod', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1608, 'Kareli', 'kareli', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1609, 'Karera', 'karera', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1610, 'Karrapur', 'karrapur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1611, 'Kasrawad', 'kasrawad', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1612, 'Katangi', 'katangi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1613, 'Katni', 'katni', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1614, 'Khachrod', 'khachrod', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1615, 'Khailar', 'khailar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1616, 'Khajuraho Group of Monuments', 'khajuraho-group-of-monuments', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1617, 'Khamaria', 'khamaria', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1618, 'Khandwa', 'khandwa', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1619, 'Khargapur', 'khargapur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1620, 'Khargone', 'khargone', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1621, 'Khategaon', 'khategaon', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1622, 'Khilchipur', 'khilchipur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1623, 'Khirkiyan', 'khirkiyan', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1624, 'Khujner', 'khujner', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1625, 'Khurai', 'khurai', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1626, 'Kolaras', 'kolaras', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1627, 'Korwai', 'korwai', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1628, 'Kotar', 'kotar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1629, 'Kothi', 'kothi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1630, 'Kotma', 'kotma', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1631, 'Kotwa', 'kotwa', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1632, 'Kukshi', 'kukshi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1633, 'Kumbhraj', 'kumbhraj', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1634, 'Lahar', 'lahar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1635, 'Lakhnadon', 'lakhnadon', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1636, 'Leteri', 'leteri', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1637, 'Lodhikheda', 'lodhikheda', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1638, 'Machalpur', 'machalpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1639, 'Madhogarh', 'madhogarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1640, 'Maheshwar', 'maheshwar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1641, 'Mahgawan', 'mahgawan', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1642, 'Maihar', 'maihar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1643, 'Majholi', 'majholi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1644, 'Maksi', 'maksi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1645, 'Malhargarh', 'malhargarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1646, 'Manasa', 'manasa', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1647, 'Manawar', 'manawar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1648, 'Mandideep', 'mandideep', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1649, 'Mandla', 'mandla', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1650, 'Mandleshwar', 'mandleshwar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1651, 'Mandsaur', 'mandsaur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1652, 'Mangawan', 'mangawan', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1653, 'Manpur', 'manpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1654, 'Mau', 'mau', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1655, 'Mauganj', 'mauganj', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1656, 'Mihona', 'mihona', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1657, 'Mohgaon', 'mohgaon', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1658, 'Morar', 'morar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1659, 'Morena', 'morena', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1660, 'Multai', 'multai', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1661, 'Mundi', 'mundi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1662, 'Mungaoli', 'mungaoli', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1663, 'Murwara', 'murwara', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1664, 'Nagda', 'nagda', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1665, 'Nagod', 'nagod', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1666, 'Naigarhi', 'naigarhi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1667, 'Nainpur', 'nainpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1668, 'Namli', 'namli', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1669, 'Naraini', 'naraini', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1670, 'Narsimhapur', 'narsimhapur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1671, 'Narsinghgarh', 'narsinghgarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1672, 'Narwar', 'narwar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1673, 'Nasrullahganj', 'nasrullahganj', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1674, 'Neemuch', 'neemuch', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1675, 'Nepanagar', 'nepanagar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1676, 'Orchha', 'orchha', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1677, 'Pachmarhi', 'pachmarhi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1678, 'Palera', 'palera', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1679, 'Pali', 'pali', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1680, 'Panagar', 'panagar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1681, 'Panara', 'panara', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1682, 'Pandhana', 'pandhana', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1683, 'Pandhurna', 'pandhurna', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1684, 'Panna', 'panna', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1685, 'Pansemal', 'pansemal', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1686, 'Parasia', 'parasia', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1687, 'Patharia', 'patharia', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1688, 'Pawai', 'pawai', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1689, 'Petlawad', 'petlawad', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1690, 'Piploda', 'piploda', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1691, 'Pithampur', 'pithampur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1692, 'Porsa', 'porsa', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1693, 'Punasa', 'punasa', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1694, 'Raghogarh', 'raghogarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1695, 'Rahatgarh', 'rahatgarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1696, 'Raisen', 'raisen', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1697, 'Rajnagar', 'rajnagar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1698, 'Rajpur', 'rajpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1699, 'Rampura', 'rampura', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1700, 'Ranapur', 'ranapur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1701, 'Ratangarh', 'ratangarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1702, 'Ratlam', 'ratlam', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1703, 'Rehli', 'rehli', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1704, 'Rehti', 'rehti', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1705, 'Rewa', 'rewa', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1706, 'Sabalgarh', 'sabalgarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1707, 'Sailana', 'sailana', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1708, 'Sanawad', 'sanawad', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1709, 'Sanchi', 'sanchi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1710, 'Sanwer', 'sanwer', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1711, 'Sarangpur', 'sarangpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1712, 'Satna', 'satna', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1713, 'Satwas', 'satwas', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1714, 'Saugor', 'saugor', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1715, 'Sausar', 'sausar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1716, 'Sehore', 'sehore', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1717, 'Sendhwa', 'sendhwa', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1718, 'Seondha', 'seondha', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1719, 'Seoni Malwa', 'seoni-malwa', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1720, 'Shahdol', 'shahdol', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1721, 'Shahgarh', 'shahgarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1722, 'Shahpura', 'shahpura', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1723, 'Shajapur', 'shajapur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1724, 'Shamgarh', 'shamgarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1725, 'Sheopur', 'sheopur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1726, 'Shivpuri', 'shivpuri', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1727, 'Shujalpur', 'shujalpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1728, 'Sidhi', 'sidhi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1729, 'Sihora', 'sihora', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1730, 'Simaria', 'simaria', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1731, 'Singoli', 'singoli', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1732, 'Singrauli', 'singrauli', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1733, 'Sironj', 'sironj', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1734, 'Sitamau', 'sitamau', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1735, 'Sohagi', 'sohagi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1736, 'Sohagpur', 'sohagpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1737, 'Sultanpur', 'sultanpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1738, 'Susner', 'susner', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1739, 'Tal', 'tal', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1740, 'Talen', 'talen', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1741, 'Tarana', 'tarana', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1742, 'Tekanpur', 'tekanpur', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1743, 'Tendukheda', 'tendukheda', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1744, 'Teonthar', 'teonthar', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1745, 'Thandla', 'thandla', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1746, 'Tikamgarh', 'tikamgarh', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1747, 'Tirodi', 'tirodi', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1748, 'Udaipura', 'udaipura', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1749, 'Ujjain', 'ujjain', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1750, 'Ukwa', 'ukwa', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1751, 'Umaria', 'umaria', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1752, 'Umri', 'umri', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1753, 'Unhel', 'unhel', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1754, 'Vidisha', 'vidisha', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1755, 'Waraseoni', 'waraseoni', 20, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1756, 'Achalpur', 'achalpur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1757, 'Adawad', 'adawad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1758, 'Agar Panchaitan', 'agar-panchaitan', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1759, 'Aheri', 'aheri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1760, 'Ahmadpur', 'ahmadpur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1761, 'Ahmednagar', 'ahmednagar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1762, 'Airoli', 'airoli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1763, 'Ajara', 'ajara', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1764, 'Akalkot', 'akalkot', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1765, 'Akluj', 'akluj', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1766, 'Akola', 'akola', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00');
INSERT INTO `cities` (`id`, `name`, `slug`, `state_id`, `country_id`, `record_id`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`) VALUES
(1767, 'Akolner', 'akolner', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1768, 'Akot', 'akot', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1769, 'Akrani', 'akrani', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1770, 'Alandi', 'alandi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1771, 'Ale', 'ale', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1772, 'Alibag', 'alibag', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1773, 'Alkuti', 'alkuti', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1774, 'Allapalli', 'allapalli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1775, 'Amalner', 'amalner', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1776, 'Amarnath', 'amarnath', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1777, 'Ambad', 'ambad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1778, 'Ambajogai', 'ambajogai', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1779, 'Ambegaon', 'ambegaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1780, 'Ambernath', 'ambernath', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1781, 'Amgaon', 'amgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1782, 'Amravati', 'amravati', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1783, 'Andheri', 'andheri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1784, 'Andura', 'andura', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1785, 'Anjangaon', 'anjangaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1786, 'Anjarle', 'anjarle', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1787, 'Anshing', 'anshing', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1788, 'Arag', 'arag', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1789, 'Arangaon', 'arangaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1790, 'Ardhapur', 'ardhapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1791, 'Argaon', 'argaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1792, 'Artist Village', 'artist-village', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1793, 'Arvi', 'arvi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1794, 'Ashti', 'ashti', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1795, 'Asoda', 'asoda', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1796, 'Assaye', 'assaye', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1797, 'Astagaon', 'astagaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1798, 'Aundh Satara', 'aundh-satara', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1799, 'Ausa', 'ausa', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1800, 'Badlapur', 'badlapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1801, 'Badnapur', 'badnapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1802, 'Badnera', 'badnera', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1803, 'Bagewadi', 'bagewadi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1804, 'Balapur', 'balapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1805, 'Balapur Akola district', 'balapur-akola-district', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1806, 'Ballalpur', 'ballalpur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1807, 'Ballard Estate', 'ballard-estate', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1808, 'Ballarpur', 'ballarpur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1809, 'Banda Maharashtra', 'banda-maharashtra', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1810, 'Bandra', 'bandra', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1811, 'Baner', 'baner', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1812, 'Bankot', 'bankot', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1813, 'Baramati', 'baramati', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1814, 'Barsi', 'barsi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1815, 'Basmat', 'basmat', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1816, 'Bavdhan', 'bavdhan', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1817, 'Bawanbir', 'bawanbir', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1818, 'Beed', 'beed', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1819, 'Bhadgaon Maharashtra', 'bhadgaon-maharashtra', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1820, 'Bhandara', 'bhandara', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1821, 'Bhandardara', 'bhandardara', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1822, 'Bhandup', 'bhandup', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1823, 'Bhayandar', 'bhayandar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1824, 'Bhigvan', 'bhigvan', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1825, 'Bhiwandi', 'bhiwandi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1826, 'Bhiwapur', 'bhiwapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1827, 'Bhokar', 'bhokar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1828, 'Bhokardan', 'bhokardan', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1829, 'Bhoom', 'bhoom', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1830, 'Bhor', 'bhor', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1831, 'Bhudgaon', 'bhudgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1832, 'Bhugaon', 'bhugaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1833, 'Bhusaval', 'bhusaval', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1834, 'Bijur', 'bijur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1835, 'Bilashi', 'bilashi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1836, 'Biloli', 'biloli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1837, 'Boisar', 'boisar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1838, 'Borgaon Manju', 'borgaon-manju', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1839, 'Borivali', 'borivali', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1840, 'Brahmapuri', 'brahmapuri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1841, 'Breach Candy', 'breach-candy', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1842, 'Buldana', 'buldana', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1843, 'Byculla', 'byculla', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1844, 'Chakan', 'chakan', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1845, 'Chakur', 'chakur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1846, 'Chalisgaon', 'chalisgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1847, 'Chanda', 'chanda', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1848, 'Chandgad', 'chandgad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1849, 'Chandor', 'chandor', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1850, 'Chandrapur', 'chandrapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1851, 'Chandur', 'chandur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1852, 'Chandur Bazar', 'chandur-bazar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1853, 'Chausala', 'chausala', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1854, 'Chembur', 'chembur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1855, 'Chicholi', 'chicholi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1856, 'Chichondi Patil', 'chichondi-patil', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1857, 'Chikhli (Buldhana)', 'chikhli-buldhana', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1858, 'Chikhli (Jalna)', 'chikhli-jalna', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1859, 'Chimur', 'chimur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1860, 'Chinchani', 'chinchani', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1861, 'Chinchpokli', 'chinchpokli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1862, 'Chiplun', 'chiplun', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1863, 'Chopda', 'chopda', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1864, 'Colaba', 'colaba', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1865, 'Dabhol', 'dabhol', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1866, 'Daddi', 'daddi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1867, 'Dahanu', 'dahanu', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1868, 'Dahivel', 'dahivel', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1869, 'Dapoli', 'dapoli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1870, 'Darwha', 'darwha', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1871, 'Daryapur', 'daryapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1872, 'Dattapur', 'dattapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1873, 'Daulatabad', 'daulatabad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1874, 'Daund', 'daund', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1875, 'Deccan Gymkhana', 'deccan-gymkhana', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1876, 'Deglur', 'deglur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1877, 'Dehu', 'dehu', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1878, 'Deolali', 'deolali', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1879, 'Deolapar', 'deolapar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1880, 'Deoni', 'deoni', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1881, 'Deulgaon Raja', 'deulgaon-raja', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1882, 'Devrukh', 'devrukh', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1883, 'Dharangaon', 'dharangaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1884, 'Dharavi', 'dharavi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1885, 'Dharmabad', 'dharmabad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1886, 'Dharur', 'dharur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1887, 'Dhawalpuri', 'dhawalpuri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1888, 'Dhule', 'dhule', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1889, 'Dhulia', 'dhulia', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1890, 'Dighori', 'dighori', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1891, 'Diglur', 'diglur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1892, 'Digras', 'digras', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1893, 'Dindori Maharashtra', 'dindori-maharashtra', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1894, 'Diveagar', 'diveagar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1895, 'Dombivli', 'dombivli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1896, 'Dondaicha', 'dondaicha', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1897, 'Dongri', 'dongri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1898, 'Dudhani', 'dudhani', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1899, 'Durgapur', 'durgapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1900, 'Durgapur Chandrapur', 'durgapur-chandrapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1901, 'Erandol', 'erandol', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1902, 'Faizpur', 'faizpur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1903, 'Fort', 'fort', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1904, 'Gadchiroli', 'gadchiroli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1905, 'Gadhinglaj', 'gadhinglaj', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1906, 'Gangakher', 'gangakher', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1907, 'Gangapur', 'gangapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1908, 'Ganpatipule', 'ganpatipule', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1909, 'Gevrai', 'gevrai', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1910, 'Ghargaon', 'ghargaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1911, 'Ghatanji', 'ghatanji', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1912, 'Ghatkopar', 'ghatkopar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1913, 'Ghoti Budrukh', 'ghoti-budrukh', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1914, 'Ghugus', 'ghugus', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1915, 'Girgaon', 'girgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1916, 'Gondia', 'gondia', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1917, 'Gorai', 'gorai', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1918, 'Goregaon', 'goregaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1919, 'Guhagar', 'guhagar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1920, 'Hadapsar Pune', 'hadapsar-pune', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1921, 'Hadgaon', 'hadgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1922, 'Halkarni', 'halkarni', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1923, 'Harangul', 'harangul', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1924, 'Harnai', 'harnai', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1925, 'Helwak', 'helwak', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1926, 'Hinganghat', 'hinganghat', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1927, 'Hingoli', 'hingoli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1928, 'Hirapur', 'hirapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1929, 'Hirapur Hamesha', 'hirapur-hamesha', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1930, 'Hotgi', 'hotgi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1931, 'Ichalkaranji', 'ichalkaranji', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1932, 'Igatpuri', 'igatpuri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1933, 'Indapur', 'indapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1934, 'Jaisingpur', 'jaisingpur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1935, 'Jaitapur', 'jaitapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1936, 'Jakhangaon', 'jakhangaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1937, 'Jalgaon', 'jalgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1938, 'Jalgaon Jamod', 'jalgaon-jamod', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1939, 'Jalkot', 'jalkot', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1940, 'Jalna', 'jalna', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1941, 'Jamkhed', 'jamkhed', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1942, 'Jamod', 'jamod', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1943, 'Janephal', 'janephal', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1944, 'Jaoli', 'jaoli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1945, 'Jat Sangli', 'jat-sangli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1946, 'Jategaon', 'jategaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1947, 'Jawhar', 'jawhar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1948, 'Jaysingpur', 'jaysingpur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1949, 'Jejuri', 'jejuri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1950, 'Jintur', 'jintur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1951, 'Jogeshwari', 'jogeshwari', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1952, 'Juhu', 'juhu', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1953, 'Junnar', 'junnar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1954, 'Kachurwahi', 'kachurwahi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1955, 'Kadegaon', 'kadegaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1956, 'Kadus', 'kadus', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1957, 'Kagal', 'kagal', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1958, 'Kaij', 'kaij', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1959, 'Kalamb', 'kalamb', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1960, 'Kalamb Osmanabad', 'kalamb-osmanabad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1961, 'Kalamboli', 'kalamboli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1962, 'Kalamnuri', 'kalamnuri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1963, 'Kalas', 'kalas', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1964, 'Kali(DK)', 'kalidk', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1965, 'Kalmeshwar', 'kalmeshwar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1966, 'Kalundri', 'kalundri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1967, 'Kalyan', 'kalyan', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1968, 'Kalyani Nagar', 'kalyani-nagar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1969, 'Kamargaon', 'kamargaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1970, 'Kamatgi', 'kamatgi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1971, 'Kamptee', 'kamptee', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1972, 'Kandri', 'kandri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1973, 'Kankauli', 'kankauli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1974, 'Kankavli', 'kankavli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1975, 'Kannad', 'kannad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1976, 'Karad', 'karad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1977, 'Karajagi', 'karajagi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1978, 'Karanja', 'karanja', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1979, 'Karanja Lad', 'karanja-lad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1980, 'Karjat', 'karjat', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1981, 'Karkamb', 'karkamb', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1982, 'Karmala', 'karmala', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(1983, 'Kasara', 'kasara', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2001, 'Kasoda', 'kasoda', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2002, 'Kati', 'kati', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2003, 'Katol', 'katol', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2004, 'Katral', 'katral', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2005, 'Khadki', 'khadki', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2006, 'Khalapur', 'khalapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2007, 'Khallar', 'khallar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2008, 'Khamgaon', 'khamgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2009, 'Khandala', 'khandala', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2010, 'Khangaon', 'khangaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2011, 'Khapa', 'khapa', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2012, 'Kharakvasla', 'kharakvasla', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2013, 'Kharda', 'kharda', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2014, 'Kharghar', 'kharghar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2015, 'Kharsundi', 'kharsundi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2016, 'Khed', 'khed', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2017, 'Khetia', 'khetia', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2018, 'Khoni', 'khoni', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2019, 'Khopoli', 'khopoli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2020, 'Khuldabad', 'khuldabad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2021, 'Kinwat', 'kinwat', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2022, 'Kodoli', 'kodoli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2023, 'Kolhapur', 'kolhapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2024, 'Kondalwadi', 'kondalwadi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2025, 'Kondhali', 'kondhali', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2026, 'Kopar Khairane', 'kopar-khairane', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2027, 'Kopargaon', 'kopargaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2028, 'Kopela', 'kopela', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2029, 'Koradi', 'koradi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2030, 'Koregaon', 'koregaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2031, 'Koynanagar', 'koynanagar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2032, 'Kudal', 'kudal', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2033, 'Kuhi', 'kuhi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2034, 'Kurandvad', 'kurandvad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2035, 'Kurankhed', 'kurankhed', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2036, 'Kurduvadi', 'kurduvadi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2037, 'Kusumba', 'kusumba', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2038, 'Lakhandur', 'lakhandur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2039, 'Lanja', 'lanja', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2040, 'Lasalgaon', 'lasalgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2041, 'Latur', 'latur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2042, 'Lavasa', 'lavasa', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2043, 'Lohogaon', 'lohogaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2044, 'Lonar', 'lonar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2045, 'Lonavla', 'lonavla', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2046, 'Mahabaleshwar', 'mahabaleshwar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2047, 'Mahad', 'mahad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2048, 'Mahape', 'mahape', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2049, 'Mahim', 'mahim', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2050, 'Maindargi', 'maindargi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2051, 'Majalgaon', 'majalgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2052, 'Makhjan', 'makhjan', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2053, 'Malabar Hill', 'malabar-hill', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2054, 'Malad', 'malad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2055, 'Malegaon', 'malegaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2056, 'Malkapur', 'malkapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2057, 'Malvan', 'malvan', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2058, 'Manchar', 'manchar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2059, 'Mandangad', 'mandangad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2060, 'Mandhal', 'mandhal', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2061, 'Mandwa', 'mandwa', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2062, 'Mangaon', 'mangaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2063, 'Mangrul Pir', 'mangrul-pir', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2064, 'Manjlegaon', 'manjlegaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2065, 'Mankeshwar', 'mankeshwar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2066, 'Mankhurd', 'mankhurd', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2067, 'Manmad', 'manmad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2068, 'Manor', 'manor', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2069, 'Mansar', 'mansar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2070, 'Manwat', 'manwat', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2071, 'Maregaon', 'maregaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2072, 'Mastiholi', 'mastiholi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2073, 'Masur India', 'masur-india', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2074, 'Matheran', 'matheran', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2075, 'Matunga', 'matunga', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2076, 'Mazagaon', 'mazagaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2077, 'Mehekar', 'mehekar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2078, 'Mehergaon', 'mehergaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2079, 'Mehkar', 'mehkar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2080, 'Mhasla', 'mhasla', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2081, 'Mhasvad', 'mhasvad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2082, 'Miraj', 'miraj', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2083, 'Mohadi', 'mohadi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2084, 'Mohol', 'mohol', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2085, 'Mohpa', 'mohpa', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2086, 'Mokhada taluka', 'mokhada-taluka', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2087, 'Mora Maharashtra', 'mora-maharashtra', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2088, 'Moram', 'moram', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2089, 'Morsi', 'morsi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2090, 'Mowad', 'mowad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2091, 'Mudkhed', 'mudkhed', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2092, 'Mukher', 'mukher', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2093, 'Mul', 'mul', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2094, 'Mulher', 'mulher', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2095, 'Mulund', 'mulund', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2096, 'Mumbai', 'mumbai', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2097, 'Mumbai Suburban', 'mumbai-suburban', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2098, 'Murbad', 'murbad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2099, 'Murgud', 'murgud', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2100, 'Murtajapur', 'murtajapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2101, 'Murud (Raigad)', 'murud-raigad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2102, 'Murud (Ratnagiri)', 'murud-ratnagiri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2103, 'Murum', 'murum', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2104, 'Nadgaon', 'nadgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2105, 'Nagapur', 'nagapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2106, 'Nagothana', 'nagothana', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2107, 'Nagpur', 'nagpur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2108, 'Nagpur Division', 'nagpur-division', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2109, 'Nala Sopara', 'nala-sopara', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2110, 'Naldurg', 'naldurg', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2111, 'Nalegaon', 'nalegaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2112, 'Nampur', 'nampur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2113, 'Nanded', 'nanded', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2114, 'Nandgaon', 'nandgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2115, 'Nandnee', 'nandnee', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2116, 'Nandura', 'nandura', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2117, 'Nandura Buzurg', 'nandura-buzurg', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2118, 'Nandurbar', 'nandurbar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2119, 'Narayangaon', 'narayangaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2120, 'Nardana', 'nardana', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2121, 'Nariman Point', 'nariman-point', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2122, 'Narkhed', 'narkhed', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2123, 'Nashik', 'nashik', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2124, 'Nashik Division', 'nashik-division', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2125, 'Navapur', 'navapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2126, 'Navi Mumbai', 'navi-mumbai', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2127, 'Neral', 'neral', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2128, 'Nerur', 'nerur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2129, 'Nevasa', 'nevasa', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2130, 'Nighoj', 'nighoj', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2131, 'Nilanga', 'nilanga', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2132, 'Nipani', 'nipani', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2133, 'Niphad', 'niphad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2134, 'Nira Narsingpur', 'nira-narsingpur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2135, 'Osmanabad', 'osmanabad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2136, 'Ozar', 'ozar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2137, 'Pabal', 'pabal', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2138, 'Pachora', 'pachora', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2139, 'Pahur Maharashtra', 'pahur-maharashtra', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2140, 'Paithan', 'paithan', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2141, 'Palghar', 'palghar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2142, 'Pali Raigad', 'pali-raigad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2143, 'Palso', 'palso', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2144, 'Panchgani', 'panchgani', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2145, 'Pandharpur', 'pandharpur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2146, 'Pandhurli', 'pandhurli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2147, 'Panhala', 'panhala', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2148, 'Panvel', 'panvel', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2149, 'Parbhani', 'parbhani', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2150, 'Parel', 'parel', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2151, 'Parli Vaijnath', 'parli-vaijnath', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2152, 'Parner', 'parner', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2153, 'Parola', 'parola', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2154, 'Parseoni', 'parseoni', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2155, 'Partur', 'partur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2156, 'Pathardi', 'pathardi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2157, 'Pathri', 'pathri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2158, 'Patur', 'patur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2159, 'Paturda', 'paturda', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2160, 'Paud', 'paud', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2161, 'Pauni', 'pauni', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2162, 'Pawni', 'pawni', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2163, 'Pedgaon', 'pedgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2164, 'Peint', 'peint', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2165, 'Pen', 'pen', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2166, 'Phaltan', 'phaltan', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2167, 'Phulambri', 'phulambri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2168, 'Piliv', 'piliv', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2169, 'Pimpalgaon Baswant', 'pimpalgaon-baswant', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2170, 'Pimpalgaon Raja', 'pimpalgaon-raja', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2171, 'Pimpri', 'pimpri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2172, 'Pimpri-Chinchwad', 'pimpri-chinchwad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2173, 'Pipri', 'pipri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2174, 'Powai', 'powai', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2175, 'Prabhadevi', 'prabhadevi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2176, 'Prakasha', 'prakasha', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2177, 'Pulgaon', 'pulgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2178, 'Pune', 'pune', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2179, 'Pune Division', 'pune-division', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2180, 'Puntamba', 'puntamba', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2181, 'Pural', 'pural', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2182, 'Purna', 'purna', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2183, 'Pusad', 'pusad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2184, 'Radhanagari', 'radhanagari', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2185, 'Rahata', 'rahata', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2186, 'Rahimatpur', 'rahimatpur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2187, 'Rahuri', 'rahuri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2188, 'Raireshwar', 'raireshwar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2189, 'Rajapur', 'rajapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2190, 'Rajgurunagar', 'rajgurunagar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2191, 'Rajur', 'rajur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2192, 'Rajura', 'rajura', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2193, 'Ralegaon', 'ralegaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2194, 'Ramewadi', 'ramewadi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2195, 'Ramtek', 'ramtek', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2196, 'Ratnagiri', 'ratnagiri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2197, 'Raver', 'raver', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2198, 'Renapur', 'renapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2199, 'Renavi', 'renavi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2200, 'Revadanda', 'revadanda', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2201, 'Revdanda', 'revdanda', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2202, 'Risod', 'risod', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2203, 'Sailu', 'sailu', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2204, 'Sakol', 'sakol', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2205, 'Sakoli', 'sakoli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2206, 'Sakri', 'sakri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2207, 'Samudrapur', 'samudrapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2208, 'Sangameshwar', 'sangameshwar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2209, 'Sangamner', 'sangamner', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2210, 'Sangli', 'sangli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2211, 'Sangola', 'sangola', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2212, 'Sangrampur Maharashtra', 'sangrampur-maharashtra', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2213, 'Saoli', 'saoli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2214, 'Saoner', 'saoner', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2215, 'Sarangkheda', 'sarangkheda', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2216, 'Saswad', 'saswad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2217, 'Satana', 'satana', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2218, 'Satara', 'satara', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2219, 'Satara Division', 'satara-division', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2220, 'Satpati', 'satpati', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2221, 'Savantvadi', 'savantvadi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00');
INSERT INTO `cities` (`id`, `name`, `slug`, `state_id`, `country_id`, `record_id`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`) VALUES
(2222, 'Savda', 'savda', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2223, 'Savlaj', 'savlaj', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2224, 'Sawantvadi', 'sawantvadi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2225, 'Selu', 'selu', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2226, 'Sevagram', 'sevagram', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2227, 'Sewri', 'sewri', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2228, 'Shahada', 'shahada', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2229, 'Shahapur', 'shahapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2230, 'Shedbal', 'shedbal', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2231, 'Shegaon', 'shegaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2232, 'Shevgaon', 'shevgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2233, 'Shikrapur', 'shikrapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2234, 'Shiraguppi', 'shiraguppi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2235, 'Shirala', 'shirala', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2236, 'Shirdi', 'shirdi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2237, 'Shirgaon', 'shirgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2238, 'Shirol', 'shirol', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2239, 'Shirpur', 'shirpur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2240, 'Shirud', 'shirud', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2241, 'Shirwal', 'shirwal', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2242, 'Shivaji Nagar', 'shivaji-nagar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2243, 'Shrigonda', 'shrigonda', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2244, 'Sillod', 'sillod', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2245, 'Sindewahi', 'sindewahi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2246, 'Sindhudurg', 'sindhudurg', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2247, 'Sindi', 'sindi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2248, 'Sindkheda', 'sindkheda', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2249, 'Sinnar', 'sinnar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2250, 'Sion Mumbai', 'sion-mumbai', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2251, 'Sironcha', 'sironcha', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2252, 'Sirur', 'sirur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2253, 'Sivala East Godavari district', 'sivala-east-godavari-district', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2254, 'Solapur', 'solapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2255, 'Sonala', 'sonala', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2256, 'Sonegaon', 'sonegaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2257, 'Songir', 'songir', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2258, 'Sonvad', 'sonvad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2259, 'Soygaon', 'soygaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2260, 'Srivardhan', 'srivardhan', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2261, 'Surgana', 'surgana', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2262, 'Taklibhan', 'taklibhan', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2263, 'Talbid', 'talbid', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2264, 'Talegaon Dabhade', 'talegaon-dabhade', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2265, 'Talegaon Dhamdhere', 'talegaon-dhamdhere', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2266, 'Taloda', 'taloda', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2267, 'Talode', 'talode', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2268, 'Tarapur', 'tarapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2269, 'Tardeo', 'tardeo', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2270, 'Tasgaon', 'tasgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2271, 'Telhara', 'telhara', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2272, 'Thalner', 'thalner', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2273, 'Thane', 'thane', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2274, 'Trimbak', 'trimbak', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2275, 'Trombay', 'trombay', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2276, 'Tuljapur', 'tuljapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2277, 'Tumsar', 'tumsar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2278, 'Udgir', 'udgir', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2279, 'Ulhasnagar', 'ulhasnagar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2280, 'Umarga', 'umarga', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2281, 'Umarkhed', 'umarkhed', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2282, 'Umred', 'umred', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2283, 'Uran', 'uran', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2284, 'Uruli Kanchan', 'uruli-kanchan', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2285, 'Vada', 'vada', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2286, 'Vadgaon', 'vadgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2287, 'Vadner', 'vadner', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2288, 'Vaijapur', 'vaijapur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2289, 'Vairag', 'vairag', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2290, 'Valsang', 'valsang', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2291, 'Vangaon', 'vangaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2292, 'Varangaon', 'varangaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2293, 'Vashi', 'vashi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2294, 'Vasind', 'vasind', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2295, 'Vatul', 'vatul', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2296, 'Velas Maharashtra', 'velas-maharashtra', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2297, 'Velneshwar', 'velneshwar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2298, 'Vengurla', 'vengurla', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2299, 'Vijaydurg', 'vijaydurg', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2300, 'Vikhroli', 'vikhroli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2301, 'Vile Parle', 'vile-parle', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2302, 'Vinchur', 'vinchur', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2303, 'Virar', 'virar', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2304, 'Vita Maharashtra', 'vita-maharashtra', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2305, 'Vite', 'vite', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2306, 'Wadala', 'wadala', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2307, 'Wadgaon', 'wadgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2308, 'Wadner', 'wadner', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2309, 'Wadwani', 'wadwani', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2310, 'Wagholi', 'wagholi', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2311, 'Wai', 'wai', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2312, 'Wakad', 'wakad', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2313, 'Walgaon', 'walgaon', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2314, 'Walki', 'walki', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2315, 'Wani', 'wani', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2316, 'Wardha', 'wardha', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2317, 'Warora', 'warora', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2318, 'Warud', 'warud', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2319, 'Washim', 'washim', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2320, 'Worli', 'worli', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2321, 'Yaval', 'yaval', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2322, 'Yavatmal', 'yavatmal', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2323, 'Yeola', 'yeola', 21, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2324, 'Bishnupur', 'bishnupur', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2325, 'Chandel', 'chandel', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2326, 'Churachandpur', 'churachandpur', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2327, 'Imphal East', 'imphal-east', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2328, 'Imphal West', 'imphal-west', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2329, 'Jiribam', 'jiribam', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2330, 'Kakching', 'kakching', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2331, 'Kamjong', 'kamjong', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2332, 'Kangpokpi', 'kangpokpi', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2333, 'Noney', 'noney', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2334, 'Pherzawl', 'pherzawl', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2335, 'Senapati', 'senapati', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2336, 'Tamenglong', 'tamenglong', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2337, 'Tengnoupal', 'tengnoupal', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2338, 'Thoubal', 'thoubal', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2339, 'Ukhrul', 'ukhrul', 22, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2340, 'Cherrapunji', 'cherrapunji', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2341, 'East Garo Hills', 'east-garo-hills', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2342, 'East Jaintia Hills', 'east-jaintia-hills', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2343, 'East Khasi Hills', 'east-khasi-hills', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2344, 'Mairang', 'mairang', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2345, 'Mankachar', 'mankachar', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2346, 'Nongpoh', 'nongpoh', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2347, 'Nongstoin', 'nongstoin', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2348, 'North Garo Hills', 'north-garo-hills', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2349, 'Ri-Bhoi', 'ri-bhoi', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2350, 'Shillong', 'shillong', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2351, 'South Garo Hills', 'south-garo-hills', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2352, 'South West Garo Hills', 'south-west-garo-hills', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2353, 'South West Khasi Hills', 'south-west-khasi-hills', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2354, 'Tura', 'tura', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2355, 'West Garo Hills', 'west-garo-hills', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2356, 'West Jaintia Hills', 'west-jaintia-hills', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2357, 'West Khasi Hills', 'west-khasi-hills', 23, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2358, 'Aizawl', 'aizawl', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2359, 'Champhai', 'champhai', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2360, 'Darlawn', 'darlawn', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2361, 'Khawhai', 'khawhai', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2362, 'Kolasib', 'kolasib', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2363, 'Lawngtlai', 'lawngtlai', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2364, 'Lunglei', 'lunglei', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2365, 'Mamit', 'mamit', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2366, 'North Vanlaiphai', 'north-vanlaiphai', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2367, 'Saiha', 'saiha', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2368, 'Sairang', 'sairang', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2369, 'Saitlaw', 'saitlaw', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2370, 'Serchhip', 'serchhip', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2371, 'Thenzawl', 'thenzawl', 24, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2372, 'Dimapur', 'dimapur', 25, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2373, 'Kohima', 'kohima', 25, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2374, 'Mokokchung', 'mokokchung', 25, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2375, 'Mon', 'mon', 25, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2376, 'Peren', 'peren', 25, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2377, 'Phek', 'phek', 25, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2378, 'Tuensang', 'tuensang', 25, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2379, 'Tuensang District', 'tuensang-district', 25, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2380, 'Wokha', 'wokha', 25, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2381, 'Zunheboto', 'zunheboto', 25, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2382, 'Angul', 'angul', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2383, 'Angul District', 'angul-district', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2384, 'Asika', 'asika', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2385, 'Athagarh', 'athagarh', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2386, 'Bada Barabil', 'bada-barabil', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2387, 'Balangir', 'balangir', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2388, 'Balasore', 'balasore', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2389, 'Baleshwar', 'baleshwar', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2390, 'Balimila', 'balimila', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2391, 'Balugaon', 'balugaon', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2392, 'Banapur', 'banapur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2393, 'Banki', 'banki', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2394, 'Banposh', 'banposh', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2395, 'Baragarh', 'baragarh', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2396, 'Barbil', 'barbil', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2397, 'Bargarh', 'bargarh', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2398, 'Barpali', 'barpali', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2399, 'Basudebpur', 'basudebpur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2400, 'Baud', 'baud', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2401, 'Baudh', 'baudh', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2402, 'Belaguntha', 'belaguntha', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2403, 'Bhadrak', 'bhadrak', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2404, 'Bhadrakh', 'bhadrakh', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2405, 'Bhanjanagar', 'bhanjanagar', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2406, 'Bhawanipatna', 'bhawanipatna', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2407, 'Bhuban', 'bhuban', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2408, 'Bhubaneswar', 'bhubaneswar', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2409, 'Binka', 'binka', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2410, 'Birmitrapur', 'birmitrapur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2411, 'Bolanikhodan', 'bolanikhodan', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2412, 'Brahmapur', 'brahmapur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2413, 'Brajarajnagar', 'brajarajnagar', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2414, 'Buguda', 'buguda', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2415, 'Burla', 'burla', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2416, 'Champua', 'champua', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2417, 'Chandbali', 'chandbali', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2418, 'Chatrapur', 'chatrapur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2419, 'Chikitigarh', 'chikitigarh', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2420, 'Chittarkonda', 'chittarkonda', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2421, 'Cuttack', 'cuttack', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2422, 'Daitari', 'daitari', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2423, 'Dhenkanal', 'dhenkanal', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2424, 'Digapahandi', 'digapahandi', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2425, 'Gajapati', 'gajapati', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2426, 'Ganjam', 'ganjam', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2427, 'Gopalpur', 'gopalpur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2428, 'Gudari', 'gudari', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2429, 'Gunupur', 'gunupur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2430, 'Hinjilikatu', 'hinjilikatu', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2431, 'Hirakud', 'hirakud', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2432, 'Jagatsinghpur', 'jagatsinghpur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2433, 'Jajpur', 'jajpur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2434, 'Jaleshwar', 'jaleshwar', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2435, 'Jatani', 'jatani', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2436, 'Jeypore', 'jeypore', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2437, 'Jharsuguda', 'jharsuguda', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2438, 'Jharsuguda District', 'jharsuguda-district', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2439, 'Kaintragarh', 'kaintragarh', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2440, 'Kalahandi', 'kalahandi', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2441, 'Kamakhyanagar', 'kamakhyanagar', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2442, 'Kandhamal', 'kandhamal', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2443, 'Kantabanji', 'kantabanji', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2444, 'Kantilo', 'kantilo', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2445, 'Kendrapara', 'kendrapara', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2446, 'Kendujhar', 'kendujhar', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2447, 'Kesinga', 'kesinga', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2448, 'Khallikot', 'khallikot', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2449, 'Kharhial', 'kharhial', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2450, 'Khordha', 'khordha', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2451, 'Khurda', 'khurda', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2452, 'Kiri Buru', 'kiri-buru', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2453, 'Kodala', 'kodala', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2454, 'Konarka', 'konarka', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2455, 'Koraput', 'koraput', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2456, 'Kuchaiburi', 'kuchaiburi', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2457, 'Kuchinda', 'kuchinda', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2458, 'Malkangiri', 'malkangiri', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2459, 'Mayurbhanj', 'mayurbhanj', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2460, 'Nabarangpur', 'nabarangpur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2461, 'Nayagarh', 'nayagarh', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2462, 'Nayagarh District', 'nayagarh-district', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2463, 'Nilgiri', 'nilgiri', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2464, 'Nimaparha', 'nimaparha', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2465, 'Nowrangapur', 'nowrangapur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2466, 'Nuapada', 'nuapada', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2467, 'Padampur', 'padampur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2468, 'Paradip Garh', 'paradip-garh', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2469, 'Patamundai', 'patamundai', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2470, 'Patnagarh', 'patnagarh', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2471, 'Phulbani', 'phulbani', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2472, 'Pipili', 'pipili', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2473, 'Polasara', 'polasara', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2474, 'Puri', 'puri', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2475, 'Purushottampur', 'purushottampur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2476, 'Rambha', 'rambha', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2477, 'Raurkela', 'raurkela', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2478, 'Rayagada', 'rayagada', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2479, 'Remuna', 'remuna', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2480, 'Rengali', 'rengali', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2481, 'Sambalpur', 'sambalpur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2482, 'Sonepur', 'sonepur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2483, 'Sorada', 'sorada', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2484, 'Soro', 'soro', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2485, 'Subarnapur', 'subarnapur', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2486, 'Sundargarh', 'sundargarh', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2487, 'Talcher', 'talcher', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2488, 'Tarabha', 'tarabha', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2489, 'Titlagarh', 'titlagarh', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2490, 'Udayagiri', 'udayagiri', 26, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2491, 'Karaikal', 'karaikal', 27, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2492, 'Puducherry', 'puducherry', 27, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2493, 'Abohar', 'abohar', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2494, 'Adampur', 'adampur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2495, 'Ajitgarh', 'ajitgarh', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2496, 'Ajnala', 'ajnala', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2497, 'Akalgarh', 'akalgarh', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2498, 'Alawalpur', 'alawalpur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2499, 'Amloh', 'amloh', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2500, 'Amritsar', 'amritsar', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2501, 'Anandpur Sahib', 'anandpur-sahib', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2502, 'Badhni Kalan', 'badhni-kalan', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2503, 'Bagha Purana', 'bagha-purana', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2504, 'Bakloh', 'bakloh', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2505, 'Balachor', 'balachor', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2506, 'Banga', 'banga', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2507, 'Banur', 'banur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2508, 'Barnala', 'barnala', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2509, 'Batala', 'batala', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2510, 'Begowal', 'begowal', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2511, 'Bhadaur', 'bhadaur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2512, 'Bhatinda', 'bhatinda', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2513, 'Bhawanigarh', 'bhawanigarh', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2514, 'Bhikhi', 'bhikhi', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2515, 'Bhogpur', 'bhogpur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2516, 'Bholath', 'bholath', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2517, 'Budhlada', 'budhlada', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2518, 'Chima', 'chima', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2519, 'Dasuya', 'dasuya', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2520, 'Dera Baba Nanak', 'dera-baba-nanak', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2521, 'Dera Bassi', 'dera-bassi', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2522, 'Dhanaula', 'dhanaula', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2523, 'Dhariwal', 'dhariwal', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2524, 'Dhilwan', 'dhilwan', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2525, 'Dhudi', 'dhudi', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2526, 'Dhuri', 'dhuri', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2527, 'Dina Nagar', 'dina-nagar', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2528, 'Dirba', 'dirba', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2529, 'Doraha', 'doraha', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2530, 'Faridkot', 'faridkot', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2531, 'Fatehgarh Churian', 'fatehgarh-churian', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2532, 'Fatehgarh Sahib', 'fatehgarh-sahib', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2533, 'Fazilka', 'fazilka', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2534, 'Firozpur', 'firozpur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2535, 'Firozpur District', 'firozpur-district', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2536, 'Gardhiwala', 'gardhiwala', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2537, 'Garhshankar', 'garhshankar', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2538, 'Ghanaur', 'ghanaur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2539, 'Giddarbaha', 'giddarbaha', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2540, 'Gurdaspur', 'gurdaspur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2541, 'Guru Har Sahai', 'guru-har-sahai', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2542, 'Hariana', 'hariana', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2543, 'Hoshiarpur', 'hoshiarpur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2544, 'Ishanpur', 'ishanpur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2545, 'Jagraon', 'jagraon', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2546, 'Jaito', 'jaito', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2547, 'Jalalabad', 'jalalabad', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2548, 'Jalandhar', 'jalandhar', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2549, 'Jandiala', 'jandiala', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2550, 'Jandiala Guru', 'jandiala-guru', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2551, 'Kapurthala', 'kapurthala', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2552, 'Kartarpur', 'kartarpur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2553, 'Khamanon', 'khamanon', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2554, 'Khanna', 'khanna', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2555, 'Kharar', 'kharar', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2556, 'Khemkaran', 'khemkaran', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2557, 'Kot Isa Khan', 'kot-isa-khan', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2558, 'Kotkapura', 'kotkapura', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2559, 'Laungowal', 'laungowal', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2560, 'Ludhiana', 'ludhiana', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2561, 'Machhiwara', 'machhiwara', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2562, 'Majitha', 'majitha', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2563, 'Makhu', 'makhu', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2564, 'Malaut', 'malaut', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2565, 'Malerkotla', 'malerkotla', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2566, 'Maur Mandi', 'maur-mandi', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2567, 'Moga', 'moga', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2568, 'Mohali', 'mohali', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2569, 'Morinda', 'morinda', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2570, 'Mukerian', 'mukerian', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2571, 'Nabha', 'nabha', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2572, 'Nakodar', 'nakodar', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2573, 'Nangal', 'nangal', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2574, 'Nurmahal', 'nurmahal', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2575, 'Nurpur Kalan', 'nurpur-kalan', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2576, 'Pathankot', 'pathankot', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2577, 'Patiala', 'patiala', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2578, 'Patti', 'patti', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2579, 'Phagwara', 'phagwara', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2580, 'Phillaur', 'phillaur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2581, 'Qadian', 'qadian', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2582, 'Rahon', 'rahon', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2583, 'Raikot', 'raikot', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2584, 'Rajasansi', 'rajasansi', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2585, 'Rajpura', 'rajpura', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2586, 'Ram Das', 'ram-das', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2587, 'Rupnagar', 'rupnagar', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2588, 'Samrala', 'samrala', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2589, 'Sanaur', 'sanaur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2590, 'Sangrur', 'sangrur', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2591, 'Sardulgarh', 'sardulgarh', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2592, 'Shahid Bhagat Singh Nagar', 'shahid-bhagat-singh-nagar', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2593, 'Shahkot', 'shahkot', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2594, 'Sham Churasi', 'sham-churasi', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2595, 'Sirhind-Fategarh', 'sirhind-fategarh', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2596, 'Sri Muktsar Sahib', 'sri-muktsar-sahib', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2597, 'Sultanpur Lodhi', 'sultanpur-lodhi', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2598, 'Sunam', 'sunam', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2599, 'Talwandi Bhai', 'talwandi-bhai', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2600, 'Talwara', 'talwara', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2601, 'Tarn Taran Sahib', 'tarn-taran-sahib', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2602, 'Zira', 'zira', 28, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2603, 'Abhaneri', 'abhaneri', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2604, 'Abu', 'abu', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2605, 'Abu Road', 'abu-road', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2606, 'Ajmer', 'ajmer', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2607, 'Aklera', 'aklera', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2608, 'Alwar', 'alwar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2609, 'Amet', 'amet', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2610, 'Anta', 'anta', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2611, 'Anupgarh', 'anupgarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2612, 'Asind', 'asind', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2613, 'Bagar', 'bagar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2614, 'Bakani', 'bakani', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2615, 'Bali', 'bali', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2616, 'Balotra', 'balotra', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2617, 'Bandikui', 'bandikui', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2618, 'Banswara', 'banswara', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2619, 'Baran', 'baran', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2620, 'Bari', 'bari', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2621, 'Bari Sadri', 'bari-sadri', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2622, 'Barmer', 'barmer', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2623, 'Basi', 'basi', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2624, 'Basni', 'basni', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2625, 'Baswa', 'baswa', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2626, 'Bayana', 'bayana', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2627, 'Beawar', 'beawar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2628, 'Begun', 'begun', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2629, 'Behror', 'behror', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2630, 'Bhadasar', 'bhadasar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2631, 'Bhadra', 'bhadra', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2632, 'Bharatpur', 'bharatpur', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2633, 'Bhasawar', 'bhasawar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2634, 'Bhilwara', 'bhilwara', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2635, 'Bhindar', 'bhindar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2636, 'Bhinmal', 'bhinmal', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2637, 'Bhiwadi', 'bhiwadi', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2638, 'Bhuma', 'bhuma', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2639, 'Bikaner', 'bikaner', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2640, 'Bilara', 'bilara', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2641, 'Bissau', 'bissau', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2642, 'Borkhera', 'borkhera', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2643, 'Bundi', 'bundi', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2644, 'Chaksu', 'chaksu', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2645, 'Chechat', 'chechat', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2646, 'Chhabra', 'chhabra', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2647, 'Chhapar', 'chhapar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2648, 'Chhoti Sadri', 'chhoti-sadri', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2649, 'Chidawa', 'chidawa', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2650, 'Chittaurgarh', 'chittaurgarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2651, 'Churu', 'churu', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2652, 'Dariba', 'dariba', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2653, 'Dausa', 'dausa', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2654, 'Deshnoke', 'deshnoke', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2655, 'Devgarh', 'devgarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2656, 'Dhaulpur', 'dhaulpur', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00');
INSERT INTO `cities` (`id`, `name`, `slug`, `state_id`, `country_id`, `record_id`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`) VALUES
(2657, 'Didwana', 'didwana', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2658, 'Dig', 'dig', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2659, 'Fatehpur', 'fatehpur', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2660, 'Galiakot', 'galiakot', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2661, 'Ganganagar', 'ganganagar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2662, 'Gulabpura', 'gulabpura', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2663, 'Hanumangarh', 'hanumangarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2664, 'Hindaun', 'hindaun', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2665, 'Jahazpur', 'jahazpur', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2666, 'Jaipur', 'jaipur', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2667, 'Jaisalmer', 'jaisalmer', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2668, 'Jaitaran', 'jaitaran', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2669, 'Jalor', 'jalor', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2670, 'Jalore', 'jalore', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2671, 'Jhalawar', 'jhalawar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2672, 'Jhalrapatan', 'jhalrapatan', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2673, 'Jhunjhunun', 'jhunjhunun', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2674, 'Jobner', 'jobner', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2675, 'Kaman', 'kaman', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2676, 'Kanor', 'kanor', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2677, 'Kapren', 'kapren', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2678, 'Karanpur', 'karanpur', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2679, 'Karauli', 'karauli', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2680, 'Kekri', 'kekri', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2681, 'Keshorai Patan', 'keshorai-patan', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2682, 'Khandela', 'khandela', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2683, 'Khanpur', 'khanpur', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2684, 'Khetri', 'khetri', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2685, 'Kishangarh', 'kishangarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2686, 'Kotputli', 'kotputli', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2687, 'Kuchaman', 'kuchaman', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2688, 'Kuchera', 'kuchera', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2689, 'Kumher', 'kumher', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2690, 'Kushalgarh', 'kushalgarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2691, 'Lachhmangarh Sikar', 'lachhmangarh-sikar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2692, 'Ladnun', 'ladnun', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2693, 'Lakheri', 'lakheri', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2694, 'Lalsot', 'lalsot', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2695, 'Losal', 'losal', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2696, 'Mahwah', 'mahwah', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2697, 'Makrana', 'makrana', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2698, 'Malpura', 'malpura', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2699, 'Mandalgarh', 'mandalgarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2700, 'Mandawar', 'mandawar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2701, 'Manohar Thana', 'manohar-thana', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2702, 'Meethari Marwar', 'meethari-marwar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2703, 'Merta', 'merta', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2704, 'Mundwa', 'mundwa', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2705, 'Nadbai', 'nadbai', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2706, 'Nagaur', 'nagaur', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2707, 'Nainwa', 'nainwa', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2708, 'Napasar', 'napasar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2709, 'Naraina', 'naraina', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2710, 'Nasirabad', 'nasirabad', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2711, 'Nathdwara', 'nathdwara', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2712, 'Nawa', 'nawa', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2713, 'Nawalgarh', 'nawalgarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2714, 'Neem ka Thana', 'neem-ka-thana', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2715, 'Nimaj', 'nimaj', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2716, 'Nimbahera', 'nimbahera', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2717, 'Niwai', 'niwai', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2718, 'Nohar', 'nohar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2719, 'Nokha', 'nokha', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2720, 'Partapur', 'partapur', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2721, 'Parvatsar', 'parvatsar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2722, 'Phalodi', 'phalodi', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2723, 'Phulera', 'phulera', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2724, 'Pilani', 'pilani', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2725, 'Pilibangan', 'pilibangan', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2726, 'Pindwara', 'pindwara', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2727, 'Pipar', 'pipar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2728, 'Pirawa', 'pirawa', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2729, 'Pokaran', 'pokaran', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2730, 'Pratapgarh', 'pratapgarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2731, 'Pushkar', 'pushkar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2732, 'Raisinghnagar', 'raisinghnagar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2733, 'Rajakhera', 'rajakhera', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2734, 'Rajaldesar', 'rajaldesar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2735, 'Rajsamand', 'rajsamand', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2736, 'Ramganj Mandi', 'ramganj-mandi', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2737, 'Rani', 'rani', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2738, 'Rawatbhata', 'rawatbhata', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2739, 'Rawatsar', 'rawatsar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2740, 'Ringas', 'ringas', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2741, 'Sadri', 'sadri', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2742, 'Salumbar', 'salumbar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2743, 'Sambhar', 'sambhar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2744, 'Samdari', 'samdari', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2745, 'Sanchor', 'sanchor', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2746, 'Sangaria', 'sangaria', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2747, 'Sangod', 'sangod', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2748, 'Sardarshahr', 'sardarshahr', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2749, 'Sarwar', 'sarwar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2750, 'Sawai Madhopur', 'sawai-madhopur', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2751, 'Sheoganj', 'sheoganj', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2752, 'Sikar', 'sikar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2753, 'Sirohi', 'sirohi', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2754, 'Siwana', 'siwana', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2755, 'Sojat', 'sojat', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2756, 'Sri Dungargarh', 'sri-dungargarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2757, 'Sri Madhopur', 'sri-madhopur', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2758, 'Sujangarh', 'sujangarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2759, 'Suket', 'suket', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2760, 'Sunel', 'sunel', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2761, 'Surajgarh', 'surajgarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2762, 'Suratgarh', 'suratgarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2763, 'Takhatgarh', 'takhatgarh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2764, 'Taranagar', 'taranagar', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2765, 'Tijara', 'tijara', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2766, 'Todabhim', 'todabhim', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2767, 'Todaraisingh', 'todaraisingh', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2768, 'Tonk', 'tonk', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2769, 'Udaipur', 'udaipur', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2770, 'Udpura', 'udpura', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2771, 'Uniara', 'uniara', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2772, 'Wer', 'wer', 29, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2773, 'East District', 'east-district', 30, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2774, 'Gangtok', 'gangtok', 30, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2775, 'Gyalshing', 'gyalshing', 30, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2776, 'Jorethang', 'jorethang', 30, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2777, 'Mangan', 'mangan', 30, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2778, 'Namchi', 'namchi', 30, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2779, 'Naya Bazar', 'naya-bazar', 30, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2780, 'North District', 'north-district', 30, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2781, 'Rangpo', 'rangpo', 30, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2782, 'Singtam', 'singtam', 30, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2783, 'South District', 'south-district', 30, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2784, 'West District', 'west-district', 30, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2785, 'Abiramam', 'abiramam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2786, 'Adirampattinam', 'adirampattinam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2787, 'Aduthurai', 'aduthurai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2788, 'Alagapuram', 'alagapuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2789, 'Alandur', 'alandur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2790, 'Alanganallur', 'alanganallur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2791, 'Alangayam', 'alangayam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2792, 'Alangudi', 'alangudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2793, 'Alangulam', 'alangulam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2794, 'Alappakkam', 'alappakkam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2795, 'Alwa Tirunagari', 'alwa-tirunagari', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2796, 'Ambasamudram', 'ambasamudram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2797, 'Ambattur', 'ambattur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2798, 'Ambur', 'ambur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2799, 'Ammapettai', 'ammapettai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2800, 'Anamalais', 'anamalais', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2801, 'Andippatti', 'andippatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2802, 'Annamalainagar', 'annamalainagar', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2803, 'Annavasal', 'annavasal', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2804, 'Annur', 'annur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2805, 'Anthiyur', 'anthiyur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2806, 'Arakkonam', 'arakkonam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2807, 'Arantangi', 'arantangi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2808, 'Arcot', 'arcot', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2809, 'Arimalam', 'arimalam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2810, 'Ariyalur', 'ariyalur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2811, 'Arni', 'arni', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2812, 'Arumbavur', 'arumbavur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2813, 'Arumuganeri', 'arumuganeri', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2814, 'Aruppukkottai', 'aruppukkottai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2815, 'Aruvankad', 'aruvankad', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2816, 'Attayyampatti', 'attayyampatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2817, 'Attur', 'attur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2818, 'Auroville', 'auroville', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2819, 'Avadi', 'avadi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2820, 'Avinashi', 'avinashi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2821, 'Ayakudi', 'ayakudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2822, 'Ayyampettai', 'ayyampettai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2823, 'Bhavani', 'bhavani', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2824, 'Bodinayakkanur', 'bodinayakkanur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2825, 'Chengam', 'chengam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2826, 'Chennai', 'chennai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2827, 'Chennimalai', 'chennimalai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2828, 'Chetput', 'chetput', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2829, 'Chettipalaiyam', 'chettipalaiyam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2830, 'Cheyyar', 'cheyyar', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2831, 'Cheyyur', 'cheyyur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2832, 'Chidambaram', 'chidambaram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2833, 'Chingleput', 'chingleput', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2834, 'Chinna Salem', 'chinna-salem', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2835, 'Chinnamanur', 'chinnamanur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2836, 'Chinnasekkadu', 'chinnasekkadu', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2837, 'Cholapuram', 'cholapuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2838, 'Coimbatore', 'coimbatore', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2839, 'Colachel', 'colachel', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2840, 'Cuddalore', 'cuddalore', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2841, 'Denkanikota', 'denkanikota', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2842, 'Desur', 'desur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2843, 'Devadanappatti', 'devadanappatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2844, 'Devakottai', 'devakottai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2845, 'Dhali', 'dhali', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2846, 'Dharapuram', 'dharapuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2847, 'Dharmapuri', 'dharmapuri', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2848, 'Dindigul', 'dindigul', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2849, 'Dusi', 'dusi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2850, 'Elayirampannai', 'elayirampannai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2851, 'Elumalai', 'elumalai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2852, 'Eral', 'eral', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2853, 'Eraniel', 'eraniel', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2854, 'Erode', 'erode', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2855, 'Erumaippatti', 'erumaippatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2856, 'Ettaiyapuram', 'ettaiyapuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2857, 'Gandhi Nagar', 'gandhi-nagar', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2858, 'Gangaikondan', 'gangaikondan', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2859, 'Gangavalli', 'gangavalli', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2860, 'Gingee', 'gingee', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2861, 'Gobichettipalayam', 'gobichettipalayam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2862, 'Gudalur', 'gudalur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2863, 'Gudiyatham', 'gudiyatham', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2864, 'Guduvancheri', 'guduvancheri', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2865, 'Gummidipundi', 'gummidipundi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2866, 'Harur', 'harur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2867, 'Hosur', 'hosur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2868, 'Idappadi', 'idappadi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2869, 'Ilampillai', 'ilampillai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2870, 'Iluppur', 'iluppur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2871, 'Injambakkam', 'injambakkam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2872, 'Irugur', 'irugur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2873, 'Jalakandapuram', 'jalakandapuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2874, 'Jalarpet', 'jalarpet', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2875, 'Jayamkondacholapuram', 'jayamkondacholapuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2876, 'Kadambur', 'kadambur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2877, 'Kadayanallur', 'kadayanallur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2878, 'Kalakkadu', 'kalakkadu', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2879, 'Kalavai', 'kalavai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2880, 'Kallakkurichchi', 'kallakkurichchi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2881, 'Kallidaikurichi', 'kallidaikurichi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2882, 'Kallupatti', 'kallupatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2883, 'Kalugumalai', 'kalugumalai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2884, 'Kamuthi', 'kamuthi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2885, 'Kanadukattan', 'kanadukattan', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2886, 'Kancheepuram', 'kancheepuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2887, 'Kanchipuram', 'kanchipuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2888, 'Kangayam', 'kangayam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2889, 'Kanniyakumari', 'kanniyakumari', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2890, 'Karaikkudi', 'karaikkudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2891, 'Karamadai', 'karamadai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2892, 'Karambakkudi', 'karambakkudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2893, 'Kariapatti', 'kariapatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2894, 'Karumbakkam', 'karumbakkam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2895, 'Karur', 'karur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2896, 'Katpadi', 'katpadi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2897, 'Kattivakkam', 'kattivakkam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2898, 'Kattupputtur', 'kattupputtur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2899, 'Kaveripatnam', 'kaveripatnam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2900, 'Kayalpattinam', 'kayalpattinam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2901, 'Kayattar', 'kayattar', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2902, 'Keelakarai', 'keelakarai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2903, 'Kelamangalam', 'kelamangalam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2904, 'Kil Bhuvanagiri', 'kil-bhuvanagiri', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2905, 'Kilvelur', 'kilvelur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2906, 'Kiranur', 'kiranur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2907, 'Kodaikanal', 'kodaikanal', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2908, 'Kodumudi', 'kodumudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2909, 'Kombai', 'kombai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2910, 'Konganapuram', 'konganapuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2911, 'Koothanallur', 'koothanallur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2912, 'Koradachcheri', 'koradachcheri', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2913, 'Korampallam', 'korampallam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2914, 'Kotagiri', 'kotagiri', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2915, 'Kottaiyur', 'kottaiyur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2916, 'Kovilpatti', 'kovilpatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2917, 'Krishnagiri', 'krishnagiri', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2918, 'Kulattur', 'kulattur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2919, 'Kulittalai', 'kulittalai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2920, 'Kumaralingam', 'kumaralingam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2921, 'Kumbakonam', 'kumbakonam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2922, 'Kunnattur', 'kunnattur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2923, 'Kurinjippadi', 'kurinjippadi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2924, 'Kuttalam', 'kuttalam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2925, 'Kuzhithurai', 'kuzhithurai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2926, 'Lalgudi', 'lalgudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2927, 'Madambakkam', 'madambakkam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2928, 'Madipakkam', 'madipakkam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2929, 'Madukkarai', 'madukkarai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2930, 'Madukkur', 'madukkur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2931, 'Madurai', 'madurai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2932, 'Madurantakam', 'madurantakam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2933, 'Mallapuram', 'mallapuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2934, 'Mallasamudram', 'mallasamudram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2935, 'Mallur', 'mallur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2936, 'Manalurpettai', 'manalurpettai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2937, 'Manamadurai', 'manamadurai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2938, 'Manappakkam', 'manappakkam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2939, 'Manapparai', 'manapparai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2940, 'Manavalakurichi', 'manavalakurichi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2941, 'Mandapam', 'mandapam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2942, 'Mangalam', 'mangalam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2943, 'Mannargudi', 'mannargudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2944, 'Marakkanam', 'marakkanam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2945, 'Marandahalli', 'marandahalli', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2946, 'Masinigudi', 'masinigudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2947, 'Mattur', 'mattur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2948, 'Mayiladuthurai', 'mayiladuthurai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2949, 'Melur', 'melur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2950, 'Mettuppalaiyam', 'mettuppalaiyam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2951, 'Mettur', 'mettur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2952, 'Minjur', 'minjur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2953, 'Mohanur', 'mohanur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2954, 'Mudukulattur', 'mudukulattur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2955, 'Mulanur', 'mulanur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2956, 'Musiri', 'musiri', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2957, 'Muttupet', 'muttupet', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2958, 'Naduvattam', 'naduvattam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2959, 'Nagapattinam', 'nagapattinam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2960, 'Nagercoil', 'nagercoil', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2961, 'Namagiripettai', 'namagiripettai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2962, 'Namakkal', 'namakkal', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2963, 'Nambiyur', 'nambiyur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2964, 'Nambutalai', 'nambutalai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2965, 'Nandambakkam', 'nandambakkam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2966, 'Nangavalli', 'nangavalli', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2967, 'Nangilickondan', 'nangilickondan', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2968, 'Nanguneri', 'nanguneri', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3001, 'Nannilam', 'nannilam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3002, 'Naravarikuppam', 'naravarikuppam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3003, 'Nattam', 'nattam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3004, 'Nattarasankottai', 'nattarasankottai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3005, 'Needamangalam', 'needamangalam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3006, 'Neelankarai', 'neelankarai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3007, 'Negapatam', 'negapatam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3008, 'Nellikkuppam', 'nellikkuppam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3009, 'Nilakottai', 'nilakottai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3010, 'Nilgiris', 'nilgiris', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3011, 'Odugattur', 'odugattur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3012, 'Omalur', 'omalur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3013, 'Ooty', 'ooty', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3014, 'Padmanabhapuram', 'padmanabhapuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3015, 'Palakkodu', 'palakkodu', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3016, 'Palamedu', 'palamedu', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3017, 'Palani', 'palani', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3018, 'Palavakkam', 'palavakkam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3019, 'Palladam', 'palladam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3020, 'Pallappatti', 'pallappatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3021, 'Pallattur', 'pallattur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3022, 'Pallavaram', 'pallavaram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3023, 'Pallikondai', 'pallikondai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3024, 'Pallipattu', 'pallipattu', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3025, 'Pallippatti', 'pallippatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3026, 'Panruti', 'panruti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3027, 'Papanasam', 'papanasam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3028, 'Papireddippatti', 'papireddippatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3029, 'Papparappatti', 'papparappatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3030, 'Paramagudi', 'paramagudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3031, 'Pattukkottai', 'pattukkottai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3032, 'Pennadam', 'pennadam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3033, 'Pennagaram', 'pennagaram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3034, 'Pennathur', 'pennathur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3035, 'Peraiyur', 'peraiyur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3036, 'Perambalur', 'perambalur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3037, 'Peranamallur', 'peranamallur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3038, 'Peranampattu', 'peranampattu', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3039, 'Peravurani', 'peravurani', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3040, 'Periyakulam', 'periyakulam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3041, 'Periyanayakkanpalaiyam', 'periyanayakkanpalaiyam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3042, 'Periyanegamam', 'periyanegamam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3043, 'Periyapatti', 'periyapatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3044, 'Periyapattinam', 'periyapattinam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3045, 'Perundurai', 'perundurai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3046, 'Perungudi', 'perungudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3047, 'Perur', 'perur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3048, 'Pollachi', 'pollachi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3049, 'Polur', 'polur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3050, 'Ponnamaravati', 'ponnamaravati', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3051, 'Ponneri', 'ponneri', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3052, 'Poonamalle', 'poonamalle', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3053, 'Porur', 'porur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3054, 'Pudukkottai', 'pudukkottai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3055, 'Puduppatti', 'puduppatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3056, 'Pudur', 'pudur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3057, 'Puduvayal', 'puduvayal', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3058, 'Puliyangudi', 'puliyangudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3059, 'Puliyur', 'puliyur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3060, 'Pullambadi', 'pullambadi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3061, 'Punjai Puliyampatti', 'punjai-puliyampatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3062, 'Rajapalaiyam', 'rajapalaiyam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3063, 'Ramanathapuram', 'ramanathapuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3064, 'Rameswaram', 'rameswaram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3065, 'Ranipet', 'ranipet', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3066, 'Rasipuram', 'rasipuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3067, 'Saint Thomas Mount', 'saint-thomas-mount', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3068, 'Salem', 'salem', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3069, 'Sathankulam', 'sathankulam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3070, 'Sathyamangalam', 'sathyamangalam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3071, 'Sattur', 'sattur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3072, 'Sayalkudi', 'sayalkudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3073, 'Seven Pagodas', 'seven-pagodas', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3074, 'Sholinghur', 'sholinghur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3075, 'Singanallur', 'singanallur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3076, 'Singapperumalkovil', 'singapperumalkovil', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3077, 'Sirkazhi', 'sirkazhi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3078, 'Sirumugai', 'sirumugai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3079, 'Sivaganga', 'sivaganga', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3080, 'Sivagiri', 'sivagiri', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3081, 'Sivakasi', 'sivakasi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3082, 'Srimushnam', 'srimushnam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3083, 'Sriperumbudur', 'sriperumbudur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3084, 'Srivaikuntam', 'srivaikuntam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3085, 'Srivilliputhur', 'srivilliputhur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3086, 'Suchindram', 'suchindram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3087, 'Sulur', 'sulur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3088, 'Surandai', 'surandai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3089, 'Swamimalai', 'swamimalai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3090, 'Tambaram', 'tambaram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3091, 'Tanjore', 'tanjore', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3092, 'Taramangalam', 'taramangalam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3093, 'Tattayyangarpettai', 'tattayyangarpettai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3094, 'Thanjavur', 'thanjavur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3095, 'Tharangambadi', 'tharangambadi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3096, 'Theni', 'theni', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3097, 'Thenkasi', 'thenkasi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3098, 'Thirukattupalli', 'thirukattupalli', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3099, 'Thiruthani', 'thiruthani', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3100, 'Thiruvaiyaru', 'thiruvaiyaru', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3101, 'Thiruvallur', 'thiruvallur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3102, 'Thiruvarur', 'thiruvarur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3103, 'Thiruvidaimaruthur', 'thiruvidaimaruthur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3104, 'Thoothukudi', 'thoothukudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3105, 'Tindivanam', 'tindivanam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3106, 'Tinnanur', 'tinnanur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3107, 'Tiruchchendur', 'tiruchchendur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3108, 'Tiruchengode', 'tiruchengode', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3109, 'Tiruchirappalli', 'tiruchirappalli', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3110, 'Tirukkoyilur', 'tirukkoyilur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3111, 'Tirumullaivasal', 'tirumullaivasal', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3112, 'Tirunelveli', 'tirunelveli', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3113, 'Tirunelveli Kattabo', 'tirunelveli-kattabo', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3114, 'Tiruppalaikudi', 'tiruppalaikudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00');
INSERT INTO `cities` (`id`, `name`, `slug`, `state_id`, `country_id`, `record_id`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`) VALUES
(3115, 'Tirupparangunram', 'tirupparangunram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3116, 'Tiruppur', 'tiruppur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3117, 'Tiruppuvanam', 'tiruppuvanam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3118, 'Tiruttangal', 'tiruttangal', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3119, 'Tiruvannamalai', 'tiruvannamalai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3120, 'Tiruvottiyur', 'tiruvottiyur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3121, 'Tisaiyanvilai', 'tisaiyanvilai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3122, 'Tondi', 'tondi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3123, 'Turaiyur', 'turaiyur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3124, 'Udangudi', 'udangudi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3125, 'Udumalaippettai', 'udumalaippettai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3126, 'Uppiliyapuram', 'uppiliyapuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3127, 'Usilampatti', 'usilampatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3128, 'Uttamapalaiyam', 'uttamapalaiyam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3129, 'Uttiramerur', 'uttiramerur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3130, 'Uttukkuli', 'uttukkuli', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3131, 'V.S.K.Valasai (Dindigul-Dist.)', 'vskvalasai-dindigul-dist', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3132, 'Vadakku Valliyur', 'vadakku-valliyur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3133, 'Vadakku Viravanallur', 'vadakku-viravanallur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3134, 'Vadamadurai', 'vadamadurai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3135, 'Vadippatti', 'vadippatti', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3136, 'Valangaiman', 'valangaiman', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3137, 'Valavanur', 'valavanur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3138, 'Vallam', 'vallam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3139, 'Valparai', 'valparai', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3140, 'Vandalur', 'vandalur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3141, 'Vandavasi', 'vandavasi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3142, 'Vaniyambadi', 'vaniyambadi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3143, 'Vasudevanallur', 'vasudevanallur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3144, 'Vattalkundu', 'vattalkundu', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3145, 'Vedaraniyam', 'vedaraniyam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3146, 'Vedasandur', 'vedasandur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3147, 'Velankanni', 'velankanni', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3148, 'Vellanur', 'vellanur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3149, 'Vellore', 'vellore', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3150, 'Velur', 'velur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3151, 'Vengavasal', 'vengavasal', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3152, 'Vettaikkaranpudur', 'vettaikkaranpudur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3153, 'Vettavalam', 'vettavalam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3154, 'Vijayapuri', 'vijayapuri', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3155, 'Vikravandi', 'vikravandi', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3156, 'Vilattikulam', 'vilattikulam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3157, 'Villupuram', 'villupuram', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3158, 'Viraganur', 'viraganur', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3159, 'Virudhunagar', 'virudhunagar', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3160, 'Vriddhachalam', 'vriddhachalam', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3161, 'Walajapet', 'walajapet', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3162, 'Wallajahbad', 'wallajahbad', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3163, 'Wellington', 'wellington', 31, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3164, 'Adilabad', 'adilabad', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3165, 'Andol', 'andol', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3166, 'Asifabad', 'asifabad', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3167, 'Banswada', 'banswada', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3168, 'Bellampalli', 'bellampalli', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3169, 'Bhadrachalam', 'bhadrachalam', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3170, 'Bhadradri Kothagudem', 'bhadradri-kothagudem', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3171, 'Bhaisa', 'bhaisa', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3172, 'Bhongir', 'bhongir', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3173, 'Bodhan', 'bodhan', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3174, 'Chatakonda', 'chatakonda', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3175, 'Dasnapur', 'dasnapur', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3176, 'Devarkonda', 'devarkonda', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3177, 'Dornakal', 'dornakal', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3178, 'Gaddi Annaram', 'gaddi-annaram', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3179, 'Gadwal', 'gadwal', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3180, 'Ghatkesar', 'ghatkesar', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3181, 'Gopalur', 'gopalur', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3182, 'Hyderabad', 'hyderabad', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3183, 'Jagtial', 'jagtial', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3184, 'Jangaon', 'jangaon', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3185, 'Jayashankar Bhupalapally', 'jayashankar-bhupalapally', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3186, 'Jogulamba Gadwal', 'jogulamba-gadwal', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3187, 'Kagaznagar', 'kagaznagar', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3188, 'Kamareddi', 'kamareddi', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3189, 'Kamareddy', 'kamareddy', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3190, 'Karimnagar', 'karimnagar', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3191, 'Khammam', 'khammam', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3192, 'Kodar', 'kodar', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3193, 'Koratla', 'koratla', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3194, 'Kothapet', 'kothapet', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3195, 'Kottagudem', 'kottagudem', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3196, 'Kottapalli', 'kottapalli', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3197, 'Kukatpally', 'kukatpally', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3198, 'Kyathampalle', 'kyathampalle', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3199, 'Lakshettipet', 'lakshettipet', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3200, 'Lal Bahadur Nagar', 'lal-bahadur-nagar', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3201, 'Mahabubabad', 'mahabubabad', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3202, 'Mahbubnagar', 'mahbubnagar', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3203, 'Malkajgiri', 'malkajgiri', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3204, 'Mancheral', 'mancheral', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3205, 'Mandamarri', 'mandamarri', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3206, 'Manthani', 'manthani', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3207, 'Manuguru', 'manuguru', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3208, 'Medak', 'medak', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3209, 'Medchal', 'medchal', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3210, 'Medchal Malkajgiri', 'medchal-malkajgiri', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3211, 'Mirialguda', 'mirialguda', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3212, 'Nagar Karnul', 'nagar-karnul', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3213, 'Nalgonda', 'nalgonda', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3214, 'Narayanpet', 'narayanpet', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3215, 'Narsingi', 'narsingi', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3216, 'Naspur', 'naspur', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3217, 'Nirmal', 'nirmal', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3218, 'Nizamabad', 'nizamabad', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3219, 'Paloncha', 'paloncha', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3220, 'Palwancha', 'palwancha', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3221, 'Patancheru', 'patancheru', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3222, 'Peddapalli', 'peddapalli', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3223, 'Quthbullapur', 'quthbullapur', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3224, 'Rajanna Sircilla', 'rajanna-sircilla', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3225, 'Ramagundam', 'ramagundam', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3226, 'Ramgundam', 'ramgundam', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3227, 'Rangareddi', 'rangareddi', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3228, 'Sadaseopet', 'sadaseopet', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3229, 'Sangareddi', 'sangareddi', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3230, 'Sathupalli', 'sathupalli', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3231, 'Secunderabad', 'secunderabad', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3232, 'Serilingampalle', 'serilingampalle', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3233, 'Siddipet', 'siddipet', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3234, 'Singapur', 'singapur', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3235, 'Sirpur', 'sirpur', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3236, 'Sirsilla', 'sirsilla', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3237, 'Sriramnagar', 'sriramnagar', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3238, 'Suriapet', 'suriapet', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3239, 'Tandur', 'tandur', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3240, 'Uppal Kalan', 'uppal-kalan', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3241, 'Vemalwada', 'vemalwada', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3242, 'Vikarabad', 'vikarabad', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3243, 'Wanparti', 'wanparti', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3244, 'Warangal', 'warangal', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3245, 'Yellandu', 'yellandu', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3246, 'Zahirabad', 'zahirabad', 32, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3247, 'Agartala', 'agartala', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3248, 'Ambasa', 'ambasa', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3249, 'Barjala', 'barjala', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3250, 'Belonia', 'belonia', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3251, 'Dhalai', 'dhalai', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3252, 'Dharmanagar', 'dharmanagar', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3253, 'Gomati', 'gomati', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3254, 'Kailashahar', 'kailashahar', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3255, 'Kamalpur', 'kamalpur', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3256, 'Khowai', 'khowai', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3257, 'North Tripura', 'north-tripura', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3258, 'Ranir Bazar', 'ranir-bazar', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3259, 'Sabrum', 'sabrum', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3260, 'Sonamura', 'sonamura', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3261, 'South Tripura', 'south-tripura', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3262, 'Unakoti', 'unakoti', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3263, 'West Tripura', 'west-tripura', 33, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3264, 'Achhnera', 'achhnera', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3265, 'Afzalgarh', 'afzalgarh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3266, 'Agra', 'agra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3267, 'Ahraura', 'ahraura', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3268, 'Aidalpur', 'aidalpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3269, 'Airwa', 'airwa', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3270, 'Akbarpur', 'akbarpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3271, 'Aliganj', 'aliganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3272, 'Aligarh', 'aligarh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3273, 'Allahabad', 'allahabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3274, 'Allahganj', 'allahganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3275, 'Amanpur', 'amanpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3276, 'Amauli', 'amauli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3277, 'Ambahta', 'ambahta', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3278, 'Ambedkar Nagar', 'ambedkar-nagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3279, 'Amethi', 'amethi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3280, 'Amroha', 'amroha', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3281, 'Anandnagar', 'anandnagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3282, 'Antu', 'antu', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3283, 'Anupshahr', 'anupshahr', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3284, 'Aonla', 'aonla', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3285, 'Araul', 'araul', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3286, 'Asalatganj', 'asalatganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3287, 'Atarra', 'atarra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3288, 'Atrauli', 'atrauli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3289, 'Atraulia', 'atraulia', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3290, 'Auraiya', 'auraiya', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3291, 'Auras', 'auras', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3292, 'Ayodhya', 'ayodhya', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3293, 'Azamgarh', 'azamgarh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3294, 'Azizpur', 'azizpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3295, 'Baberu', 'baberu', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3296, 'Babina', 'babina', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3297, 'Babrala', 'babrala', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3298, 'Babugarh', 'babugarh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3299, 'Bachhraon', 'bachhraon', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3300, 'Bachhrawan', 'bachhrawan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3301, 'Baghpat', 'baghpat', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3302, 'Baghra', 'baghra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3303, 'Bah', 'bah', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3304, 'Baheri', 'baheri', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3305, 'Bahjoi', 'bahjoi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3306, 'Bahraich', 'bahraich', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3307, 'Bahraigh', 'bahraigh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3308, 'Bahsuma', 'bahsuma', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3309, 'Bahua', 'bahua', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3310, 'Bajna', 'bajna', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3311, 'Bakewar', 'bakewar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3312, 'Baksar', 'baksar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3313, 'Balamau', 'balamau', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3314, 'Baldeo', 'baldeo', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3315, 'Baldev', 'baldev', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3316, 'Ballia', 'ballia', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3317, 'Balrampur', 'balrampur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3318, 'Banat', 'banat', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3319, 'Banbasa', 'banbasa', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3320, 'Bangarmau', 'bangarmau', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3321, 'Bansdih', 'bansdih', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3322, 'Bansgaon', 'bansgaon', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3323, 'Bansi', 'bansi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3324, 'Banthra', 'banthra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3325, 'Bara Banki', 'bara-banki', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3326, 'Baragaon', 'baragaon', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3327, 'Baraut', 'baraut', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3328, 'Bareilly', 'bareilly', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3329, 'Barhalganj', 'barhalganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3330, 'Barkhera', 'barkhera', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3331, 'Barkhera Kalan', 'barkhera-kalan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3332, 'Barokhar', 'barokhar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3333, 'Barsana', 'barsana', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3334, 'Barwar (Lakhimpur Kheri)', 'barwar-lakhimpur-kheri', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3335, 'Basti', 'basti', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3336, 'Behat', 'behat', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3337, 'Bela', 'bela', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3338, 'Belthara', 'belthara', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3339, 'Beniganj', 'beniganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3340, 'Beswan', 'beswan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3341, 'Bewar', 'bewar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3342, 'Bhadarsa', 'bhadarsa', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3343, 'Bhadohi', 'bhadohi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3344, 'Bhagwantnagar', 'bhagwantnagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3345, 'Bharatpura', 'bharatpura', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3346, 'Bhargain', 'bhargain', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3347, 'Bharthana', 'bharthana', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3348, 'Bharwari', 'bharwari', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3349, 'Bhaupur', 'bhaupur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3350, 'Bhimtal', 'bhimtal', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3351, 'Bhinga', 'bhinga', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3352, 'Bhognipur', 'bhognipur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3353, 'Bhongaon', 'bhongaon', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3354, 'Bidhnu', 'bidhnu', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3355, 'Bidhuna', 'bidhuna', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3356, 'Bighapur', 'bighapur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3357, 'Bighapur Khurd', 'bighapur-khurd', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3358, 'Bijnor', 'bijnor', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3359, 'Bikapur', 'bikapur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3360, 'Bilari', 'bilari', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3361, 'Bilariaganj', 'bilariaganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3362, 'Bilgram', 'bilgram', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3363, 'Bilhaur', 'bilhaur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3364, 'Bilsanda', 'bilsanda', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3365, 'Bilsi', 'bilsi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3366, 'Bilthra', 'bilthra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3367, 'Binauli', 'binauli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3368, 'Binaur', 'binaur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3369, 'Bindki', 'bindki', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3370, 'Birdpur', 'birdpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3371, 'Bisalpur', 'bisalpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3372, 'Bisanda Buzurg', 'bisanda-buzurg', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3373, 'Bisauli', 'bisauli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3374, 'Bisenda Buzurg', 'bisenda-buzurg', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3375, 'Bishunpur Urf Maharajganj', 'bishunpur-urf-maharajganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3376, 'Biswan', 'biswan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3377, 'Bithur', 'bithur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3378, 'Budaun', 'budaun', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3379, 'Budhana', 'budhana', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3380, 'Bulandshahr', 'bulandshahr', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3381, 'Captainganj', 'captainganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3382, 'Chail', 'chail', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3383, 'Chandauli', 'chandauli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3384, 'Chandauli District', 'chandauli-district', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3385, 'Chandausi', 'chandausi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3386, 'Chandpur', 'chandpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3387, 'Chanduasi', 'chanduasi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3388, 'Charkhari', 'charkhari', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3389, 'Charthawal', 'charthawal', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3390, 'Chhaprauli', 'chhaprauli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3391, 'Chharra', 'chharra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3392, 'Chhata', 'chhata', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3393, 'Chhibramau', 'chhibramau', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3394, 'Chhitauni', 'chhitauni', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3395, 'Chhutmalpur', 'chhutmalpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3396, 'Chillupar', 'chillupar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3397, 'Chirgaon', 'chirgaon', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3398, 'Chitrakoot', 'chitrakoot', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3399, 'Chitrakoot Dham', 'chitrakoot-dham', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3400, 'Chopan', 'chopan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3401, 'Chunar', 'chunar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3402, 'Churk', 'churk', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3403, 'Colonelganj', 'colonelganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3404, 'Dadri', 'dadri', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3405, 'Dalmau', 'dalmau', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3406, 'Dankaur', 'dankaur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3407, 'Daraganj', 'daraganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3408, 'Daranagar', 'daranagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3409, 'Dasna', 'dasna', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3410, 'Dataganj', 'dataganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3411, 'Daurala', 'daurala', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3412, 'Dayal Bagh', 'dayal-bagh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3413, 'Deoband', 'deoband', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3414, 'Deoranian', 'deoranian', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3415, 'Deoria', 'deoria', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3416, 'Derapur', 'derapur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3417, 'Dewa', 'dewa', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3418, 'Dhampur', 'dhampur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3419, 'Dhanaura', 'dhanaura', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3420, 'Dhanghata', 'dhanghata', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3421, 'Dharau', 'dharau', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3422, 'Dhaurahra', 'dhaurahra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3423, 'Dibai', 'dibai', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3424, 'Divrasai', 'divrasai', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3425, 'Dohrighat', 'dohrighat', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3426, 'Domariaganj', 'domariaganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3427, 'Dostpur', 'dostpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3428, 'Dudhi', 'dudhi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3429, 'Etah', 'etah', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3430, 'Etawah', 'etawah', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3431, 'Etmadpur', 'etmadpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3432, 'Faizabad', 'faizabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3433, 'Farah', 'farah', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3434, 'Faridnagar', 'faridnagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3435, 'Faridpur', 'faridpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3436, 'Farrukhabad', 'farrukhabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3437, 'Fatehganj West', 'fatehganj-west', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3438, 'Fatehgarh', 'fatehgarh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3439, 'Fatehpur (Barabanki)', 'fatehpur-barabanki', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3440, 'Fatehpur Chaurasi', 'fatehpur-chaurasi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3441, 'Fatehpur Sikri', 'fatehpur-sikri', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3442, 'Firozabad', 'firozabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3443, 'Fyzabad', 'fyzabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3444, 'Gahlon', 'gahlon', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3445, 'Gahmar', 'gahmar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3446, 'Gaini', 'gaini', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3447, 'Gajraula', 'gajraula', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3448, 'Gangoh', 'gangoh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3449, 'Ganj Dundawara', 'ganj-dundawara', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3450, 'Ganj Dundwara', 'ganj-dundwara', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3451, 'Ganj Muradabad', 'ganj-muradabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3452, 'Garautha', 'garautha', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3453, 'Garhi Pukhta', 'garhi-pukhta', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3454, 'Garhmuktesar', 'garhmuktesar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3455, 'Gauriganj', 'gauriganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3456, 'Gautam Buddha Nagar', 'gautam-buddha-nagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3457, 'Gawan', 'gawan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3458, 'Ghatampur', 'ghatampur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3459, 'Ghaziabad', 'ghaziabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3460, 'Ghazipur', 'ghazipur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3461, 'Ghiror', 'ghiror', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3462, 'Ghorawal', 'ghorawal', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3463, 'Ghosi', 'ghosi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3464, 'Gohand', 'gohand', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3465, 'Gokul', 'gokul', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3466, 'Gola Bazar', 'gola-bazar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3467, 'Gola Gokarannath', 'gola-gokarannath', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3468, 'Gonda', 'gonda', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3469, 'Gopamau', 'gopamau', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3470, 'Gosainganj', 'gosainganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3471, 'Goshainganj', 'goshainganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3472, 'Govardhan', 'govardhan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3473, 'Greater Noida', 'greater-noida', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3474, 'Gulaothi', 'gulaothi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3475, 'Gunnaur', 'gunnaur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3476, 'Gursahaiganj', 'gursahaiganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3477, 'Gursarai', 'gursarai', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3478, 'Gyanpur', 'gyanpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3479, 'Haldaur', 'haldaur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3480, 'Handia', 'handia', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3481, 'Hapur', 'hapur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3482, 'Haraipur', 'haraipur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3483, 'Haraiya', 'haraiya', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3484, 'Harchandpur', 'harchandpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3485, 'Hardoi', 'hardoi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3486, 'Harduaganj', 'harduaganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3487, 'Hastinapur', 'hastinapur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3488, 'Hata', 'hata', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3489, 'Hata (India)', 'hata-india', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3490, 'Hathras', 'hathras', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3491, 'Hulas', 'hulas', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3492, 'Ibrahimpur', 'ibrahimpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3493, 'Iglas', 'iglas', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3494, 'Ikauna', 'ikauna', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3495, 'Indergarh', 'indergarh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3496, 'Indragarh', 'indragarh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3497, 'Islamnagar', 'islamnagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3498, 'Islamnagar (Badaun)', 'islamnagar-badaun', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3499, 'Itaunja', 'itaunja', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3500, 'Itimadpur', 'itimadpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3501, 'Jagdishpur', 'jagdishpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3502, 'Jagnair', 'jagnair', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3503, 'Jahanabad (Pilibhit)', 'jahanabad-pilibhit', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3504, 'Jahangirabad', 'jahangirabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3505, 'Jahangirpur', 'jahangirpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3506, 'Jainpur', 'jainpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3507, 'Jais', 'jais', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3508, 'Jalali', 'jalali', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3509, 'Jalaun', 'jalaun', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3510, 'Jalesar', 'jalesar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3511, 'Janghai', 'janghai', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3512, 'Jansath', 'jansath', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3513, 'Jarwa', 'jarwa', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3514, 'Jarwal', 'jarwal', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3515, 'Jasrana', 'jasrana', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3516, 'Jaswantnagar', 'jaswantnagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3517, 'Jaunpur', 'jaunpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3518, 'Jewar', 'jewar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3519, 'Jhajhar', 'jhajhar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3520, 'Jhalu', 'jhalu', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3521, 'Jhansi', 'jhansi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3522, 'Jhinjhak', 'jhinjhak', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3523, 'Jhinjhana', 'jhinjhana', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3524, 'Jhusi', 'jhusi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3525, 'Jiyanpur', 'jiyanpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3526, 'Jyotiba Phule Nagar', 'jyotiba-phule-nagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3527, 'Kabrai', 'kabrai', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3528, 'Kachhwa', 'kachhwa', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3529, 'Kadaura', 'kadaura', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3530, 'Kadipur', 'kadipur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3531, 'Kagarol', 'kagarol', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3532, 'Kaimganj', 'kaimganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3533, 'Kairana', 'kairana', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3534, 'Kakori', 'kakori', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3535, 'Kakrala', 'kakrala', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3536, 'Kalinagar', 'kalinagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3537, 'Kalpi', 'kalpi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3538, 'Kalyanpur', 'kalyanpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3539, 'Kamalganj', 'kamalganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3540, 'Kampil', 'kampil', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3541, 'Kandhla', 'kandhla', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3542, 'Kannauj', 'kannauj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3543, 'Kanpur', 'kanpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3544, 'Kanpur Dehat', 'kanpur-dehat', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3545, 'Kant', 'kant', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00');
INSERT INTO `cities` (`id`, `name`, `slug`, `state_id`, `country_id`, `record_id`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`) VALUES
(3546, 'Kanth', 'kanth', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3547, 'Kaptanganj', 'kaptanganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3548, 'Kara', 'kara', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3549, 'Karari', 'karari', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3550, 'Karbigwan', 'karbigwan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3551, 'Karchana', 'karchana', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3552, 'Karhal', 'karhal', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3553, 'Kasganj', 'kasganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3554, 'Kausani', 'kausani', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3555, 'Kaushambi District', 'kaushambi-district', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3556, 'Kemri', 'kemri', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3557, 'Khada', 'khada', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3558, 'Khaga', 'khaga', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3559, 'Khair', 'khair', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3560, 'Khairabad', 'khairabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3561, 'Khalilabad', 'khalilabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3562, 'Kharela', 'kharela', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3563, 'Khargupur', 'khargupur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3564, 'Khatauli', 'khatauli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3565, 'Khekra', 'khekra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3566, 'Kheri', 'kheri', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3567, 'Khudaganj', 'khudaganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3568, 'Khurja', 'khurja', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3569, 'Khutar', 'khutar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3570, 'Kirakat', 'kirakat', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3571, 'Kiraoli', 'kiraoli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3572, 'Kiratpur', 'kiratpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3573, 'Kishanpur', 'kishanpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3574, 'Kishanpur baral', 'kishanpur-baral', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3575, 'Kishni', 'kishni', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3576, 'Kithor', 'kithor', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3577, 'Konch', 'konch', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3578, 'Kopaganj', 'kopaganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3579, 'Kosi', 'kosi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3580, 'Kotra', 'kotra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3581, 'Kuchesar', 'kuchesar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3582, 'Kudarkot', 'kudarkot', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3583, 'Kulpahar', 'kulpahar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3584, 'Kunda', 'kunda', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3585, 'Kundarkhi', 'kundarkhi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3586, 'Kundarki', 'kundarki', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3587, 'Kurara', 'kurara', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3588, 'Kurebharsaidkhanpur', 'kurebharsaidkhanpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3589, 'Kushinagar', 'kushinagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3590, 'Kusmara', 'kusmara', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3591, 'Kuthaund', 'kuthaund', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3592, 'Laharpur', 'laharpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3593, 'Lakhna', 'lakhna', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3594, 'Lalitpur', 'lalitpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3595, 'Lambhua', 'lambhua', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3596, 'Lar', 'lar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3597, 'Lawar', 'lawar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3598, 'Lawar Khas', 'lawar-khas', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3599, 'Loni', 'loni', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3600, 'Lucknow', 'lucknow', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3601, 'Lucknow District', 'lucknow-district', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3602, 'Machhali Shahar', 'machhali-shahar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3603, 'Machhlishahr', 'machhlishahr', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3604, 'Madhoganj', 'madhoganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3605, 'Maghar', 'maghar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3606, 'Mahaban', 'mahaban', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3607, 'Maharajganj', 'maharajganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3608, 'Mahmudabad', 'mahmudabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3609, 'Mahoba', 'mahoba', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3610, 'Maholi', 'maholi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3611, 'Mahrajganj', 'mahrajganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3612, 'Mahrajganj (Raebareli)', 'mahrajganj-raebareli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3613, 'Mahroni', 'mahroni', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3614, 'Mahul', 'mahul', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3615, 'Mailani', 'mailani', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3616, 'Mainpuri', 'mainpuri', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3617, 'Majhupur', 'majhupur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3618, 'Makanpur', 'makanpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3619, 'Malasa', 'malasa', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3620, 'Malihabad', 'malihabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3621, 'Maniar', 'maniar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3622, 'Manikpur', 'manikpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3623, 'Manjhanpur', 'manjhanpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3624, 'Mankapur', 'mankapur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3625, 'Marahra', 'marahra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3626, 'Mariahu', 'mariahu', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3627, 'Mataundh', 'mataundh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3628, 'Mathura', 'mathura', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3629, 'Mau Aima', 'mau-aima', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3630, 'Mau Aimma', 'mau-aimma', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3631, 'Maudaha', 'maudaha', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3632, 'Maurawan', 'maurawan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3633, 'Mawana', 'mawana', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3634, 'Mawar', 'mawar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3635, 'Meerut', 'meerut', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3636, 'Mehdawal', 'mehdawal', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3637, 'Mehnagar', 'mehnagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3638, 'Mehndawal', 'mehndawal', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3639, 'Milak', 'milak', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3640, 'Milkipur', 'milkipur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3641, 'Miranpur', 'miranpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3642, 'Miranpur Katra', 'miranpur-katra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3643, 'Mirganj', 'mirganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3644, 'Mirzapur', 'mirzapur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3645, 'Misrikh', 'misrikh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3646, 'Mohan', 'mohan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3647, 'Mohanpur', 'mohanpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3648, 'Moradabad', 'moradabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3649, 'Moth', 'moth', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3650, 'Mubarakpur', 'mubarakpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3651, 'Mughal Sarai', 'mughal-sarai', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3652, 'Muhammadabad', 'muhammadabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3653, 'Mukteshwar', 'mukteshwar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3654, 'Mungra Badshahpur', 'mungra-badshahpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3655, 'Munsyari', 'munsyari', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3656, 'Muradabad', 'muradabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3657, 'Muradnagar', 'muradnagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3658, 'Mursan', 'mursan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3659, 'Musafir-Khana', 'musafir-khana', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3660, 'Musafirkhana', 'musafirkhana', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3661, 'Muzaffarnagar', 'muzaffarnagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3662, 'Nadigaon', 'nadigaon', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3663, 'Nagina', 'nagina', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3664, 'Nagla', 'nagla', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3665, 'Nagram', 'nagram', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3666, 'Najibabad', 'najibabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3667, 'Nakur', 'nakur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3668, 'Nanauta', 'nanauta', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3669, 'Nanpara', 'nanpara', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3670, 'Narauli', 'narauli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3671, 'Naraura', 'naraura', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3672, 'Narora', 'narora', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3673, 'Naugama', 'naugama', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3674, 'Naurangpur', 'naurangpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3675, 'Nautanwa', 'nautanwa', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3676, 'Nawabganj', 'nawabganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3677, 'Nawabganj (Barabanki)', 'nawabganj-barabanki', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3678, 'Nawabganj (Bareilly)', 'nawabganj-bareilly', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3679, 'Newara', 'newara', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3680, 'Nichlaul', 'nichlaul', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3681, 'Nigoh', 'nigoh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3682, 'Nihtaur', 'nihtaur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3683, 'Niwari', 'niwari', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3684, 'Noida', 'noida', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3685, 'Nurpur', 'nurpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3686, 'Obra', 'obra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3687, 'Orai', 'orai', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3688, 'Oran', 'oran', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3689, 'Pachperwa', 'pachperwa', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3690, 'Padrauna', 'padrauna', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3691, 'Pahasu', 'pahasu', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3692, 'Paigaon', 'paigaon', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3693, 'Palia Kalan', 'palia-kalan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3694, 'Paras Rampur', 'paras-rampur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3695, 'Parichha', 'parichha', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3696, 'Parichhatgarh', 'parichhatgarh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3697, 'Parshadepur', 'parshadepur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3698, 'Pathakpura', 'pathakpura', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3699, 'Patiali', 'patiali', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3700, 'Pawayan', 'pawayan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3701, 'Payagpur', 'payagpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3702, 'Phalauda', 'phalauda', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3703, 'Phaphamau', 'phaphamau', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3704, 'Phaphund', 'phaphund', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3705, 'Phariha', 'phariha', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3706, 'Pheona', 'pheona', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3707, 'Phulpur', 'phulpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3708, 'Pichhaura', 'pichhaura', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3709, 'Pihani', 'pihani', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3710, 'Pilibhit', 'pilibhit', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3711, 'Pilkhua', 'pilkhua', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3712, 'Pilkhuwa', 'pilkhuwa', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3713, 'Pinahat', 'pinahat', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3714, 'Pipraich', 'pipraich', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3715, 'Prayagraj (Allahabad)', 'prayagraj-allahabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3716, 'Pukhrayan', 'pukhrayan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3717, 'Puranpur', 'puranpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3718, 'Purmafi', 'purmafi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3719, 'Purwa', 'purwa', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3720, 'Qadirganj', 'qadirganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3721, 'Rabupura', 'rabupura', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3722, 'Radha Kund', 'radha-kund', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3723, 'Radhakund', 'radhakund', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3724, 'Raebareli', 'raebareli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3725, 'Ramkola', 'ramkola', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3726, 'Ranipur', 'ranipur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3727, 'Ranipur Barsi', 'ranipur-barsi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3728, 'Rasra', 'rasra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3729, 'Rasulabad', 'rasulabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3730, 'Rath', 'rath', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3731, 'Raya', 'raya', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3732, 'Rehar', 'rehar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3733, 'Renukoot', 'renukoot', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3734, 'Renukut', 'renukut', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3735, 'Reoti', 'reoti', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3736, 'Reotipur', 'reotipur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3737, 'Richha', 'richha', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3738, 'Robertsganj', 'robertsganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3739, 'Rudarpur', 'rudarpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3740, 'Rudauli', 'rudauli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3741, 'Rura', 'rura', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3742, 'Sabalpur', 'sabalpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3743, 'Sachendi', 'sachendi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3744, 'Sadabad', 'sadabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3745, 'Sadat', 'sadat', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3746, 'Safipur', 'safipur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3747, 'Saharanpur', 'saharanpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3748, 'Sahaspur', 'sahaspur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3749, 'Sahaswan', 'sahaswan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3750, 'Sahawar', 'sahawar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3751, 'Sahibabad', 'sahibabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3752, 'Sahpau', 'sahpau', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3753, 'Saidpur', 'saidpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3754, 'Sakhanu', 'sakhanu', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3755, 'Sakit', 'sakit', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3756, 'Salempur', 'salempur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3757, 'Salon', 'salon', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3758, 'Sambhal', 'sambhal', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3759, 'Samthar', 'samthar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3760, 'Sandi', 'sandi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3761, 'Sandila', 'sandila', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3762, 'Sant Kabir Nagar', 'sant-kabir-nagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3763, 'Sant Ravi Das Nagar', 'sant-ravi-das-nagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3764, 'Sarai Akil', 'sarai-akil', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3765, 'Sarai Ekdil', 'sarai-ekdil', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3766, 'Sarai Mir', 'sarai-mir', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3767, 'Sarauli', 'sarauli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3768, 'Sardhana', 'sardhana', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3769, 'Sarila', 'sarila', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3770, 'Sarurpur', 'sarurpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3771, 'Sasni', 'sasni', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3772, 'Satrikh', 'satrikh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3773, 'Saurikh', 'saurikh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3774, 'Sector', 'sector', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3775, 'Seohara', 'seohara', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3776, 'Shahganj', 'shahganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3777, 'Shahi', 'shahi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3778, 'Shahjahanpur', 'shahjahanpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3779, 'Shamli', 'shamli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3780, 'Shamsabad', 'shamsabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3781, 'Shankargarh', 'shankargarh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3782, 'Shergarh', 'shergarh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3783, 'Sherkot', 'sherkot', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3784, 'Shibnagar', 'shibnagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3785, 'Shikarpur (Bulandshahr)', 'shikarpur-bulandshahr', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3786, 'Shikohabad', 'shikohabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3787, 'Shishgarh', 'shishgarh', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3788, 'Shrawasti', 'shrawasti', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3789, 'Siddharthnagar', 'siddharthnagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3790, 'Siddhaur', 'siddhaur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3791, 'Sidhauli', 'sidhauli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3792, 'Sidhpura', 'sidhpura', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3793, 'Sikandarabad', 'sikandarabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3794, 'Sikandarpur', 'sikandarpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3795, 'Sikandra', 'sikandra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3796, 'Sikandra Rao', 'sikandra-rao', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3797, 'Sikandrabad', 'sikandrabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3798, 'Sirathu', 'sirathu', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3799, 'Sirsaganj', 'sirsaganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3800, 'Sisauli', 'sisauli', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3801, 'Siswa Bazar', 'siswa-bazar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3802, 'Sitapur', 'sitapur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3803, 'Sonbhadra', 'sonbhadra', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3804, 'Soron', 'soron', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3805, 'Suar', 'suar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3806, 'Surianwan', 'surianwan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3807, 'Tajpur', 'tajpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3808, 'Talbahat', 'talbahat', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3809, 'Talgram', 'talgram', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3810, 'Tanda', 'tanda', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3811, 'Terha', 'terha', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3812, 'Thakurdwara', 'thakurdwara', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3813, 'Thana Bhawan', 'thana-bhawan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3814, 'Tigri', 'tigri', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3815, 'Tikaitnagar', 'tikaitnagar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3816, 'Tikri', 'tikri', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3817, 'Tilhar', 'tilhar', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3818, 'Tilsahri', 'tilsahri', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3819, 'Tindwari', 'tindwari', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3820, 'Titron', 'titron', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3821, 'Tori Fatehpur', 'tori-fatehpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3822, 'Tulsipur', 'tulsipur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3823, 'Tundla', 'tundla', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3824, 'Ugu', 'ugu', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3825, 'Ujhani', 'ujhani', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3826, 'Unnao', 'unnao', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3827, 'Usawan', 'usawan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3828, 'Usehat', 'usehat', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3829, 'Uska', 'uska', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3830, 'Utraula', 'utraula', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3831, 'Varanasi', 'varanasi', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3832, 'Vindhyachal', 'vindhyachal', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3833, 'Vrindavan', 'vrindavan', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3834, 'Walterganj', 'walterganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3835, 'Wazirganj', 'wazirganj', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3836, 'Yusufpur', 'yusufpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3837, 'Zafarabad', 'zafarabad', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3838, 'Zaidpur', 'zaidpur', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3839, 'Zamania', 'zamania', 34, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3840, 'Almora', 'almora', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3841, 'Bageshwar', 'bageshwar', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3842, 'Barkot', 'barkot', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3843, 'Bazpur', 'bazpur', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3844, 'Bhim Tal', 'bhim-tal', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3845, 'Bhowali', 'bhowali', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3846, 'Birbhaddar', 'birbhaddar', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3847, 'Chakrata', 'chakrata', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3848, 'Chamoli', 'chamoli', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3849, 'Champawat', 'champawat', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3850, 'Clement Town', 'clement-town', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3851, 'Dehradun', 'dehradun', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3852, 'Devaprayag', 'devaprayag', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3853, 'Dharchula', 'dharchula', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3854, 'Doiwala', 'doiwala', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3855, 'Dugadda', 'dugadda', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3856, 'Dwarahat', 'dwarahat', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3857, 'Garhwal', 'garhwal', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3858, 'Haldwani', 'haldwani', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3859, 'Harbatpur', 'harbatpur', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3860, 'Haridwar', 'haridwar', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3861, 'Jaspur', 'jaspur', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3862, 'Joshimath', 'joshimath', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3863, 'Kaladhungi', 'kaladhungi', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3864, 'Kalagarh Project Colony', 'kalagarh-project-colony', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3865, 'Kashipur', 'kashipur', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3866, 'Khatima', 'khatima', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3867, 'Kichha', 'kichha', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3868, 'Kotdwara', 'kotdwara', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3869, 'Laksar', 'laksar', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3870, 'Lansdowne', 'lansdowne', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3871, 'Lohaghat', 'lohaghat', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3872, 'Manglaur', 'manglaur', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3873, 'Mussoorie', 'mussoorie', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3874, 'Naini Tal', 'naini-tal', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3875, 'Narendranagar', 'narendranagar', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3876, 'Pauri', 'pauri', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3877, 'Pipalkoti', 'pipalkoti', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3878, 'Pithoragarh', 'pithoragarh', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3879, 'Raiwala Bara', 'raiwala-bara', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3880, 'Ranikhet', 'ranikhet', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3881, 'Rishikesh', 'rishikesh', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3882, 'Roorkee', 'roorkee', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3883, 'Rudraprayag', 'rudraprayag', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3884, 'Sitarganj', 'sitarganj', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3885, 'Tanakpur', 'tanakpur', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3886, 'Tehri', 'tehri', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3887, 'Tehri-Garhwal', 'tehri-garhwal', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3888, 'Udham Singh Nagar', 'udham-singh-nagar', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3889, 'Uttarkashi', 'uttarkashi', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3890, 'Vikasnagar', 'vikasnagar', 35, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3891, 'Adra', 'adra', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3892, 'Ahmedpur', 'ahmedpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3893, 'Aistala', 'aistala', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3894, 'Aknapur', 'aknapur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3895, 'Alipurduar', 'alipurduar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3896, 'Amlagora', 'amlagora', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3897, 'Amta', 'amta', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3898, 'Amtala', 'amtala', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3899, 'Andal', 'andal', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3900, 'Arambagh community development block', 'arambagh-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3901, 'Asansol', 'asansol', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3902, 'Ashoknagar Kalyangarh', 'ashoknagar-kalyangarh', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3903, 'Badkulla', 'badkulla', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3904, 'Baduria', 'baduria', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3905, 'Bagdogra', 'bagdogra', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3906, 'Bagnan', 'bagnan', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3907, 'Bagula', 'bagula', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3908, 'Bahula', 'bahula', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3909, 'Baidyabati', 'baidyabati', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3910, 'Bakreswar', 'bakreswar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3911, 'Balarampur', 'balarampur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3912, 'Bali Chak', 'bali-chak', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3913, 'Bally', 'bally', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3914, 'Balurghat', 'balurghat', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3915, 'Bamangola community development block', 'bamangola-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3916, 'Baneswar', 'baneswar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3917, 'Bankra', 'bankra', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3918, 'Bankura', 'bankura', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3919, 'Bansberia', 'bansberia', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3920, 'Bansihari community development block', 'bansihari-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3921, 'Barabazar', 'barabazar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3922, 'Baranagar', 'baranagar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3923, 'Barasat', 'barasat', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3924, 'Bardhaman', 'bardhaman', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3925, 'Barjora', 'barjora', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3926, 'Barrackpore', 'barrackpore', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3927, 'Baruipur', 'baruipur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3928, 'Basanti', 'basanti', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3929, 'Basirhat', 'basirhat', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3930, 'Bawali', 'bawali', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3931, 'Begampur', 'begampur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3932, 'Belda', 'belda', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3933, 'Beldanga', 'beldanga', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3934, 'Beliatore', 'beliatore', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3935, 'Berhampore', 'berhampore', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3936, 'Bhadreswar', 'bhadreswar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3937, 'Bhandardaha', 'bhandardaha', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3938, 'Bhatpara', 'bhatpara', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3939, 'Birbhum district', 'birbhum-district', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3940, 'Birpara', 'birpara', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3941, 'Bolpur', 'bolpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3942, 'Budge Budge', 'budge-budge', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4001, 'Canning', 'canning', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4002, 'Chakapara', 'chakapara', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4003, 'Chakdaha', 'chakdaha', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4004, 'Champadanga', 'champadanga', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4005, 'Champahati', 'champahati', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4006, 'Champdani', 'champdani', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4007, 'Chandannagar', 'chandannagar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4008, 'Chandrakona', 'chandrakona', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4009, 'Chittaranjan', 'chittaranjan', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4010, 'Churulia', 'churulia', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4011, 'Contai', 'contai', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4012, 'Cooch Behar', 'cooch-behar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4013, 'Cossimbazar', 'cossimbazar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4014, 'Dakshin Dinajpur district', 'dakshin-dinajpur-district', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4015, 'Dalkola', 'dalkola', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4016, 'Dam Dam', 'dam-dam', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4017, 'Darjeeling', 'darjeeling', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4018, 'Debagram', 'debagram', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4019, 'Debipur', 'debipur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4020, 'Dhaniakhali community development block', 'dhaniakhali-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4021, 'Dhulagari', 'dhulagari', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4022, 'Dhulian', 'dhulian', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4023, 'Dhupguri', 'dhupguri', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4024, 'Diamond Harbour', 'diamond-harbour', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4025, 'Digha', 'digha', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4026, 'Dinhata', 'dinhata', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4027, 'Domjur', 'domjur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4028, 'Dubrajpur', 'dubrajpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4029, 'Egra', 'egra', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4030, 'Falakata', 'falakata', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4031, 'Farakka', 'farakka', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4032, 'Fort Gloster', 'fort-gloster', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4033, 'Gaighata community development block', 'gaighata-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4034, 'Gairkata', 'gairkata', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4035, 'Gangadharpur', 'gangadharpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00');
INSERT INTO `cities` (`id`, `name`, `slug`, `state_id`, `country_id`, `record_id`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`) VALUES
(4036, 'Gangarampur', 'gangarampur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4037, 'Garui', 'garui', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4038, 'Garulia', 'garulia', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4039, 'Ghatal', 'ghatal', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4040, 'Giria', 'giria', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4041, 'Gobardanga', 'gobardanga', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4042, 'Gobindapur', 'gobindapur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4043, 'Gorubathan', 'gorubathan', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4044, 'Gosaba', 'gosaba', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4045, 'Gosanimari', 'gosanimari', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4046, 'Gurdaha', 'gurdaha', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4047, 'Guskhara', 'guskhara', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4048, 'Habra', 'habra', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4049, 'Haldia', 'haldia', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4050, 'Haldibari', 'haldibari', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4051, 'Halisahar', 'halisahar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4052, 'Harindanga', 'harindanga', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4053, 'Haringhata', 'haringhata', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4054, 'Haripur', 'haripur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4055, 'Hasimara', 'hasimara', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4056, 'Hindusthan Cables Town', 'hindusthan-cables-town', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4057, 'Hooghly district', 'hooghly-district', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4058, 'Howrah', 'howrah', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4059, 'Ichapur', 'ichapur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4060, 'Indpur community development block', 'indpur-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4061, 'Ingraj Bazar', 'ingraj-bazar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4062, 'Jafarpur', 'jafarpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4063, 'Jaigaon', 'jaigaon', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4064, 'Jalpaiguri', 'jalpaiguri', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4065, 'Jamuria', 'jamuria', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4066, 'Jangipur', 'jangipur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4067, 'Jaynagar Majilpur', 'jaynagar-majilpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4068, 'Jejur', 'jejur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4069, 'Jhalida', 'jhalida', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4070, 'Jhargram', 'jhargram', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4071, 'Jhilimili', 'jhilimili', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4072, 'Kakdwip', 'kakdwip', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4073, 'Kalaikunda', 'kalaikunda', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4074, 'Kaliaganj', 'kaliaganj', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4075, 'Kalimpong', 'kalimpong', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4076, 'Kalna', 'kalna', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4077, 'Kalyani', 'kalyani', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4078, 'Kamarhati', 'kamarhati', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4079, 'Kamarpukur', 'kamarpukur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4080, 'Kanchrapara', 'kanchrapara', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4081, 'Kandi', 'kandi', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4082, 'Karimpur', 'karimpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4083, 'Katwa', 'katwa', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4084, 'Kenda', 'kenda', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4085, 'Keshabpur', 'keshabpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4086, 'Kharba', 'kharba', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4087, 'Khardaha', 'khardaha', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4088, 'Khatra', 'khatra', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4089, 'Kirnahar', 'kirnahar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4090, 'Kolkata', 'kolkata', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4091, 'Konnagar', 'konnagar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4092, 'Krishnanagar', 'krishnanagar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4093, 'Krishnapur', 'krishnapur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4094, 'Kshirpai', 'kshirpai', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4095, 'Kulpi', 'kulpi', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4096, 'Kultali', 'kultali', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4097, 'Kulti', 'kulti', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4098, 'Kurseong', 'kurseong', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4099, 'Lalgarh', 'lalgarh', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4100, 'Lalgola', 'lalgola', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4101, 'Loyabad', 'loyabad', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4102, 'Madanpur', 'madanpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4103, 'Madhyamgram', 'madhyamgram', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4104, 'Mahiari', 'mahiari', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4105, 'Mahishadal community development block', 'mahishadal-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4106, 'Mainaguri', 'mainaguri', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4107, 'Manikpara', 'manikpara', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4108, 'Masila', 'masila', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4109, 'Mathabhanga', 'mathabhanga', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4110, 'Matiali community development block', 'matiali-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4111, 'Matigara community development block', 'matigara-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4112, 'Medinipur', 'medinipur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4113, 'Mejia community development block', 'mejia-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4114, 'Memari', 'memari', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4115, 'Mirik', 'mirik', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4116, 'Monoharpur', 'monoharpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4117, 'Muragacha', 'muragacha', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4118, 'Muri', 'muri', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4119, 'Murshidabad', 'murshidabad', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4120, 'Nabadwip', 'nabadwip', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4121, 'Nabagram', 'nabagram', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4122, 'Nadia district', 'nadia-district', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4123, 'Nagarukhra', 'nagarukhra', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4124, 'Nagrakata', 'nagrakata', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4125, 'Naihati', 'naihati', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4126, 'Naksalbari', 'naksalbari', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4127, 'Nalhati', 'nalhati', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4128, 'Nalpur', 'nalpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4129, 'Namkhana community development block', 'namkhana-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4130, 'Nandigram', 'nandigram', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4131, 'Nangi', 'nangi', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4132, 'Nayagram community development block', 'nayagram-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4133, 'North 24 Parganas district', 'north-24-parganas-district', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4134, 'Odlabari', 'odlabari', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4135, 'Paikpara', 'paikpara', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4136, 'Panagarh', 'panagarh', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4137, 'Panchla', 'panchla', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4138, 'Panchmura', 'panchmura', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4139, 'Pandua', 'pandua', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4140, 'Panihati', 'panihati', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4141, 'Panskura', 'panskura', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4142, 'Parbatipur', 'parbatipur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4143, 'Paschim Medinipur district', 'paschim-medinipur-district', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4144, 'Patiram', 'patiram', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4145, 'Patrasaer', 'patrasaer', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4146, 'Patuli', 'patuli', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4147, 'Pujali', 'pujali', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4148, 'Puncha community development block', 'puncha-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4149, 'Purba Medinipur district', 'purba-medinipur-district', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4150, 'Purulia', 'purulia', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4151, 'Raghudebbati', 'raghudebbati', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4152, 'Raiganj', 'raiganj', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4153, 'Rajmahal', 'rajmahal', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4154, 'Rajnagar community development block', 'rajnagar-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4155, 'Ramchandrapur', 'ramchandrapur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4156, 'Ramjibanpur', 'ramjibanpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4157, 'Rampur Hat', 'rampur-hat', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4158, 'Ranaghat', 'ranaghat', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4159, 'Raniganj', 'raniganj', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4160, 'Raypur', 'raypur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4161, 'Rishra', 'rishra', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4162, 'Sahapur', 'sahapur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4163, 'Sainthia', 'sainthia', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4164, 'Salanpur community development block', 'salanpur-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4165, 'Sankarpur', 'sankarpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4166, 'Sankrail', 'sankrail', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4167, 'Santipur', 'santipur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4168, 'Santoshpur', 'santoshpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4169, 'Santuri community development block', 'santuri-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4170, 'Sarenga', 'sarenga', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4171, 'Serampore', 'serampore', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4172, 'Serpur', 'serpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4173, 'Shyamnagar West Bengal', 'shyamnagar-west-bengal', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4174, 'Siliguri', 'siliguri', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4175, 'Singur', 'singur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4176, 'Sodpur', 'sodpur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4177, 'Solap', 'solap', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4178, 'Sonada', 'sonada', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4179, 'Sonamukhi', 'sonamukhi', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4180, 'Sonarpur community development block', 'sonarpur-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4181, 'South 24 Parganas district', 'south-24-parganas-district', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4182, 'Srikhanda', 'srikhanda', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4183, 'Srirampur', 'srirampur', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4184, 'Suri', 'suri', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4185, 'Swarupnagar community development block', 'swarupnagar-community-development-block', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4186, 'Takdah', 'takdah', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4187, 'Taki', 'taki', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4188, 'Tamluk', 'tamluk', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4189, 'Tarakeswar', 'tarakeswar', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4190, 'Titagarh', 'titagarh', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4191, 'Tufanganj', 'tufanganj', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4192, 'Tulin', 'tulin', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4193, 'Uchalan', 'uchalan', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4194, 'Ula', 'ula', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4195, 'Uluberia', 'uluberia', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4196, 'Uttar Dinajpur district', 'uttar-dinajpur-district', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4197, 'Uttarpara Kotrung', 'uttarpara-kotrung', 36, 1, NULL, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00');

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

--
-- Table structure for table `cities_translations`
--

CREATE TABLE `cities_translations` (
  `lang_code` varchar(20) NOT NULL,
  `cities_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) DEFAULT NULL,
  `slug` varchar(120) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `contacts`
--

CREATE TABLE `contacts` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(60) NOT NULL,
  `email` varchar(60) DEFAULT NULL,
  `phone` varchar(60) DEFAULT NULL,
  `address` varchar(120) DEFAULT NULL,
  `subject` varchar(120) DEFAULT NULL,
  `content` longtext NOT NULL,
  `custom_fields` text DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'unread',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `contact_custom_fields`
--

CREATE TABLE `contact_custom_fields` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(191) NOT NULL,
  `required` tinyint(1) NOT NULL DEFAULT 0,
  `name` varchar(191) NOT NULL,
  `placeholder` varchar(191) DEFAULT NULL,
  `order` int(11) NOT NULL DEFAULT 999,
  `status` varchar(191) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `contact_custom_fields_translations`
--

CREATE TABLE `contact_custom_fields_translations` (
  `contact_custom_fields_id` bigint(20) UNSIGNED NOT NULL,
  `lang_code` varchar(191) NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `placeholder` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `contact_custom_field_options`
--

CREATE TABLE `contact_custom_field_options` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `custom_field_id` bigint(20) UNSIGNED NOT NULL,
  `label` varchar(191) DEFAULT NULL,
  `value` varchar(191) NOT NULL,
  `order` int(11) NOT NULL DEFAULT 999,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `contact_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) NOT NULL,
  `label` varchar(191) DEFAULT NULL,
  `value` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `contact_replies`
--

CREATE TABLE `contact_replies` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `message` longtext NOT NULL,
  `contact_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `countries`
--

CREATE TABLE `countries` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `nationality` varchar(120) DEFAULT NULL,
  `order` tinyint(4) NOT NULL DEFAULT 0,
  `image` varchar(191) DEFAULT NULL,
  `is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `code` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `countries`
--

INSERT INTO `countries` (`id`, `name`, `nationality`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`, `code`) VALUES
(1, 'India', 'India', 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00', 'IN');

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

--
-- Table structure for table `countries_translations`
--

CREATE TABLE `countries_translations` (
  `lang_code` varchar(20) NOT NULL,
  `countries_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) DEFAULT NULL,
  `nationality` varchar(120) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `dashboard_widgets`
--

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

--
-- Dumping data for table `dashboard_widgets`
--

INSERT INTO `dashboard_widgets` (`id`, `name`, `created_at`, `updated_at`) VALUES
(1, 'widget_total_1', '2025-02-14 08:22:22', '2025-02-14 08:22:22'),
(2, 'widget_total_2', '2025-02-14 08:22:23', '2025-02-14 08:22:23'),
(3, 'widget_total_3', '2025-02-14 08:22:23', '2025-02-14 08:22:23'),
(4, 'widget_total_4', '2025-02-14 08:22:23', '2025-02-14 08:22:23'),
(5, 'widget_total_themes', '2025-02-14 08:22:23', '2025-02-14 08:22:23'),
(6, 'widget_total_users', '2025-02-14 08:22:23', '2025-02-14 08:22:23'),
(7, 'widget_total_plugins', '2025-02-14 08:22:23', '2025-02-14 08:22:23'),
(8, 'widget_total_pages', '2025-02-14 08:22:23', '2025-02-14 08:22:23'),
(9, 'widget_posts_recent', '2025-02-14 08:22:23', '2025-02-14 08:22:23'),
(10, 'widget_audit_logs', '2025-02-14 08:22:24', '2025-02-14 08:22:24'),
(11, 'widget_request_errors', '2025-02-14 08:22:24', '2025-02-14 08:22:24'),
(12, 'widget_ecommerce_report_general', '2025-02-14 08:22:24', '2025-02-14 08:22:24');

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

--
-- Table structure for table `dashboard_widget_settings`
--

CREATE TABLE `dashboard_widget_settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `settings` text DEFAULT 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 NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_brands`
--

CREATE TABLE `ec_brands` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` mediumtext DEFAULT NULL,
  `website` varchar(191) DEFAULT NULL,
  `logo` varchar(191) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `order` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_brands`
--

INSERT INTO `ec_brands` (`id`, `name`, `description`, `website`, `logo`, `status`, `order`, `is_featured`, `created_at`, `updated_at`) VALUES
(6, 'Fashion', 'All Fashion Bransds', NULL, 'third-iphone-removebg-preview.png', 'published', 0, 1, '2025-02-14 23:34:25', '2025-02-14 23:37:38');

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

--
-- Table structure for table `ec_brands_translations`
--

CREATE TABLE `ec_brands_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ec_brands_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` mediumtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_cart`
--

CREATE TABLE `ec_cart` (
  `identifier` varchar(60) NOT NULL,
  `instance` varchar(60) NOT NULL,
  `content` longtext NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_currencies`
--

CREATE TABLE `ec_currencies` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `symbol` varchar(10) NOT NULL,
  `is_prefix_symbol` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `decimals` tinyint(3) UNSIGNED DEFAULT 0,
  `order` int(10) UNSIGNED DEFAULT 0,
  `is_default` tinyint(4) NOT NULL DEFAULT 0,
  `exchange_rate` double NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_currencies`
--

INSERT INTO `ec_currencies` (`id`, `title`, `symbol`, `is_prefix_symbol`, `decimals`, `order`, `is_default`, `exchange_rate`, `created_at`, `updated_at`) VALUES
(1, 'USD', '$', 1, 2, 1, 0, 1, '2024-10-31 20:46:47', '2025-02-14 10:29:49'),
(5, 'INR', '₹', 1, 2, 3, 1, 86.62, '2025-02-14 10:29:49', '2025-02-15 00:59:52');

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

--
-- Table structure for table `ec_customers`
--

CREATE TABLE `ec_customers` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `email` varchar(191) DEFAULT NULL,
  `password` varchar(191) NOT NULL,
  `avatar` varchar(191) DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `confirmed_at` datetime DEFAULT NULL,
  `email_verify_token` varchar(120) DEFAULT NULL,
  `is_vendor` tinyint(1) NOT NULL DEFAULT 0,
  `vendor_verified_at` datetime DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'activated',
  `block_reason` varchar(400) DEFAULT NULL,
  `private_notes` text DEFAULT NULL,
  `stripe_account_id` varchar(191) DEFAULT NULL,
  `stripe_account_active` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_customers`
--

INSERT INTO `ec_customers` (`id`, `name`, `email`, `password`, `avatar`, `dob`, `phone`, `remember_token`, `created_at`, `updated_at`, `confirmed_at`, `email_verify_token`, `is_vendor`, `vendor_verified_at`, `status`, `block_reason`, `private_notes`, `stripe_account_id`, `stripe_account_active`) VALUES
(11, 'Ranavadiya Hardik', 'hndeveloping@gmail.com', '$2y$12$wp9/XEr9xBGIumNau5CSAegJrKk6cGf8SsUWhOPe0nbct0t7AbU/C', 'customers/11/logo-avs.jpeg', NULL, '9313535043', 'rdhZtTE84qnCeegkW0HJzxeulFCtXVjGSD283vLvRAtYmxarugJeRl8a723E', '2025-02-14 10:32:16', '2025-02-14 21:54:59', '2025-02-14 16:02:16', NULL, 1, '2025-02-15 03:24:59', 'activated', NULL, NULL, NULL, 0),
(12, 'Ashtvinayak Soft Solutions', 'ranavadiyahardik31@gmail.com', '$2y$12$z6CW1kh/PiHHAtxej8UW7uu1TGt8xQ1ZBN9wCsodUA1e96rMi2oy6', NULL, NULL, '', NULL, '2025-02-15 01:02:35', '2025-02-15 01:02:44', '2025-02-15 06:32:44', NULL, 0, NULL, 'activated', NULL, NULL, NULL, 0);

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

--
-- Table structure for table `ec_customer_addresses`
--

CREATE TABLE `ec_customer_addresses` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `email` varchar(60) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `country` varchar(120) DEFAULT NULL,
  `state` varchar(120) DEFAULT NULL,
  `city` varchar(120) DEFAULT NULL,
  `address` varchar(191) DEFAULT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL,
  `is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `zip_code` varchar(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_customer_addresses`
--

INSERT INTO `ec_customer_addresses` (`id`, `name`, `email`, `phone`, `country`, `state`, `city`, `address`, `customer_id`, `is_default`, `created_at`, `updated_at`, `zip_code`) VALUES
(13, 'Ranavadiya Hardik', 'hndeveloping@gmail.com', '9313535043', 'IN', 'gujrat', 'Amreli', 'Marutinagar', 11, 1, '2025-02-14 10:42:39', '2025-02-14 10:42:39', NULL),
(14, 'Ashtvinayak Soft Solutions', 'ranavadiyahardik31@gmail.com', '9313535048', 'IN', 'Gujarat', 'Amreli', 'Marutinagar Hanuman Para Road', 12, 1, '2025-02-15 01:05:28', '2025-02-15 01:05:28', NULL);

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

--
-- Table structure for table `ec_customer_deletion_requests`
--

CREATE TABLE `ec_customer_deletion_requests` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL,
  `customer_name` varchar(191) DEFAULT NULL,
  `customer_phone` varchar(191) DEFAULT NULL,
  `customer_email` varchar(191) DEFAULT NULL,
  `token` varchar(191) NOT NULL,
  `status` varchar(50) NOT NULL DEFAULT 'waiting_for_confirmation',
  `reason` text DEFAULT NULL,
  `confirmed_at` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_customer_password_resets`
--

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

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

--
-- Table structure for table `ec_customer_recently_viewed_products`
--

CREATE TABLE `ec_customer_recently_viewed_products` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_customer_recently_viewed_products`
--

INSERT INTO `ec_customer_recently_viewed_products` (`id`, `customer_id`, `product_id`) VALUES
(2, 11, 101),
(3, 12, 101),
(4, 11, 127);

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

--
-- Table structure for table `ec_customer_used_coupons`
--

CREATE TABLE `ec_customer_used_coupons` (
  `discount_id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_discounts`
--

CREATE TABLE `ec_discounts` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(120) DEFAULT NULL,
  `code` varchar(20) DEFAULT NULL,
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `quantity` int(11) DEFAULT NULL,
  `total_used` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `value` double DEFAULT NULL,
  `type` varchar(60) DEFAULT 'coupon',
  `can_use_with_promotion` tinyint(1) NOT NULL DEFAULT 0,
  `can_use_with_flash_sale` tinyint(1) NOT NULL DEFAULT 0,
  `discount_on` varchar(20) DEFAULT NULL,
  `product_quantity` int(10) UNSIGNED DEFAULT NULL,
  `type_option` varchar(100) NOT NULL DEFAULT 'amount',
  `target` varchar(100) NOT NULL DEFAULT 'all-orders',
  `min_order_price` decimal(15,2) DEFAULT NULL,
  `apply_via_url` tinyint(1) NOT NULL DEFAULT 0,
  `display_at_checkout` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `store_id` bigint(20) UNSIGNED DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_discounts`
--

INSERT INTO `ec_discounts` (`id`, `title`, `code`, `start_date`, `end_date`, `quantity`, `total_used`, `value`, `type`, `can_use_with_promotion`, `can_use_with_flash_sale`, `discount_on`, `product_quantity`, `type_option`, `target`, `min_order_price`, `apply_via_url`, `display_at_checkout`, `created_at`, `updated_at`, `store_id`, `description`) VALUES
(1, 'Discount 1', 'YULQKOT5EM3X', '2024-10-31 03:46:52', NULL, NULL, 0, 401, 'coupon', 0, 0, NULL, NULL, 'amount', 'all-orders', NULL, 0, 1, '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, NULL),
(2, 'Discount 2', 'TZBRJ426LE0L', '2024-10-31 03:46:52', '2024-11-30 03:46:52', NULL, 0, 40, 'coupon', 0, 0, NULL, NULL, 'percentage', 'all-orders', NULL, 0, 1, '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, NULL),
(3, 'Discount 3', 'DGENNOWFFOXW', '2024-10-31 03:46:52', '2024-11-02 03:46:52', NULL, 0, 569, 'coupon', 0, 0, NULL, NULL, 'same-price', 'all-orders', NULL, 0, 1, '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, NULL),
(4, 'Discount 4', 'QAKTXNYIMYEZ', '2024-10-31 03:46:52', NULL, NULL, 0, 725, 'coupon', 0, 0, NULL, NULL, 'amount', 'all-orders', NULL, 0, 1, '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, NULL),
(5, 'Discount 5', '1TASBWFJYI92', '2024-10-31 03:46:52', '2024-11-28 03:46:52', NULL, 0, 355, 'coupon', 0, 0, NULL, NULL, 'same-price', 'all-orders', NULL, 0, 1, '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, NULL),
(6, 'Discount 6', '319ECRO40LDD', '2024-10-31 03:46:52', '2024-11-08 03:46:52', NULL, 0, 202, 'coupon', 0, 0, NULL, NULL, 'shipping', 'all-orders', NULL, 0, 1, '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, NULL),
(7, 'Discount 7', '6B8B8UZRRFDK', '2024-10-31 03:46:52', NULL, NULL, 0, 487, 'coupon', 0, 0, NULL, NULL, 'same-price', 'all-orders', NULL, 0, 1, '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, NULL),
(8, 'Discount 8', 'FE78VTNEDRY4', '2024-10-31 03:46:52', '2024-11-21 03:46:52', NULL, 0, 662, 'coupon', 0, 0, NULL, NULL, 'shipping', 'all-orders', NULL, 0, 1, '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, NULL),
(9, 'Discount 9', 'EEGAYNUFPKD8', '2024-10-31 03:46:52', '2024-11-20 03:46:52', NULL, 0, 572, 'coupon', 0, 0, NULL, NULL, 'shipping', 'all-orders', NULL, 0, 1, '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, NULL),
(10, 'Discount 10', 'K1YXSUX5WQV8', '2024-10-31 03:46:52', NULL, NULL, 0, 637, 'coupon', 0, 0, NULL, NULL, 'amount', 'all-orders', NULL, 0, 1, '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, NULL),
(11, NULL, 'KDVLETLRQJUP', '2025-02-14 00:00:00', '2025-02-16 00:00:00', NULL, 1, 20, 'coupon', 0, 0, NULL, 1, 'amount', 'amount-minimum-order', 200.00, 0, 0, '2025-02-14 10:39:42', '2025-02-14 10:42:39', NULL, NULL);

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

--
-- Table structure for table `ec_discount_customers`
--

CREATE TABLE `ec_discount_customers` (
  `discount_id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_discount_products`
--

CREATE TABLE `ec_discount_products` (
  `discount_id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_discount_product_categories`
--

CREATE TABLE `ec_discount_product_categories` (
  `discount_id` bigint(20) UNSIGNED NOT NULL,
  `product_category_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_discount_product_collections`
--

CREATE TABLE `ec_discount_product_collections` (
  `discount_id` bigint(20) UNSIGNED NOT NULL,
  `product_collection_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_flash_sales`
--

CREATE TABLE `ec_flash_sales` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `end_date` datetime NOT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_flash_sales`
--

INSERT INTO `ec_flash_sales` (`id`, `name`, `end_date`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Winter Sale', '2024-11-30 00:00:00', 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(2, 'Demo Sale', '2025-03-20 00:00:00', 'published', '2025-02-19 03:46:28', '2025-02-19 03:46:28');

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

--
-- Table structure for table `ec_flash_sales_translations`
--

CREATE TABLE `ec_flash_sales_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ec_flash_sales_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_flash_sale_products`
--

CREATE TABLE `ec_flash_sale_products` (
  `flash_sale_id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL,
  `price` double UNSIGNED DEFAULT NULL,
  `quantity` int(10) UNSIGNED DEFAULT NULL,
  `sold` int(10) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_flash_sale_products`
--

INSERT INTO `ec_flash_sale_products` (`flash_sale_id`, `product_id`, `price`, `quantity`, `sold`) VALUES
(2, 101, 700, 5, 0),
(2, 127, 1200, 3, 0);

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

--
-- Table structure for table `ec_global_options`
--

CREATE TABLE `ec_global_options` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL COMMENT 'Name of options',
  `option_type` varchar(191) NOT NULL COMMENT 'option type',
  `required` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Checked if this option is required',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_global_options`
--

INSERT INTO `ec_global_options` (`id`, `name`, `option_type`, `required`, `created_at`, `updated_at`) VALUES
(1, 'Warranty', 'Botble\\Ecommerce\\Option\\OptionType\\RadioButton', 1, '2024-10-31 20:46:52', '2024-10-31 20:46:52');

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

--
-- Table structure for table `ec_global_options_translations`
--

CREATE TABLE `ec_global_options_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ec_global_options_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_global_option_value`
--

CREATE TABLE `ec_global_option_value` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `option_id` bigint(20) UNSIGNED NOT NULL COMMENT 'option id',
  `option_value` tinytext DEFAULT NULL COMMENT 'option value',
  `affect_price` double DEFAULT NULL COMMENT 'value of price of this option affect',
  `order` int(11) NOT NULL DEFAULT 9999,
  `affect_type` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0. fixed 1. percent',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_global_option_value`
--

INSERT INTO `ec_global_option_value` (`id`, `option_id`, `option_value`, `affect_price`, `order`, `affect_type`, `created_at`, `updated_at`) VALUES
(1, 1, '1 Year', 0, 9999, 0, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(2, 1, '2 Year', 10, 9999, 0, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(3, 1, '3 Year', 20, 9999, 0, '2024-10-31 20:46:52', '2024-10-31 20:46:52');

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

--
-- Table structure for table `ec_global_option_value_translations`
--

CREATE TABLE `ec_global_option_value_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ec_global_option_value_id` bigint(20) UNSIGNED NOT NULL,
  `option_value` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_grouped_products`
--

CREATE TABLE `ec_grouped_products` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `parent_product_id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL,
  `fixed_qty` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_invoices`
--

CREATE TABLE `ec_invoices` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(191) NOT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `code` varchar(191) NOT NULL,
  `customer_name` varchar(191) DEFAULT NULL,
  `company_name` varchar(191) DEFAULT NULL,
  `company_logo` varchar(191) DEFAULT NULL,
  `customer_email` varchar(191) DEFAULT NULL,
  `customer_phone` varchar(191) DEFAULT NULL,
  `customer_address` varchar(191) DEFAULT NULL,
  `customer_tax_id` varchar(191) DEFAULT NULL,
  `sub_total` decimal(15,2) UNSIGNED NOT NULL,
  `tax_amount` decimal(15,2) UNSIGNED NOT NULL DEFAULT 0.00,
  `shipping_amount` decimal(15,2) UNSIGNED NOT NULL DEFAULT 0.00,
  `discount_amount` decimal(15,2) UNSIGNED NOT NULL DEFAULT 0.00,
  `shipping_option` varchar(60) DEFAULT NULL,
  `shipping_method` varchar(60) NOT NULL DEFAULT 'default',
  `coupon_code` varchar(120) DEFAULT NULL,
  `discount_description` varchar(191) DEFAULT NULL,
  `amount` decimal(15,2) UNSIGNED NOT NULL,
  `description` text DEFAULT NULL,
  `payment_id` bigint(20) UNSIGNED DEFAULT NULL,
  `status` varchar(191) NOT NULL DEFAULT 'pending',
  `paid_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_invoices`
--

INSERT INTO `ec_invoices` (`id`, `reference_type`, `reference_id`, `code`, `customer_name`, `company_name`, `company_logo`, `customer_email`, `customer_phone`, `customer_address`, `customer_tax_id`, `sub_total`, `tax_amount`, `shipping_amount`, `discount_amount`, `shipping_option`, `shipping_method`, `coupon_code`, `discount_description`, `amount`, `description`, `payment_id`, `status`, `paid_at`, `created_at`, `updated_at`) VALUES
(1, 'Botble\\Ecommerce\\Models\\Order', 1, 'INV-1', 'Ranavadiya Hardik', '', NULL, 'hndeveloping@gmail.com', '9313535043', 'Marutinagar, Amreli, gujrat, IN', NULL, 650.00, 97.50, 0.00, 20.00, '3', 'default', 'KDVLETLRQJUP', NULL, 727.50, NULL, 1, 'completed', NULL, '2025-02-14 10:41:10', '2025-02-14 10:46:03'),
(3, 'Botble\\Ecommerce\\Models\\Order', 3, 'INV-2', 'Ashtvinayak Soft Solutions', '', NULL, 'ranavadiyahardik31@gmail.com', '9313535048', 'Marutinagar Hanuman Para Road, Amreli, Gujarat, IN', NULL, 700.00, 0.00, 0.00, 0.00, '3', 'default', NULL, NULL, 700.00, NULL, 3, 'canceled', NULL, '2025-02-15 01:07:30', '2025-02-15 01:24:11');

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

--
-- Table structure for table `ec_invoice_items`
--

CREATE TABLE `ec_invoice_items` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `invoice_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(191) NOT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `qty` int(10) UNSIGNED NOT NULL,
  `price` decimal(15,2) NOT NULL DEFAULT 0.00,
  `sub_total` decimal(15,2) UNSIGNED NOT NULL,
  `tax_amount` decimal(15,2) UNSIGNED NOT NULL DEFAULT 0.00,
  `discount_amount` decimal(15,2) UNSIGNED NOT NULL DEFAULT 0.00,
  `amount` decimal(15,2) UNSIGNED NOT NULL,
  `options` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_invoice_items`
--

INSERT INTO `ec_invoice_items` (`id`, `invoice_id`, `reference_type`, `reference_id`, `name`, `description`, `image`, `qty`, `price`, `sub_total`, `tax_amount`, `discount_amount`, `amount`, `options`, `created_at`, `updated_at`) VALUES
(1, 1, 'Botble\\Ecommerce\\Models\\Product', 1, 'Vintage Denim Jacket', NULL, 'main/products/product-18.jpg', 1, 650.00, 650.00, 97.50, 0.00, 747.50, '{\"image\":\"main\\/products\\/product-18.jpg\",\"attributes\":\"\",\"taxRate\":15,\"taxClasses\":{\"Import Tax\":15},\"options\":[],\"extras\":[],\"sku\":\"PO-155\",\"weight\":860}', '2025-02-14 10:42:40', '2025-02-14 10:42:40'),
(3, 3, 'Botble\\Ecommerce\\Models\\Product', 102, 'Women\'s Cotton Blend Co-ord Set', NULL, 'stores/ladylife/k2.jpeg', 1, 700.00, 700.00, 0.00, 0.00, 700.00, '{\"image\":\"stores\\/ladylife\\/k2.jpeg\",\"attributes\":\"(Color: Green, Size: S)\",\"taxRate\":0,\"taxClasses\":{\"None\":0},\"options\":[],\"extras\":[],\"sku\":\"SF-2443-ZU0Q-green-s\",\"weight\":200}', '2025-02-15 01:16:40', '2025-02-15 01:16:40');

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

--
-- Table structure for table `ec_options`
--

CREATE TABLE `ec_options` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL COMMENT 'Name of options',
  `option_type` varchar(191) DEFAULT NULL COMMENT 'option type',
  `product_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `order` int(11) NOT NULL DEFAULT 9999,
  `required` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Checked if this option is required',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_options_translations`
--

CREATE TABLE `ec_options_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ec_options_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_option_value`
--

CREATE TABLE `ec_option_value` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `option_id` bigint(20) UNSIGNED NOT NULL COMMENT 'option id',
  `option_value` tinytext DEFAULT NULL COMMENT 'option value',
  `affect_price` double DEFAULT NULL COMMENT 'value of price of this option affect',
  `order` int(11) NOT NULL DEFAULT 9999,
  `affect_type` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0. fixed 1. percent',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_option_value_translations`
--

CREATE TABLE `ec_option_value_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ec_option_value_id` bigint(20) UNSIGNED NOT NULL,
  `option_value` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_orders`
--

CREATE TABLE `ec_orders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `code` varchar(191) DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `shipping_option` varchar(60) DEFAULT NULL,
  `shipping_method` varchar(60) NOT NULL DEFAULT 'default',
  `status` varchar(120) NOT NULL DEFAULT 'pending',
  `amount` decimal(15,2) NOT NULL,
  `tax_amount` decimal(15,2) DEFAULT NULL,
  `shipping_amount` decimal(15,2) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `coupon_code` varchar(120) DEFAULT NULL,
  `discount_amount` decimal(15,2) DEFAULT NULL,
  `sub_total` decimal(15,2) NOT NULL,
  `is_confirmed` tinyint(1) NOT NULL DEFAULT 0,
  `discount_description` varchar(191) DEFAULT NULL,
  `is_finished` tinyint(1) DEFAULT 0,
  `cancellation_reason` varchar(191) DEFAULT NULL,
  `cancellation_reason_description` varchar(191) DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `token` varchar(120) DEFAULT NULL,
  `payment_id` bigint(20) UNSIGNED DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `store_id` bigint(20) UNSIGNED DEFAULT NULL,
  `proof_file` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_orders`
--

INSERT INTO `ec_orders` (`id`, `code`, `user_id`, `shipping_option`, `shipping_method`, `status`, `amount`, `tax_amount`, `shipping_amount`, `description`, `coupon_code`, `discount_amount`, `sub_total`, `is_confirmed`, `discount_description`, `is_finished`, `cancellation_reason`, `cancellation_reason_description`, `completed_at`, `token`, `payment_id`, `created_at`, `updated_at`, `store_id`, `proof_file`) VALUES
(1, '#10000001', 11, '3', 'default', 'completed', 727.50, 97.50, 0.00, NULL, 'KDVLETLRQJUP', 20.00, 650.00, 1, NULL, 1, NULL, NULL, '2025-02-14 10:46:03', '8d8ae13fd83493ca218ca60607eb7dd6', 1, '2025-02-14 10:41:10', '2025-02-14 21:55:54', NULL, NULL),
(3, '#10000002', 12, '3', 'default', 'canceled', 700.00, 0.00, 0.00, 'This Order Is Done', NULL, 0.00, 700.00, 1, NULL, 1, 'other', 'Cenceled', NULL, '40b39bc612cee6f78fe34484bb7938ed', 3, '2025-02-15 01:07:30', '2025-02-19 04:02:56', 9, NULL);

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

--
-- Table structure for table `ec_order_addresses`
--

CREATE TABLE `ec_order_addresses` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `email` varchar(191) DEFAULT NULL,
  `country` varchar(120) DEFAULT NULL,
  `state` varchar(120) DEFAULT NULL,
  `city` varchar(120) DEFAULT NULL,
  `address` varchar(191) DEFAULT NULL,
  `order_id` bigint(20) UNSIGNED NOT NULL,
  `zip_code` varchar(20) DEFAULT NULL,
  `type` varchar(60) NOT NULL DEFAULT 'shipping_address'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_order_addresses`
--

INSERT INTO `ec_order_addresses` (`id`, `name`, `phone`, `email`, `country`, `state`, `city`, `address`, `order_id`, `zip_code`, `type`) VALUES
(1, 'Ranavadiya Hardik', '9313535043', 'hndeveloping@gmail.com', 'IN', 'gujrat', 'Amreli', 'Marutinagar', 1, NULL, 'shipping_address'),
(3, 'Ashtvinayak Soft Solutions', '9313535048', 'ranavadiyahardik31@gmail.com', 'IN', 'Gujarat', 'Amreli', 'Marutinagar Hanuman Para Road', 3, NULL, 'shipping_address');

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

--
-- Table structure for table `ec_order_histories`
--

CREATE TABLE `ec_order_histories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `action` varchar(120) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `order_id` bigint(20) UNSIGNED NOT NULL,
  `extras` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_order_histories`
--

INSERT INTO `ec_order_histories` (`id`, `action`, `description`, `user_id`, `order_id`, `extras`, `created_at`, `updated_at`) VALUES
(1, 'create_order_from_payment_page', 'Order is created from checkout page', NULL, 1, NULL, '2025-02-14 10:42:39', '2025-02-14 10:42:39'),
(2, 'create_order', 'New order #10000001 from Ranavadiya Hardik', NULL, 1, NULL, '2025-02-14 10:42:52', '2025-02-14 10:42:52'),
(3, 'confirm_order', 'Order was verified by %user_name%', 1, 1, NULL, '2025-02-14 10:43:50', '2025-02-14 10:43:50'),
(4, 'confirm_payment', 'Payment was confirmed (amount ₹727.50) by %user_name%', 1, 1, NULL, '2025-02-14 10:45:35', '2025-02-14 10:45:35'),
(5, 'update_shipping_status', 'Changed status of shipping to: Delivered. Updated by: %user_name%', 1, 1, NULL, '2025-02-14 10:46:03', '2025-02-14 10:46:03'),
(6, 'mark_order_as_completed', 'Order is marked as completed by AVS Admin at 2025-02-14 16:16:05', 1, 1, NULL, '2025-02-14 10:46:05', '2025-02-14 10:46:05'),
(10, 'create_order_from_payment_page', 'Order is created from checkout page', NULL, 3, NULL, '2025-02-15 01:16:40', '2025-02-15 01:16:40'),
(11, 'send_order_confirmation_email', 'The email confirmation was sent to customer', NULL, 3, NULL, '2025-02-15 01:18:14', '2025-02-15 01:18:14'),
(12, 'create_order', 'New order #10000002 from Ashtvinayak Soft Solutions', NULL, 3, NULL, '2025-02-15 01:18:14', '2025-02-15 01:18:14'),
(13, 'confirm_order', 'Order was verified by %user_name%', 1, 3, NULL, '2025-02-15 01:20:19', '2025-02-15 01:20:19'),
(14, 'update_shipping_status', 'Changed status of shipping to: Ready to be shipped out. Updated by: %user_name%', 1, 3, NULL, '2025-02-15 01:21:58', '2025-02-15 01:21:58'),
(15, 'update_shipping_status', 'Changed status of shipping to: Approved. Updated by: %user_name%', 1, 3, NULL, '2025-02-15 01:23:20', '2025-02-15 01:23:20'),
(16, 'update_shipping_status', 'Changed status of shipping to: Pending. Updated by: %user_name%', 1, 3, NULL, '2025-02-15 01:23:49', '2025-02-15 01:23:49'),
(17, 'cancel_order', 'Order was cancelled by customer Ashtvinayak Soft Solutions with reason Cenceled', NULL, 3, NULL, '2025-02-15 01:24:23', '2025-02-15 01:24:23');

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

--
-- Table structure for table `ec_order_product`
--

CREATE TABLE `ec_order_product` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `order_id` bigint(20) UNSIGNED NOT NULL,
  `qty` int(11) NOT NULL,
  `price` decimal(15,2) NOT NULL,
  `tax_amount` decimal(15,2) NOT NULL,
  `options` text DEFAULT NULL,
  `product_options` text DEFAULT NULL COMMENT 'product option data',
  `product_id` bigint(20) UNSIGNED DEFAULT NULL,
  `product_name` varchar(191) NOT NULL,
  `product_image` varchar(191) DEFAULT NULL,
  `weight` double(8,2) DEFAULT 0.00,
  `restock_quantity` int(10) UNSIGNED DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `product_type` varchar(60) NOT NULL DEFAULT 'physical',
  `times_downloaded` int(11) NOT NULL DEFAULT 0,
  `license_code` char(36) DEFAULT NULL,
  `downloaded_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_order_product`
--

INSERT INTO `ec_order_product` (`id`, `order_id`, `qty`, `price`, `tax_amount`, `options`, `product_options`, `product_id`, `product_name`, `product_image`, `weight`, `restock_quantity`, `created_at`, `updated_at`, `product_type`, `times_downloaded`, `license_code`, `downloaded_at`) VALUES
(1, 1, 1, 650.00, 97.50, '{\"image\":\"main\\/products\\/product-18.jpg\",\"attributes\":\"\",\"taxRate\":15,\"taxClasses\":{\"Import Tax\":15},\"options\":[],\"extras\":[],\"sku\":\"PO-155\",\"weight\":860}', '[]', 1, 'Vintage Denim Jacket', 'main/products/product-18.jpg', 860.00, 0, '2025-02-14 10:41:10', '2025-02-14 10:42:39', 'physical', 0, NULL, NULL),
(3, 3, 1, 700.00, 0.00, '{\"image\":\"stores\\/ladylife\\/k2.jpeg\",\"attributes\":\"(Color: Green, Size: S)\",\"taxRate\":0,\"taxClasses\":{\"None\":0},\"options\":[],\"extras\":[],\"sku\":\"SF-2443-ZU0Q-green-s\",\"weight\":200}', '[]', 102, 'Women\'s Cotton Blend Co-ord Set', 'stores/ladylife/k2.jpeg', 200.00, 0, '2025-02-15 01:07:30', '2025-02-15 01:16:40', 'physical', 0, NULL, NULL);

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

--
-- Table structure for table `ec_order_referrals`
--

CREATE TABLE `ec_order_referrals` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `ip` varchar(39) DEFAULT NULL,
  `landing_domain` varchar(191) DEFAULT NULL,
  `landing_page` varchar(191) DEFAULT NULL,
  `landing_params` varchar(191) DEFAULT NULL,
  `referral` varchar(191) DEFAULT NULL,
  `gclid` varchar(191) DEFAULT NULL,
  `fclid` varchar(191) DEFAULT NULL,
  `utm_source` varchar(191) DEFAULT NULL,
  `utm_campaign` varchar(191) DEFAULT NULL,
  `utm_medium` varchar(191) DEFAULT NULL,
  `utm_term` varchar(191) DEFAULT NULL,
  `utm_content` varchar(191) DEFAULT NULL,
  `referrer_url` text DEFAULT NULL,
  `referrer_domain` varchar(191) DEFAULT NULL,
  `order_id` bigint(20) UNSIGNED DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_order_returns`
--

CREATE TABLE `ec_order_returns` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `code` varchar(191) DEFAULT NULL,
  `order_id` bigint(20) UNSIGNED NOT NULL COMMENT 'Order ID',
  `store_id` bigint(20) UNSIGNED DEFAULT NULL COMMENT 'Store ID',
  `user_id` bigint(20) UNSIGNED NOT NULL COMMENT 'Customer ID',
  `reason` text DEFAULT NULL COMMENT 'Reason return order',
  `order_status` varchar(191) DEFAULT NULL COMMENT 'Order current status',
  `return_status` varchar(191) NOT NULL COMMENT 'Return status',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_order_return_histories`
--

CREATE TABLE `ec_order_return_histories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `order_return_id` bigint(20) UNSIGNED NOT NULL,
  `action` varchar(191) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `reason` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_order_return_items`
--

CREATE TABLE `ec_order_return_items` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `order_return_id` bigint(20) UNSIGNED NOT NULL COMMENT 'Order return id',
  `order_product_id` bigint(20) UNSIGNED NOT NULL COMMENT 'Order product id',
  `product_id` bigint(20) UNSIGNED NOT NULL COMMENT 'Product id',
  `product_name` varchar(191) NOT NULL,
  `product_image` varchar(191) DEFAULT NULL,
  `qty` int(11) NOT NULL COMMENT 'Quantity return',
  `price` decimal(15,2) NOT NULL COMMENT 'Price Product',
  `reason` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `refund_amount` decimal(12,2) DEFAULT 0.00
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_order_tax_information`
--

CREATE TABLE `ec_order_tax_information` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `order_id` bigint(20) UNSIGNED NOT NULL,
  `company_name` varchar(120) NOT NULL,
  `company_address` varchar(191) NOT NULL,
  `company_tax_code` varchar(20) NOT NULL,
  `company_email` varchar(60) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_products`
--

CREATE TABLE `ec_products` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` text DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `images` text DEFAULT NULL,
  `video_media` text DEFAULT NULL,
  `sku` varchar(191) DEFAULT NULL,
  `order` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `quantity` int(10) UNSIGNED DEFAULT NULL,
  `allow_checkout_when_out_of_stock` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `with_storehouse_management` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `brand_id` bigint(20) UNSIGNED DEFAULT NULL,
  `is_variation` tinyint(4) NOT NULL DEFAULT 0,
  `sale_type` tinyint(4) NOT NULL DEFAULT 0,
  `price` double UNSIGNED DEFAULT NULL,
  `sale_price` double UNSIGNED DEFAULT NULL,
  `start_date` timestamp NULL DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  `length` double(8,2) DEFAULT NULL,
  `wide` double(8,2) DEFAULT NULL,
  `height` double(8,2) DEFAULT NULL,
  `weight` double(8,2) DEFAULT NULL,
  `tax_id` bigint(20) UNSIGNED DEFAULT NULL,
  `views` bigint(20) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `stock_status` varchar(191) DEFAULT 'in_stock',
  `store_id` bigint(20) UNSIGNED DEFAULT NULL,
  `created_by_id` bigint(20) UNSIGNED DEFAULT 0,
  `created_by_type` varchar(191) NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `approved_by` bigint(20) UNSIGNED DEFAULT 0,
  `image` varchar(191) DEFAULT NULL,
  `product_type` varchar(60) DEFAULT 'physical',
  `barcode` varchar(50) DEFAULT NULL,
  `cost_per_item` double DEFAULT NULL,
  `generate_license_code` tinyint(1) NOT NULL DEFAULT 0,
  `minimum_order_quantity` int(10) UNSIGNED DEFAULT 0,
  `maximum_order_quantity` int(10) UNSIGNED DEFAULT 0,
  `notify_attachment_updated` tinyint(1) NOT NULL DEFAULT 0,
  `specification_table_id` bigint(20) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_products`
--

INSERT INTO `ec_products` (`id`, `name`, `description`, `content`, `status`, `images`, `video_media`, `sku`, `order`, `quantity`, `allow_checkout_when_out_of_stock`, `with_storehouse_management`, `is_featured`, `brand_id`, `is_variation`, `sale_type`, `price`, `sale_price`, `start_date`, `end_date`, `length`, `wide`, `height`, `weight`, `tax_id`, `views`, `created_at`, `updated_at`, `stock_status`, `store_id`, `created_by_id`, `created_by_type`, `approved_by`, `image`, `product_type`, `barcode`, `cost_per_item`, `generate_license_code`, `minimum_order_quantity`, `maximum_order_quantity`, `notify_attachment_updated`, `specification_table_id`) VALUES
(101, 'Women\'s Cotton Blend Co-ord Set', '', '', 'published', '[\"stores\\/ladylife\\/k2.jpeg\",\"stores\\/ladylife\\/k1.jpeg\",\"stores\\/ladylife\\/k3.jpeg\"]', '\"[]\"', 'SF-2443-ZU0Q', 0, 0, 0, 0, 0, 4, 0, 1, 700, 650, '2025-02-15 03:33:16', '2025-02-17 03:33:20', 50.00, 50.00, 50.00, 200.00, NULL, 4, '2025-02-14 22:06:31', '2025-02-15 01:24:11', 'in_stock', 9, 11, 'Botble\\Ecommerce\\Models\\Customer', 0, 'stores/ladylife/k2.jpeg', 'physical', NULL, NULL, 0, 0, 0, 0, NULL),
(102, 'Women\'s Cotton Blend Co-ord Set', '', NULL, 'published', '[]', NULL, 'SF-2443-ZU0Q-green-s', 0, 1, 0, 0, 0, 4, 1, 1, 700, 650, '2025-02-15 03:33:16', '2025-02-17 03:33:20', 50.00, 50.00, 50.00, 200.00, NULL, 0, '2025-02-14 22:06:31', '2025-02-15 01:24:11', 'in_stock', 9, 11, 'Botble\\Ecommerce\\Models\\Customer', 0, NULL, 'physical', NULL, 650, 0, 0, 0, 0, NULL),
(103, 'Women\'s Cotton Blend Co-ord Set', '', NULL, 'published', '[]', NULL, 'SF-2443-1OJJ', 0, 0, 0, 0, 0, 4, 1, 0, 700, 650, NULL, NULL, 50.00, 50.00, 50.00, 200.00, NULL, 0, '2025-02-14 22:10:43', '2025-02-19 03:45:18', 'in_stock', 9, 11, 'Botble\\Ecommerce\\Models\\Customer', 0, NULL, 'physical', NULL, 650, 0, 0, 0, 0, NULL),
(127, 'Demo New Product', '<ol><li><strong>This Is A Best Product.</strong></li><li><strong>With Cotton Material.</strong></li><li><strong>With Amazing Price.</strong></li></ol>', '<p>Content Area</p>', 'published', '[\"seccond-iphone-removebg-preview.png\",\"first-iphone-removebg-preview.png\",\"fifth-iphone-removebg-preview.png\"]', '\"[]\"', 'SF-2443-MCG8', 0, 20, 0, 1, 0, NULL, 0, 0, 1200, 1000, NULL, NULL, 100.00, 200.00, 200.00, 200.00, NULL, 1, '2025-02-19 03:36:18', '2025-02-19 03:42:53', 'in_stock', NULL, 1, 'Botble\\ACL\\Models\\User', 0, 'seccond-iphone-removebg-preview.png', 'physical', NULL, 100, 0, 0, 0, 0, NULL),
(129, 'Demo New Product', '', NULL, 'published', '[]', NULL, 'SF-2443-LXZ9', 0, 20, 0, 1, 0, NULL, 1, 0, 1200, 1000, NULL, NULL, 100.00, 200.00, 200.00, 200.00, NULL, 0, '2025-02-19 03:41:31', '2025-02-19 03:42:53', 'in_stock', NULL, 1, 'Botble\\ACL\\Models\\User', 0, NULL, 'physical', NULL, 100, 0, 0, 0, 0, NULL),
(130, 'Demo New Product', '', NULL, 'published', '[]', NULL, 'SF-2443-SHMA', 0, 20, 0, 1, 0, NULL, 1, 0, 1200, 1000, NULL, NULL, 100.00, 200.00, 200.00, 200.00, NULL, 0, '2025-02-19 03:42:14', '2025-02-19 03:42:53', 'in_stock', NULL, 1, 'Botble\\ACL\\Models\\User', 0, NULL, 'physical', NULL, 100, 0, 0, 0, 0, NULL);

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

--
-- Table structure for table `ec_products_translations`
--

CREATE TABLE `ec_products_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ec_products_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `content` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_product_attributes`
--

CREATE TABLE `ec_product_attributes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `attribute_set_id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(120) NOT NULL,
  `slug` varchar(120) DEFAULT NULL,
  `color` varchar(50) DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `order` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_attributes`
--

INSERT INTO `ec_product_attributes` (`id`, `attribute_set_id`, `title`, `slug`, `color`, `image`, `is_default`, `order`, `created_at`, `updated_at`) VALUES
(1, 1, 'Green', 'green', 'rgb(39, 78, 19)', '', 1, 0, '2024-10-31 20:46:47', '2025-02-14 23:24:01'),
(2, 1, 'Blue', 'blue', 'rgb(7, 55, 99)', '', 0, 1, '2024-10-31 20:46:47', '2025-02-14 23:24:01'),
(3, 1, 'Red', 'red', '#DA323F', '', 0, 2, '2024-10-31 20:46:47', '2025-02-14 23:24:01'),
(4, 1, 'Black', 'black', 'rgb(0, 0, 0)', '', 0, 3, '2024-10-31 20:46:47', '2025-02-14 23:24:01'),
(5, 1, 'Brown', 'brown', '#87554B', '', 0, 4, '2024-10-31 20:46:47', '2025-02-14 23:24:01'),
(6, 2, 'S', 's', '', '', 1, 0, '2024-10-31 20:46:47', '2025-02-14 23:25:14'),
(7, 2, 'M', 'm', '', '', 0, 1, '2024-10-31 20:46:47', '2025-02-14 23:25:14'),
(8, 2, 'L', 'l', '', '', 0, 2, '2024-10-31 20:46:47', '2025-02-14 23:25:14'),
(9, 2, 'XL', 'xl', '', '', 0, 3, '2024-10-31 20:46:47', '2025-02-14 23:25:14'),
(10, 2, 'XXL', 'xxl', '', '', 0, 4, '2024-10-31 20:46:47', '2025-02-14 23:25:14'),
(11, 3, '1KG', '1kg', NULL, NULL, 1, 1, '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(12, 3, '2KG', '2kg', NULL, NULL, 0, 2, '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(13, 3, '3KG', '3kg', NULL, NULL, 0, 3, '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(14, 3, '4KG', '4kg', NULL, NULL, 0, 4, '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(15, 3, '5KG', '5kg', NULL, NULL, 0, 5, '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(16, 4, '1 Box', '1-box', NULL, NULL, 1, 1, '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(17, 4, '2 Boxes', '2-boxes', NULL, NULL, 0, 2, '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(18, 4, '3 Boxes', '3-boxes', NULL, NULL, 0, 3, '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(19, 4, '4 Boxes', '4-boxes', NULL, NULL, 0, 4, '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(20, 4, '5 Boxes', '5-boxes', NULL, NULL, 0, 5, '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(21, 1, 'Navy Blue', 'navy-blue', '', '', 0, 5, '2025-02-14 23:24:01', '2025-02-14 23:24:01'),
(22, 2, 'XXL', 'xxl-1', '', '', 0, 5, '2025-02-14 23:25:14', '2025-02-14 23:25:14'),
(23, 2, 'XXXL', 'xxxl', '', '', 0, 6, '2025-02-14 23:25:14', '2025-02-14 23:25:14'),
(24, 2, 'XXXXL', 'xxxxl', '', '', 0, 7, '2025-02-14 23:25:14', '2025-02-14 23:25:14');

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

--
-- Table structure for table `ec_product_attributes_translations`
--

CREATE TABLE `ec_product_attributes_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ec_product_attributes_id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_product_attribute_sets`
--

CREATE TABLE `ec_product_attribute_sets` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(120) NOT NULL,
  `slug` varchar(120) DEFAULT NULL,
  `display_layout` varchar(191) NOT NULL DEFAULT 'swatch_dropdown',
  `is_searchable` tinyint(3) UNSIGNED NOT NULL DEFAULT 1,
  `is_comparable` tinyint(3) UNSIGNED NOT NULL DEFAULT 1,
  `is_use_in_product_listing` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `order` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `use_image_from_product_variation` tinyint(3) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_attribute_sets`
--

INSERT INTO `ec_product_attribute_sets` (`id`, `title`, `slug`, `display_layout`, `is_searchable`, `is_comparable`, `is_use_in_product_listing`, `status`, `order`, `created_at`, `updated_at`, `use_image_from_product_variation`) VALUES
(1, 'Color', 'color', 'visual', 1, 1, 1, 'published', 0, '2024-10-31 20:46:47', '2025-02-14 23:24:01', 0),
(2, 'Size', 'size', 'text', 1, 1, 1, 'published', 1, '2024-10-31 20:46:47', '2025-02-14 23:25:14', 0),
(3, 'Weight', 'weight', 'text', 1, 1, 1, 'published', 0, '2024-10-31 20:46:47', '2024-10-31 20:46:47', 0),
(4, 'Boxes', 'boxes', 'text', 1, 1, 1, 'published', 1, '2024-10-31 20:46:47', '2024-10-31 20:46:47', 0);

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

--
-- Table structure for table `ec_product_attribute_sets_translations`
--

CREATE TABLE `ec_product_attribute_sets_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ec_product_attribute_sets_id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_product_categories`
--

CREATE TABLE `ec_product_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `description` mediumtext DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `order` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `image` varchar(191) DEFAULT NULL,
  `is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `icon_image` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_categories`
--

INSERT INTO `ec_product_categories` (`id`, `name`, `parent_id`, `description`, `status`, `order`, `image`, `is_featured`, `created_at`, `updated_at`, `icon`, `icon_image`) VALUES
(2, 'Clothing', 0, NULL, 'published', 1, 'manusia-formal-baju-biru-ultra-laut-bebas-png-dan-psd-pakaian-resmi-setelan-foto-paspor-pakaian-pria.jpeg', 1, '2024-10-31 20:46:57', '2025-02-14 22:57:27', NULL, NULL),
(3, 'Men\'s Clothing', 2, NULL, 'published', 0, NULL, 0, '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, NULL),
(4, 'T-Shirts', 3, NULL, 'published', 0, NULL, 0, '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, NULL),
(5, 'Jeans', 3, NULL, 'published', 1, NULL, 0, '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, NULL),
(6, 'Suits', 3, NULL, 'published', 2, NULL, 0, '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, NULL),
(7, 'Women\'s Clothing', 2, NULL, 'published', 1, 'fashion/product-categories/2.jpg', 1, '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, NULL),
(8, 'Dresses', 7, NULL, 'published', 0, NULL, 0, '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, NULL);

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

--
-- Table structure for table `ec_product_categories_translations`
--

CREATE TABLE `ec_product_categories_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ec_product_categories_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` mediumtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_product_categorizables`
--

CREATE TABLE `ec_product_categorizables` (
  `category_id` bigint(20) UNSIGNED NOT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(120) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_product_category_product`
--

CREATE TABLE `ec_product_category_product` (
  `category_id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_category_product`
--

INSERT INTO `ec_product_category_product` (`category_id`, `product_id`) VALUES
(8, 101);

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

--
-- Table structure for table `ec_product_collections`
--

CREATE TABLE `ec_product_collections` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `slug` varchar(191) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_collections`
--

INSERT INTO `ec_product_collections` (`id`, `name`, `slug`, `description`, `image`, `status`, `created_at`, `updated_at`, `is_featured`) VALUES
(2, 'Fashion Forward Finds', 'fashion-forward-finds', NULL, 'first-iphone-removebg-preview.png', 'published', '2024-10-31 20:46:57', '2025-02-14 23:32:31', 0);

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

--
-- Table structure for table `ec_product_collections_translations`
--

CREATE TABLE `ec_product_collections_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ec_product_collections_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_product_collection_products`
--

CREATE TABLE `ec_product_collection_products` (
  `product_collection_id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_collection_products`
--

INSERT INTO `ec_product_collection_products` (`product_collection_id`, `product_id`) VALUES
(2, 101),
(2, 127);

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

--
-- Table structure for table `ec_product_cross_sale_relations`
--

CREATE TABLE `ec_product_cross_sale_relations` (
  `from_product_id` bigint(20) UNSIGNED NOT NULL,
  `to_product_id` bigint(20) UNSIGNED NOT NULL,
  `is_variant` tinyint(1) NOT NULL DEFAULT 0,
  `price` decimal(15,2) DEFAULT 0.00,
  `price_type` varchar(191) NOT NULL DEFAULT 'fixed',
  `apply_to_all_variations` tinyint(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_product_files`
--

CREATE TABLE `ec_product_files` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED DEFAULT NULL,
  `url` varchar(400) DEFAULT NULL,
  `extras` mediumtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_product_labels`
--

CREATE TABLE `ec_product_labels` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `color` varchar(120) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_labels`
--

INSERT INTO `ec_product_labels` (`id`, `name`, `color`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Hot', '#AC2200', 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(2, 'New', '#006554', 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(3, 'Sale', '#9A3B00', 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47');

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

--
-- Table structure for table `ec_product_labels_translations`
--

CREATE TABLE `ec_product_labels_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ec_product_labels_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_product_label_products`
--

CREATE TABLE `ec_product_label_products` (
  `product_label_id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_label_products`
--

INSERT INTO `ec_product_label_products` (`product_label_id`, `product_id`) VALUES
(2, 101),
(2, 127);

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

--
-- Table structure for table `ec_product_related_relations`
--

CREATE TABLE `ec_product_related_relations` (
  `from_product_id` bigint(20) UNSIGNED NOT NULL,
  `to_product_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_related_relations`
--

INSERT INTO `ec_product_related_relations` (`from_product_id`, `to_product_id`) VALUES
(127, 101);

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

--
-- Table structure for table `ec_product_specification_attribute`
--

CREATE TABLE `ec_product_specification_attribute` (
  `product_id` bigint(20) UNSIGNED NOT NULL,
  `attribute_id` bigint(20) UNSIGNED NOT NULL,
  `value` text DEFAULT NULL,
  `hidden` tinyint(1) NOT NULL DEFAULT 0,
  `order` tinyint(4) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_product_tags`
--

CREATE TABLE `ec_product_tags` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_tags`
--

INSERT INTO `ec_product_tags` (`id`, `name`, `description`, `status`, `created_at`, `updated_at`) VALUES
(7, 'Kurti', NULL, 'published', '2025-02-14 22:06:31', '2025-02-14 22:06:31'),
(8, 'New', NULL, 'published', '2025-02-19 03:36:18', '2025-02-19 03:36:18'),
(9, 'Demo', NULL, 'published', '2025-02-19 03:36:18', '2025-02-19 03:36:18');

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

--
-- Table structure for table `ec_product_tags_translations`
--

CREATE TABLE `ec_product_tags_translations` (
  `lang_code` varchar(191) NOT NULL,
  `ec_product_tags_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_product_tag_product`
--

CREATE TABLE `ec_product_tag_product` (
  `product_id` bigint(20) UNSIGNED NOT NULL,
  `tag_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_tag_product`
--

INSERT INTO `ec_product_tag_product` (`product_id`, `tag_id`) VALUES
(101, 7),
(127, 7),
(127, 8),
(127, 9);

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

--
-- Table structure for table `ec_product_up_sale_relations`
--

CREATE TABLE `ec_product_up_sale_relations` (
  `from_product_id` bigint(20) UNSIGNED NOT NULL,
  `to_product_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_product_variations`
--

CREATE TABLE `ec_product_variations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED DEFAULT NULL,
  `configurable_product_id` bigint(20) UNSIGNED NOT NULL,
  `is_default` tinyint(4) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_variations`
--

INSERT INTO `ec_product_variations` (`id`, `product_id`, `configurable_product_id`, `is_default`) VALUES
(58, 102, 101, 1),
(59, 103, 101, 0),
(84, 129, 127, 1),
(85, 130, 127, 0);

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

--
-- Table structure for table `ec_product_variation_items`
--

CREATE TABLE `ec_product_variation_items` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `attribute_id` bigint(20) UNSIGNED NOT NULL,
  `variation_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_variation_items`
--

INSERT INTO `ec_product_variation_items` (`id`, `attribute_id`, `variation_id`) VALUES
(115, 1, 58),
(168, 1, 84),
(117, 3, 59),
(170, 3, 85),
(116, 6, 58),
(169, 6, 85),
(118, 7, 59),
(167, 7, 84);

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

--
-- Table structure for table `ec_product_views`
--

CREATE TABLE `ec_product_views` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL,
  `views` int(11) NOT NULL DEFAULT 1,
  `date` date NOT NULL DEFAULT '2024-11-01'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_views`
--

INSERT INTO `ec_product_views` (`id`, `product_id`, `views`, `date`) VALUES
(2, 101, 3, '2025-02-15'),
(5, 101, 1, '2025-02-17'),
(6, 127, 1, '2025-02-19');

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

--
-- Table structure for table `ec_product_with_attribute_set`
--

CREATE TABLE `ec_product_with_attribute_set` (
  `attribute_set_id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL,
  `order` tinyint(3) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_product_with_attribute_set`
--

INSERT INTO `ec_product_with_attribute_set` (`attribute_set_id`, `product_id`, `order`) VALUES
(1, 101, 0),
(2, 101, 0),
(1, 127, 0),
(2, 127, 0);

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

--
-- Table structure for table `ec_reviews`
--

CREATE TABLE `ec_reviews` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED DEFAULT NULL,
  `customer_name` varchar(191) DEFAULT NULL,
  `customer_email` varchar(191) DEFAULT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL,
  `star` double(8,2) NOT NULL,
  `comment` text NOT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `images` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_reviews`
--

INSERT INTO `ec_reviews` (`id`, `customer_id`, `customer_name`, `customer_email`, `product_id`, `star`, `comment`, `status`, `created_at`, `updated_at`, `images`) VALUES
(1001, 11, 'Ranavadiya Hardik', 'hndeveloping@gmail.com', 101, 5.00, 'This Product Is Amazing', 'published', '2025-02-14 23:38:04', '2025-02-14 23:39:12', NULL);

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

--
-- Table structure for table `ec_review_replies`
--

CREATE TABLE `ec_review_replies` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `review_id` bigint(20) UNSIGNED NOT NULL,
  `message` text NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_review_replies`
--

INSERT INTO `ec_review_replies` (`id`, `user_id`, `review_id`, `message`, `created_at`, `updated_at`) VALUES
(1, 1, 1001, 'Thank You.', '2025-02-14 23:39:34', '2025-02-14 23:39:34');

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

--
-- Table structure for table `ec_shared_wishlists`
--

CREATE TABLE `ec_shared_wishlists` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `code` varchar(191) NOT NULL,
  `product_ids` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_shared_wishlists`
--

INSERT INTO `ec_shared_wishlists` (`id`, `code`, `product_ids`, `created_at`, `updated_at`) VALUES
(1, '7KkJ4abN', '[101]', '2025-02-14 22:12:39', '2025-02-14 22:12:39'),
(2, 'v28QJab1', '[]', '2025-02-15 00:07:39', '2025-02-15 00:07:39');

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

--
-- Table structure for table `ec_shipments`
--

CREATE TABLE `ec_shipments` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `order_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `weight` double(8,2) DEFAULT 0.00,
  `shipment_id` varchar(120) DEFAULT NULL,
  `rate_id` varchar(120) DEFAULT NULL,
  `note` varchar(120) DEFAULT NULL,
  `status` varchar(120) NOT NULL DEFAULT 'pending',
  `cod_amount` decimal(15,2) DEFAULT 0.00,
  `cod_status` varchar(60) NOT NULL DEFAULT 'pending',
  `cross_checking_status` varchar(60) NOT NULL DEFAULT 'pending',
  `price` decimal(15,2) DEFAULT 0.00,
  `store_id` bigint(20) UNSIGNED DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `tracking_id` varchar(191) DEFAULT NULL,
  `shipping_company_name` varchar(191) DEFAULT NULL,
  `tracking_link` varchar(191) DEFAULT NULL,
  `estimate_date_shipped` datetime DEFAULT NULL,
  `date_shipped` datetime DEFAULT NULL,
  `customer_delivered_confirmed_at` timestamp NULL DEFAULT NULL,
  `label_url` text DEFAULT NULL,
  `metadata` mediumtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_shipments`
--

INSERT INTO `ec_shipments` (`id`, `order_id`, `user_id`, `weight`, `shipment_id`, `rate_id`, `note`, `status`, `cod_amount`, `cod_status`, `cross_checking_status`, `price`, `store_id`, `created_at`, `updated_at`, `tracking_id`, `shipping_company_name`, `tracking_link`, `estimate_date_shipped`, `date_shipped`, `customer_delivered_confirmed_at`, `label_url`, `metadata`) VALUES
(1, 1, 0, 860.00, '', '', NULL, 'delivered', 0.00, 'pending', 'pending', 0.00, 6, '2025-02-14 10:42:39', '2025-02-14 10:46:03', NULL, NULL, NULL, NULL, '2025-02-14 16:16:03', NULL, NULL, NULL),
(3, 3, 0, 200.00, '', '', NULL, 'canceled', 0.00, 'pending', 'pending', 0.00, 9, '2025-02-15 01:16:40', '2025-02-15 01:24:11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);

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

--
-- Table structure for table `ec_shipment_histories`
--

CREATE TABLE `ec_shipment_histories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `action` varchar(120) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `shipment_id` bigint(20) UNSIGNED NOT NULL,
  `order_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `user_type` varchar(191) NOT NULL DEFAULT 'Botble\\ACL\\Models\\User'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_shipment_histories`
--

INSERT INTO `ec_shipment_histories` (`id`, `action`, `description`, `user_id`, `shipment_id`, `order_id`, `created_at`, `updated_at`, `user_type`) VALUES
(1, 'update_status', 'Changed status of shipping to: Delivered. Updated by: %user_name%', 1, 1, 1, '2025-02-14 10:46:03', '2025-02-14 10:46:03', 'Botble\\ACL\\Models\\User'),
(2, 'update_status', 'Changed status of shipping to: Ready to be shipped out. Updated by: %user_name%', 1, 3, 3, '2025-02-15 01:21:58', '2025-02-15 01:21:58', 'Botble\\ACL\\Models\\User'),
(3, 'update_status', 'Changed status of shipping to: Approved. Updated by: %user_name%', 1, 3, 3, '2025-02-15 01:23:20', '2025-02-15 01:23:20', 'Botble\\ACL\\Models\\User'),
(4, 'update_status', 'Changed status of shipping to: Pending. Updated by: %user_name%', 1, 3, 3, '2025-02-15 01:23:49', '2025-02-15 01:23:49', 'Botble\\ACL\\Models\\User');

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

--
-- Table structure for table `ec_shipping`
--

CREATE TABLE `ec_shipping` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) DEFAULT NULL,
  `country` varchar(120) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_shipping`
--

INSERT INTO `ec_shipping` (`id`, `title`, `country`, `created_at`, `updated_at`) VALUES
(1, 'All', NULL, '2024-10-31 20:46:51', '2024-10-31 20:46:51');

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

--
-- Table structure for table `ec_shipping_rules`
--

CREATE TABLE `ec_shipping_rules` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `shipping_id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(24) DEFAULT 'based_on_price',
  `from` decimal(15,2) DEFAULT 0.00,
  `to` decimal(15,2) DEFAULT 0.00,
  `price` decimal(15,2) DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_shipping_rules`
--

INSERT INTO `ec_shipping_rules` (`id`, `name`, `shipping_id`, `type`, `from`, `to`, `price`, `created_at`, `updated_at`) VALUES
(1, 'Free delivery', 1, 'based_on_price', 1000.00, NULL, 0.00, '2024-10-31 20:46:51', '2024-10-31 20:46:51'),
(2, 'Flat Rate', 1, 'based_on_price', 0.00, NULL, 20.00, '2024-10-31 20:46:51', '2024-10-31 20:46:51'),
(3, 'Local Pickup', 1, 'based_on_price', 0.00, NULL, 0.00, '2024-10-31 20:46:51', '2024-10-31 20:46:51');

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

--
-- Table structure for table `ec_shipping_rule_items`
--

CREATE TABLE `ec_shipping_rule_items` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `shipping_rule_id` bigint(20) UNSIGNED NOT NULL,
  `country` varchar(120) DEFAULT NULL,
  `state` varchar(120) DEFAULT NULL,
  `city` varchar(120) DEFAULT NULL,
  `zip_code` varchar(20) DEFAULT NULL,
  `adjustment_price` decimal(15,2) DEFAULT 0.00,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_specification_attributes`
--

CREATE TABLE `ec_specification_attributes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `group_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `type` varchar(20) NOT NULL,
  `options` text DEFAULT NULL,
  `default_value` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `author_type` varchar(191) DEFAULT NULL,
  `author_id` bigint(20) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_specification_attributes`
--

INSERT INTO `ec_specification_attributes` (`id`, `group_id`, `name`, `type`, `options`, `default_value`, `created_at`, `updated_at`, `author_type`, `author_id`) VALUES
(9, 5, 'Demo Attribute', 'text', NULL, 'Demo', '2025-02-14 22:16:53', '2025-02-14 22:16:53', 'Botble\\Ecommerce\\Models\\Customer', 11),
(10, 6, 'New Attribute', 'textarea', NULL, 'Demo', '2025-02-19 03:56:29', '2025-02-19 03:56:29', NULL, NULL);

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

--
-- Table structure for table `ec_specification_attributes_translations`
--

CREATE TABLE `ec_specification_attributes_translations` (
  `lang_code` varchar(20) NOT NULL,
  `ec_specification_attributes_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `options` text DEFAULT NULL,
  `default_value` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_specification_groups`
--

CREATE TABLE `ec_specification_groups` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `author_type` varchar(191) DEFAULT NULL,
  `author_id` bigint(20) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_specification_groups`
--

INSERT INTO `ec_specification_groups` (`id`, `name`, `description`, `created_at`, `updated_at`, `author_type`, `author_id`) VALUES
(5, 'New Group', 'Demo', '2025-02-14 22:16:13', '2025-02-14 22:16:13', 'Botble\\Ecommerce\\Models\\Customer', 11),
(6, 'Cotton', 'Cotton Fabric', '2025-02-14 23:56:18', '2025-02-14 23:56:18', NULL, NULL);

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

--
-- Table structure for table `ec_specification_tables`
--

CREATE TABLE `ec_specification_tables` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `author_type` varchar(191) DEFAULT NULL,
  `author_id` bigint(20) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_specification_tables`
--

INSERT INTO `ec_specification_tables` (`id`, `name`, `description`, `created_at`, `updated_at`, `author_type`, `author_id`) VALUES
(1, 'General Specification', NULL, '2024-10-31 20:46:59', '2024-10-31 20:46:59', NULL, NULL),
(2, 'Technical Specification', NULL, '2024-10-31 20:46:59', '2024-10-31 20:46:59', NULL, NULL),
(3, 'Demo Group', 'Demo', '2025-02-14 22:17:33', '2025-02-14 22:17:33', 'Botble\\Ecommerce\\Models\\Customer', 11);

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

--
-- Table structure for table `ec_specification_table_group`
--

CREATE TABLE `ec_specification_table_group` (
  `table_id` bigint(20) UNSIGNED NOT NULL,
  `group_id` bigint(20) UNSIGNED NOT NULL,
  `order` tinyint(4) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_specification_table_group`
--

INSERT INTO `ec_specification_table_group` (`table_id`, `group_id`, `order`) VALUES
(1, 1, 0),
(1, 2, 0),
(2, 3, 0),
(2, 4, 0),
(3, 5, 0);

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

--
-- Table structure for table `ec_store_locators`
--

CREATE TABLE `ec_store_locators` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(60) NOT NULL,
  `email` varchar(60) DEFAULT NULL,
  `phone` varchar(20) NOT NULL,
  `address` varchar(191) NOT NULL,
  `country` varchar(120) DEFAULT NULL,
  `state` varchar(120) DEFAULT NULL,
  `city` varchar(120) DEFAULT NULL,
  `is_primary` tinyint(1) DEFAULT 0,
  `is_shipping_location` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `zip_code` varchar(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_store_locators`
--

INSERT INTO `ec_store_locators` (`id`, `name`, `email`, `phone`, `address`, `country`, `state`, `city`, `is_primary`, `is_shipping_location`, `created_at`, `updated_at`, `zip_code`) VALUES
(1, 'Shofy', 'sales@botble.com', '1800979769', '502 New Street', 'AU', 'Brighton VIC', 'Brighton VIC', 1, 1, '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL);

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

--
-- Table structure for table `ec_taxes`
--

CREATE TABLE `ec_taxes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) DEFAULT NULL,
  `percentage` double(8,6) DEFAULT NULL,
  `priority` int(11) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_taxes`
--

INSERT INTO `ec_taxes` (`id`, `title`, `percentage`, `priority`, `status`, `created_at`, `updated_at`) VALUES
(1, 'VAT', 10.000000, 1, 'published', '2024-10-31 20:46:51', '2024-10-31 20:46:51'),
(2, 'None', 0.000000, 2, 'published', '2024-10-31 20:46:51', '2024-10-31 20:46:51'),
(3, 'Import Tax', 15.000000, 3, 'published', '2024-10-31 20:46:51', '2024-10-31 20:46:51');

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

--
-- Table structure for table `ec_tax_products`
--

CREATE TABLE `ec_tax_products` (
  `tax_id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `ec_tax_products`
--

INSERT INTO `ec_tax_products` (`tax_id`, `product_id`) VALUES
(2, 101),
(2, 127);

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

--
-- Table structure for table `ec_tax_rules`
--

CREATE TABLE `ec_tax_rules` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `tax_id` bigint(20) UNSIGNED NOT NULL,
  `country` varchar(120) DEFAULT NULL,
  `state` varchar(120) DEFAULT NULL,
  `city` varchar(120) DEFAULT NULL,
  `zip_code` varchar(20) DEFAULT NULL,
  `priority` int(11) DEFAULT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `percentage` double(8,6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ec_wish_lists`
--

CREATE TABLE `ec_wish_lists` (
  `customer_id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

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

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

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

CREATE TABLE `faqs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `question` text NOT NULL,
  `answer` text NOT NULL,
  `category_id` bigint(20) UNSIGNED NOT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `faqs` (`id`, `question`, `answer`, `category_id`, `status`, `created_at`, `updated_at`) VALUES
(1, 'What Shipping Methods Are Available?', 'Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.', 1, 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(2, 'Do You Ship Internationally?', 'Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.', 1, 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(3, 'How Long Will It Take To Get My Package?', 'Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.', 1, 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(4, 'What Payment Methods Are Accepted?', 'Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.', 2, 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(5, 'Is Buying On-Line Safe?', 'Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.', 2, 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(6, 'How do I place an Order?', 'Keytar cray slow-carb, Godard banh mi salvia pour-over. Slow-carb Odd Future seitan normcore. Master cleanse American Apparel gentrify flexitarian beard slow-carb next level. Raw denim polaroid paleo farm-to-table, put a bird on it lo-fi tattooed Wes Anderson Pinterest letterpress. Fingerstache McSweeney’s pour-over, letterpress Schlitz photo booth master cleanse bespoke hashtag chillwave gentrify.', 3, 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(7, 'How Can I Cancel Or Change My Order?', 'Plaid letterpress leggings craft beer meh ethical Pinterest. Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth.', 3, 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(8, 'Do I need an account to place an order?', 'Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY. Cray ugh 3 wolf moon fap, fashion axe irony butcher cornhole typewriter chambray VHS banjo street art.', 3, 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(9, 'How Do I Track My Order?', 'Keytar cray slow-carb, Godard banh mi salvia pour-over. Slow-carb @Odd Future seitan normcore. Master cleanse American Apparel gentrify flexitarian beard slow-carb next level.', 3, 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47'),
(10, 'How Can I Return a Product?', '<p>If Your Product Was Damaged Then You Can Return Product.</p>', 3, 'published', '2024-10-31 20:46:47', '2025-02-15 00:05:55');

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

--
-- Table structure for table `faqs_translations`
--

CREATE TABLE `faqs_translations` (
  `lang_code` varchar(20) NOT NULL,
  `faqs_id` bigint(20) UNSIGNED NOT NULL,
  `question` text DEFAULT NULL,
  `answer` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `faq_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `order` tinyint(4) NOT NULL DEFAULT 0,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `faq_categories` (`id`, `name`, `order`, `status`, `created_at`, `updated_at`, `description`) VALUES
(1, 'Shipping', 0, 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL),
(2, 'Payment', 1, 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL),
(3, 'Order &amp; Returns', 2, 'published', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL);

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

--
-- Table structure for table `faq_categories_translations`
--

CREATE TABLE `faq_categories_translations` (
  `lang_code` varchar(20) NOT NULL,
  `faq_categories_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `galleries`
--

CREATE TABLE `galleries` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `description` longtext NOT NULL,
  `is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `order` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `image` varchar(191) DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `galleries`
--

INSERT INTO `galleries` (`id`, `name`, `description`, `is_featured`, `order`, `image`, `user_id`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Perfect', 'Queen. \'I haven\'t the slightest idea,\' said the Queen. \'I haven\'t the least notice of her head in the morning, just time to see if she had read about them in books, and she did not like to be patted.', 1, 0, 'fashion/galleries/1.jpg', 1, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(2, 'New Day', 'Who would not allow without knowing how old it was, and, as the Lory positively refused to tell them something more. \'You promised to tell them something more. \'You promised to tell its age, there.', 1, 0, 'fashion/galleries/2.jpg', 1, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(3, 'Happy Day', 'Yet you turned a corner, \'Oh my ears and whiskers, how late it\'s getting!\' She was close behind us, and he\'s treading on her spectacles, and began talking to him,\' said Alice hastily; \'but I\'m not.', 1, 0, 'fashion/galleries/3.jpg', 1, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(4, 'Nature', 'RED rose-tree, and we won\'t talk about trouble!\' said the Cat, and vanished. Alice was soon left alone. \'I wish you wouldn\'t have come here.\' Alice didn\'t think that proved it at all. However.', 1, 0, 'fashion/galleries/4.jpg', 1, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(5, 'Morning', 'Laughing and Grief, they used to do:-- \'How doth the little--\"\' and she did it so VERY tired of this. I vote the young lady tells us a story.\' \'I\'m afraid I can\'t understand it myself to begin.', 1, 0, 'fashion/galleries/5.jpg', 1, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01');

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

--
-- Table structure for table `galleries_translations`
--

CREATE TABLE `galleries_translations` (
  `lang_code` varchar(20) NOT NULL,
  `galleries_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `gallery_meta`
--

CREATE TABLE `gallery_meta` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `images` text DEFAULT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(120) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `gallery_meta`
--

INSERT INTO `gallery_meta` (`id`, `images`, `reference_id`, `reference_type`, `created_at`, `updated_at`) VALUES
(1, '[{\"img\":\"fashion\\/galleries\\/3.jpg\",\"description\":\"White Rabbit. She was moving them about as curious as it went. So she began nursing her child again, singing a sort of chance of her childhood: and how she would keep, through all her knowledge of.\"},{\"img\":\"fashion\\/galleries\\/2.jpg\",\"description\":\"I like\\\"!\' \'You might just as the hall was very glad to get out again. Suddenly she came in with a kind of authority over Alice. \'Stand up and bawled out, \\\"He\'s murdering the time! Off with his.\"},{\"img\":\"fashion\\/galleries\\/4.jpg\",\"description\":\"Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can guess that,\' she added in an impatient tone: \'explanations take such a thing. After a minute or two she walked on in the lap of her.\"},{\"img\":\"fashion\\/galleries\\/1.jpg\",\"description\":\"Alice dodged behind a great hurry. An enormous puppy was looking about for them, but they were all ornamented with hearts. Next came the guests, mostly Kings and Queens, and among them Alice.\"}]', 1, 'Botble\\Gallery\\Models\\Gallery', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(2, '[{\"img\":\"fashion\\/galleries\\/3.jpg\",\"description\":\"White Rabbit. She was moving them about as curious as it went. So she began nursing her child again, singing a sort of chance of her childhood: and how she would keep, through all her knowledge of.\"},{\"img\":\"fashion\\/galleries\\/2.jpg\",\"description\":\"I like\\\"!\' \'You might just as the hall was very glad to get out again. Suddenly she came in with a kind of authority over Alice. \'Stand up and bawled out, \\\"He\'s murdering the time! Off with his.\"},{\"img\":\"fashion\\/galleries\\/4.jpg\",\"description\":\"Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can guess that,\' she added in an impatient tone: \'explanations take such a thing. After a minute or two she walked on in the lap of her.\"},{\"img\":\"fashion\\/galleries\\/1.jpg\",\"description\":\"Alice dodged behind a great hurry. An enormous puppy was looking about for them, but they were all ornamented with hearts. Next came the guests, mostly Kings and Queens, and among them Alice.\"}]', 2, 'Botble\\Gallery\\Models\\Gallery', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(3, '[{\"img\":\"fashion\\/galleries\\/3.jpg\",\"description\":\"White Rabbit. She was moving them about as curious as it went. So she began nursing her child again, singing a sort of chance of her childhood: and how she would keep, through all her knowledge of.\"},{\"img\":\"fashion\\/galleries\\/2.jpg\",\"description\":\"I like\\\"!\' \'You might just as the hall was very glad to get out again. Suddenly she came in with a kind of authority over Alice. \'Stand up and bawled out, \\\"He\'s murdering the time! Off with his.\"},{\"img\":\"fashion\\/galleries\\/4.jpg\",\"description\":\"Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can guess that,\' she added in an impatient tone: \'explanations take such a thing. After a minute or two she walked on in the lap of her.\"},{\"img\":\"fashion\\/galleries\\/1.jpg\",\"description\":\"Alice dodged behind a great hurry. An enormous puppy was looking about for them, but they were all ornamented with hearts. Next came the guests, mostly Kings and Queens, and among them Alice.\"}]', 3, 'Botble\\Gallery\\Models\\Gallery', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(4, '[{\"img\":\"fashion\\/galleries\\/3.jpg\",\"description\":\"White Rabbit. She was moving them about as curious as it went. So she began nursing her child again, singing a sort of chance of her childhood: and how she would keep, through all her knowledge of.\"},{\"img\":\"fashion\\/galleries\\/2.jpg\",\"description\":\"I like\\\"!\' \'You might just as the hall was very glad to get out again. Suddenly she came in with a kind of authority over Alice. \'Stand up and bawled out, \\\"He\'s murdering the time! Off with his.\"},{\"img\":\"fashion\\/galleries\\/4.jpg\",\"description\":\"Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can guess that,\' she added in an impatient tone: \'explanations take such a thing. After a minute or two she walked on in the lap of her.\"},{\"img\":\"fashion\\/galleries\\/1.jpg\",\"description\":\"Alice dodged behind a great hurry. An enormous puppy was looking about for them, but they were all ornamented with hearts. Next came the guests, mostly Kings and Queens, and among them Alice.\"}]', 4, 'Botble\\Gallery\\Models\\Gallery', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(5, '[{\"img\":\"fashion\\/galleries\\/3.jpg\",\"description\":\"White Rabbit. She was moving them about as curious as it went. So she began nursing her child again, singing a sort of chance of her childhood: and how she would keep, through all her knowledge of.\"},{\"img\":\"fashion\\/galleries\\/2.jpg\",\"description\":\"I like\\\"!\' \'You might just as the hall was very glad to get out again. Suddenly she came in with a kind of authority over Alice. \'Stand up and bawled out, \\\"He\'s murdering the time! Off with his.\"},{\"img\":\"fashion\\/galleries\\/4.jpg\",\"description\":\"Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can guess that,\' she added in an impatient tone: \'explanations take such a thing. After a minute or two she walked on in the lap of her.\"},{\"img\":\"fashion\\/galleries\\/1.jpg\",\"description\":\"Alice dodged behind a great hurry. An enormous puppy was looking about for them, but they were all ornamented with hearts. Next came the guests, mostly Kings and Queens, and among them Alice.\"}]', 5, 'Botble\\Gallery\\Models\\Gallery', '2024-10-31 20:47:01', '2024-10-31 20:47:01');

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

--
-- Table structure for table `gallery_meta_translations`
--

CREATE TABLE `gallery_meta_translations` (
  `lang_code` varchar(20) NOT NULL,
  `gallery_meta_id` bigint(20) UNSIGNED NOT NULL,
  `images` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

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

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

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

CREATE TABLE `languages` (
  `lang_id` bigint(20) UNSIGNED NOT NULL,
  `lang_name` varchar(120) NOT NULL,
  `lang_locale` varchar(20) NOT NULL,
  `lang_code` varchar(20) NOT NULL,
  `lang_flag` varchar(20) 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
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `languages` (`lang_id`, `lang_name`, `lang_locale`, `lang_code`, `lang_flag`, `lang_is_default`, `lang_order`, `lang_is_rtl`) VALUES
(1, 'English', 'en', 'en_US', 'us', 1, 0, 0);

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

--
-- Table structure for table `language_meta`
--

CREATE TABLE `language_meta` (
  `lang_meta_id` bigint(20) UNSIGNED NOT NULL,
  `lang_meta_code` varchar(20) DEFAULT NULL,
  `lang_meta_origin` varchar(32) NOT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(120) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `language_meta`
--

INSERT INTO `language_meta` (`lang_meta_id`, `lang_meta_code`, `lang_meta_origin`, `reference_id`, `reference_type`) VALUES
(1, 'en_US', 'aacc76e7b707f46f5576c22efa0121f0', 1, 'Botble\\SimpleSlider\\Models\\SimpleSlider'),
(2, 'en_US', '576ed30b95db9990d95e7f0b9fdacb5e', 1, 'Botble\\Menu\\Models\\MenuLocation'),
(3, 'en_US', '583ce1e6f3f67a14896fdcac9451e680', 1, 'Botble\\Menu\\Models\\Menu'),
(4, 'en_US', '950c59ee2280ab81bee5b6aeec43a1a8', 2, 'Botble\\Menu\\Models\\Menu'),
(5, 'en_US', '27263301fa9c7296de07daac5ed0fa7b', 3, 'Botble\\Menu\\Models\\Menu'),
(6, 'en_US', 'bc0a2388419bad6790eb6b29ef72aaa7', 1, 'Botble\\Menu\\Models\\MenuNode'),
(7, 'en_US', '0b39d247d57ea71ccb40e3f2a21d7c56', 2, 'Botble\\Menu\\Models\\MenuNode'),
(8, 'en_US', 'a3793ca7f97bd22b171769551f425fb2', 3, 'Botble\\Menu\\Models\\MenuNode'),
(9, 'en_US', '3553ec994a7d5e7c66ca23a1d1660481', 4, 'Botble\\Menu\\Models\\MenuNode'),
(10, 'en_US', '8d7fdac50ee3b70dd24b909cfe427edc', 5, 'Botble\\Menu\\Models\\MenuNode'),
(11, 'en_US', 'bf7d7598532b9a781ee31b43169daa10', 6, 'Botble\\Menu\\Models\\MenuNode'),
(12, 'en_US', '8bfba328bf0e303341f0457c7c9b1372', 7, 'Botble\\Menu\\Models\\MenuNode'),
(13, 'en_US', '2aaf3d780ebfb4560aade684d9063652', 8, 'Botble\\Menu\\Models\\MenuNode'),
(14, 'en_US', '11ca2f9cce2ee47f65dd91906650f954', 9, 'Botble\\Menu\\Models\\MenuNode'),
(15, 'en_US', '2fada5a1c6f6b55ca5014c51e9a81cdb', 10, 'Botble\\Menu\\Models\\MenuNode'),
(16, 'en_US', '21a59a1b69e821fc34b42344a7c4643a', 11, 'Botble\\Menu\\Models\\MenuNode'),
(17, 'en_US', 'bee315da914cb4b665fa2cb165968838', 12, 'Botble\\Menu\\Models\\MenuNode'),
(18, 'en_US', 'eddde6355f1ddec0bba4ef6fdb74f598', 13, 'Botble\\Menu\\Models\\MenuNode'),
(19, 'en_US', 'e425b61555271671ae4087c588af994e', 14, 'Botble\\Menu\\Models\\MenuNode'),
(20, 'en_US', '14a9204474bd1a65a24721abc0546c11', 15, 'Botble\\Menu\\Models\\MenuNode'),
(21, 'en_US', 'f5b2afef0013b401e163ec1e81ea138b', 16, 'Botble\\Menu\\Models\\MenuNode'),
(22, 'en_US', '7156eb4b0fbb9485fb9ae7e7c667df6f', 17, 'Botble\\Menu\\Models\\MenuNode'),
(23, 'en_US', '014de376f7733e87a9896fb30d4d3c9a', 18, 'Botble\\Menu\\Models\\MenuNode'),
(24, 'en_US', 'ffcbb758ebdc7c950e599cb7cd5c0675', 19, 'Botble\\Menu\\Models\\MenuNode'),
(25, 'en_US', '10797e00d76948a0a26d19677b88e90e', 20, 'Botble\\Menu\\Models\\MenuNode'),
(26, 'en_US', '301246bc3897f05672a1fdda82e82e6d', 21, 'Botble\\Menu\\Models\\MenuNode'),
(27, 'en_US', '5ed38fc2c66cd2650ebf806c3240c484', 22, 'Botble\\Menu\\Models\\MenuNode'),
(28, 'en_US', '0ef0cd3bb8e91fc5d3f0c36272ccd76e', 23, 'Botble\\Menu\\Models\\MenuNode'),
(29, 'en_US', '480d194523273956a609bf8a338c85af', 24, 'Botble\\Menu\\Models\\MenuNode'),
(30, 'en_US', '60e194e0f8989815a184b97422666711', 25, 'Botble\\Menu\\Models\\MenuNode'),
(31, 'en_US', '472b14a9802ef53be9e48c98f4f8a9c0', 42, 'Botble\\Menu\\Models\\MenuNode'),
(32, 'en_US', '1c554518091965904e7a18f25ad03a6e', 26, 'Botble\\Menu\\Models\\MenuNode'),
(33, 'en_US', 'e59ea36b1beee444088489659762a17e', 27, 'Botble\\Menu\\Models\\MenuNode'),
(34, 'en_US', 'aa26b0d09a4628f0eb7e8b36a64b7a37', 28, 'Botble\\Menu\\Models\\MenuNode'),
(35, 'en_US', '9e2b91ab17a64fbb90daac9ab52e8d2c', 29, 'Botble\\Menu\\Models\\MenuNode'),
(36, 'en_US', '73b32b5217c00717e6e9088835981345', 30, 'Botble\\Menu\\Models\\MenuNode'),
(37, 'en_US', '7f55b7eb21a2b3bbe584a0a970f3e2c4', 44, 'Botble\\Menu\\Models\\MenuNode'),
(38, 'en_US', 'bc224db69a8f6e1dafcbcc6f8a935992', 4, 'Botble\\Menu\\Models\\Menu'),
(39, 'en_US', 'ebb93c347504a01bd86fc45276faf0b0', 45, 'Botble\\Menu\\Models\\MenuNode'),
(40, 'en_US', '33bbb38f97a73928acbb97cbe20a2781', 46, 'Botble\\Menu\\Models\\MenuNode'),
(41, 'en_US', '71c98f71b313b377b0be7a2ea31d5c2b', 47, 'Botble\\Menu\\Models\\MenuNode'),
(42, 'en_US', '18e7d4cabede8b346552914bc5116fc2', 48, 'Botble\\Menu\\Models\\MenuNode'),
(43, 'en_US', '26e15cf7589bac3dd4a9bcaa0f4ab837', 49, 'Botble\\Menu\\Models\\MenuNode');

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

--
-- Table structure for table `media_files`
--

CREATE TABLE `media_files` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `alt` varchar(191) DEFAULT NULL,
  `folder_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `mime_type` varchar(120) NOT NULL,
  `size` int(11) NOT NULL,
  `url` varchar(191) NOT NULL,
  `options` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `visibility` varchar(191) NOT NULL DEFAULT 'public'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `media_files`
--

INSERT INTO `media_files` (`id`, `user_id`, `name`, `alt`, `folder_id`, `mime_type`, `size`, `url`, `options`, `created_at`, `updated_at`, `deleted_at`, `visibility`) VALUES
(1, 0, '404', '404', 2, 'image/png', 16004, 'main/general/404.png', '[]', '2024-10-31 20:46:45', '2024-10-31 20:46:45', NULL, 'public'),
(2, 0, 'about-1', 'about-1', 2, 'image/jpeg', 9222, 'main/general/about-1.jpg', '[]', '2024-10-31 20:46:45', '2024-10-31 20:46:45', NULL, 'public'),
(3, 0, 'about-2', 'about-2', 2, 'image/jpeg', 5105, 'main/general/about-2.jpg', '[]', '2024-10-31 20:46:45', '2024-10-31 20:46:45', NULL, 'public'),
(4, 0, 'auth-banner', 'auth-banner', 2, 'image/png', 48468, 'main/general/auth-banner.png', '[]', '2024-10-31 20:46:45', '2024-10-31 20:46:45', NULL, 'public'),
(5, 0, 'breadcrumb', 'breadcrumb', 2, 'image/jpeg', 5276, 'main/general/breadcrumb.jpg', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(6, 0, 'contact-img', 'contact-img', 2, 'image/jpeg', 13078, 'main/general/contact-img.jpg', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(7, 0, 'cta-shape-1', 'cta-shape-1', 2, 'image/png', 23294, 'main/general/cta-shape-1.png', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(8, 0, 'cta-shape-2', 'cta-shape-2', 2, 'image/png', 16820, 'main/general/cta-shape-2.png', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(9, 0, 'cta-thumb-1', 'cta-thumb-1', 2, 'image/jpeg', 6053, 'main/general/cta-thumb-1.jpg', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(10, 0, 'favicon', 'favicon', 2, 'image/png', 1822, 'main/general/favicon.png', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(11, 0, 'footer-pay', 'footer-pay', 2, 'image/png', 490, 'main/general/footer-pay.png', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(12, 0, 'logo-white', 'logo-white', 2, 'image/png', 21450, 'main/general/logo-white.png', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(13, 0, 'logo', 'logo', 2, 'image/png', 22334, 'main/general/logo.png', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(14, 0, 'newsletter-popup', 'newsletter-popup', 2, 'image/png', 17253, 'main/general/newsletter-popup.png', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(15, 0, 'placeholder', 'placeholder', 2, 'image/png', 2100, 'main/general/placeholder.png', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(16, 0, 'preloader-icon', 'preloader-icon', 2, 'image/png', 4160, 'main/general/preloader-icon.png', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(17, 0, 'signature', 'signature', 2, 'image/png', 2330, 'main/general/signature.png', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(18, 0, 'slider-offer', 'slider-offer', 2, 'image/png', 970, 'main/general/slider-offer.png', '[]', '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL, 'public'),
(29, 0, '1', '1', 4, 'image/png', 948, 'main/brands/1.png', '[]', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL, 'public'),
(30, 0, '2', '2', 4, 'image/png', 948, 'main/brands/2.png', '[]', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL, 'public'),
(31, 0, '3', '3', 4, 'image/png', 948, 'main/brands/3.png', '[]', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL, 'public'),
(32, 0, '4', '4', 4, 'image/png', 948, 'main/brands/4.png', '[]', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL, 'public'),
(33, 0, '5', '5', 4, 'image/png', 948, 'main/brands/5.png', '[]', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL, 'public'),
(34, 0, '1', '1', 5, 'image/jpeg', 4294, 'main/customers/1.jpg', '[]', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL, 'public'),
(35, 0, '10', '10', 5, 'image/jpeg', 4294, 'main/customers/10.jpg', '[]', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL, 'public'),
(36, 0, '2', '2', 5, 'image/jpeg', 4294, 'main/customers/2.jpg', '[]', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL, 'public'),
(37, 0, '3', '3', 5, 'image/jpeg', 4294, 'main/customers/3.jpg', '[]', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL, 'public'),
(38, 0, '4', '4', 5, 'image/jpeg', 4294, 'main/customers/4.jpg', '[]', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL, 'public'),
(39, 0, '5', '5', 5, 'image/jpeg', 4294, 'main/customers/5.jpg', '[]', '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL, 'public'),
(40, 0, '6', '6', 5, 'image/jpeg', 4294, 'main/customers/6.jpg', '[]', '2024-10-31 20:46:48', '2024-10-31 20:46:48', NULL, 'public'),
(41, 0, '7', '7', 5, 'image/jpeg', 4294, 'main/customers/7.jpg', '[]', '2024-10-31 20:46:48', '2024-10-31 20:46:48', NULL, 'public'),
(42, 0, '8', '8', 5, 'image/jpeg', 4294, 'main/customers/8.jpg', '[]', '2024-10-31 20:46:48', '2024-10-31 20:46:48', NULL, 'public'),
(43, 0, '9', '9', 5, 'image/jpeg', 4294, 'main/customers/9.jpg', '[]', '2024-10-31 20:46:48', '2024-10-31 20:46:48', NULL, 'public'),
(44, 0, 'blog-big-1', 'blog-big-1', 6, 'image/jpeg', 13885, 'main/blog/blog-big-1.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(45, 0, 'blog-details-sm-1', 'blog-details-sm-1', 6, 'image/jpeg', 8166, 'main/blog/blog-details-sm-1.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(46, 0, 'post-1', 'post-1', 6, 'image/jpeg', 6189, 'main/blog/post-1.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(47, 0, 'post-10', 'post-10', 6, 'image/jpeg', 5907, 'main/blog/post-10.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(48, 0, 'post-11', 'post-11', 6, 'image/jpeg', 5907, 'main/blog/post-11.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(49, 0, 'post-12', 'post-12', 6, 'image/jpeg', 5907, 'main/blog/post-12.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(50, 0, 'post-2', 'post-2', 6, 'image/jpeg', 6189, 'main/blog/post-2.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(51, 0, 'post-3', 'post-3', 6, 'image/jpeg', 6189, 'main/blog/post-3.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(52, 0, 'post-4', 'post-4', 6, 'image/jpeg', 6045, 'main/blog/post-4.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(53, 0, 'post-5', 'post-5', 6, 'image/jpeg', 6045, 'main/blog/post-5.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(54, 0, 'post-6', 'post-6', 6, 'image/jpeg', 6045, 'main/blog/post-6.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(55, 0, 'post-7', 'post-7', 6, 'image/jpeg', 5907, 'main/blog/post-7.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(56, 0, 'post-8', 'post-8', 6, 'image/jpeg', 5907, 'main/blog/post-8.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(57, 0, 'post-9', 'post-9', 6, 'image/jpeg', 5907, 'main/blog/post-9.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(58, 0, '1', '1', 3, 'image/jpeg', 4068, 'main/users/1.jpg', '[]', '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL, 'public'),
(59, 0, '10', '10', 3, 'image/jpeg', 7599, 'main/users/10.jpg', '[]', '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, 'public'),
(60, 0, '2', '2', 3, 'image/jpeg', 7599, 'main/users/2.jpg', '[]', '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, 'public'),
(61, 0, '3', '3', 3, 'image/jpeg', 6387, 'main/users/3.jpg', '[]', '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, 'public'),
(62, 0, '4', '4', 3, 'image/jpeg', 7599, 'main/users/4.jpg', '[]', '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, 'public'),
(63, 0, '5', '5', 3, 'image/jpeg', 6387, 'main/users/5.jpg', '[]', '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, 'public'),
(64, 0, '6', '6', 3, 'image/jpeg', 7599, 'main/users/6.jpg', '[]', '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, 'public'),
(65, 0, '7', '7', 3, 'image/jpeg', 6387, 'main/users/7.jpg', '[]', '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, 'public'),
(66, 0, '8', '8', 3, 'image/jpeg', 7599, 'main/users/8.jpg', '[]', '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, 'public'),
(67, 0, '9', '9', 3, 'image/jpeg', 6387, 'main/users/9.jpg', '[]', '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, 'public'),
(68, 0, '1', '1', 7, 'image/png', 9022, 'main/stores/1.png', '[]', '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, 'public'),
(69, 0, '10', '10', 7, 'image/png', 4384, 'main/stores/10.png', '[]', '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, 'public'),
(70, 0, '11', '11', 7, 'image/png', 4706, 'main/stores/11.png', '[]', '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, 'public'),
(71, 0, '12', '12', 7, 'image/png', 5075, 'main/stores/12.png', '[]', '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL, 'public'),
(72, 0, '13', '13', 7, 'image/png', 3700, 'main/stores/13.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(73, 0, '14', '14', 7, 'image/png', 4239, 'main/stores/14.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(74, 0, '15', '15', 7, 'image/png', 5304, 'main/stores/15.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(75, 0, '16', '16', 7, 'image/png', 4796, 'main/stores/16.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(76, 0, '17', '17', 7, 'image/png', 4919, 'main/stores/17.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(77, 0, '2', '2', 7, 'image/png', 8598, 'main/stores/2.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(78, 0, '3', '3', 7, 'image/png', 7888, 'main/stores/3.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(79, 0, '4', '4', 7, 'image/png', 8393, 'main/stores/4.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(80, 0, '5', '5', 7, 'image/png', 10159, 'main/stores/5.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(81, 0, '6', '6', 7, 'image/png', 10312, 'main/stores/6.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(82, 0, '7', '7', 7, 'image/png', 3764, 'main/stores/7.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(83, 0, '8', '8', 7, 'image/png', 4237, 'main/stores/8.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(84, 0, '9', '9', 7, 'image/png', 4096, 'main/stores/9.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(85, 0, 'cover-1', 'cover-1', 7, 'image/png', 4208, 'main/stores/cover-1.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(86, 0, 'cover-2', 'cover-2', 7, 'image/png', 8798, 'main/stores/cover-2.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(87, 0, 'cover-3', 'cover-3', 7, 'image/png', 3888, 'main/stores/cover-3.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(88, 0, 'cover-4', 'cover-4', 7, 'image/png', 11893, 'main/stores/cover-4.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(89, 0, 'cover-5', 'cover-5', 7, 'image/png', 8798, 'main/stores/cover-5.png', '[]', '2024-10-31 20:46:53', '2024-10-31 20:46:53', NULL, 'public'),
(90, 0, 'shape-1', 'shape-1', 9, 'image/png', 1842, 'fashion/sliders/shape-1.png', '[]', '2024-10-31 20:46:56', '2024-10-31 20:46:56', NULL, 'public'),
(91, 0, 'shape-2', 'shape-2', 9, 'image/png', 489, 'fashion/sliders/shape-2.png', '[]', '2024-10-31 20:46:56', '2024-10-31 20:46:56', NULL, 'public'),
(92, 0, 'shape-3', 'shape-3', 9, 'image/png', 221, 'fashion/sliders/shape-3.png', '[]', '2024-10-31 20:46:56', '2024-10-31 20:46:56', NULL, 'public'),
(93, 0, 'slider-1', 'slider-1', 9, 'image/png', 10444, 'fashion/sliders/slider-1.png', '[]', '2024-10-31 20:46:56', '2024-10-31 20:46:56', NULL, 'public'),
(94, 0, 'slider-2', 'slider-2', 9, 'image/png', 9843, 'fashion/sliders/slider-2.png', '[]', '2024-10-31 20:46:56', '2024-10-31 20:46:56', NULL, 'public'),
(95, 0, 'slider-3', 'slider-3', 9, 'image/png', 11768, 'fashion/sliders/slider-3.png', '[]', '2024-10-31 20:46:56', '2024-10-31 20:46:56', NULL, 'public'),
(96, 0, '1', '1', 10, 'image/jpeg', 4294, 'fashion/product-categories/1.jpg', '[]', '2024-10-31 20:46:56', '2024-10-31 20:46:56', NULL, 'public'),
(97, 0, '2', '2', 10, 'image/jpeg', 4294, 'fashion/product-categories/2.jpg', '[]', '2024-10-31 20:46:56', '2024-10-31 20:46:56', NULL, 'public'),
(98, 0, '3', '3', 10, 'image/jpeg', 4294, 'fashion/product-categories/3.jpg', '[]', '2024-10-31 20:46:56', '2024-10-31 20:46:56', NULL, 'public'),
(99, 0, '4', '4', 10, 'image/jpeg', 4294, 'fashion/product-categories/4.jpg', '[]', '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, 'public'),
(100, 0, '5', '5', 10, 'image/jpeg', 4294, 'fashion/product-categories/5.jpg', '[]', '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, 'public'),
(101, 0, '6', '6', 10, 'image/jpeg', 4294, 'fashion/product-categories/6.jpg', '[]', '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, 'public'),
(102, 0, 'product-1', 'product-1', 11, 'image/png', 9803, 'fashion/products/product-1.png', '[]', '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, 'public'),
(103, 0, 'product-2', 'product-2', 11, 'image/png', 9803, 'fashion/products/product-2.png', '[]', '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, 'public'),
(104, 0, 'product-3', 'product-3', 11, 'image/png', 9803, 'fashion/products/product-3.png', '[]', '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, 'public'),
(105, 0, 'product-4', 'product-4', 11, 'image/png', 9803, 'fashion/products/product-4.png', '[]', '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, 'public'),
(106, 0, 'product-5', 'product-5', 11, 'image/png', 9803, 'fashion/products/product-5.png', '[]', '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, 'public'),
(107, 0, 'product-6', 'product-6', 11, 'image/png', 9803, 'fashion/products/product-6.png', '[]', '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, 'public'),
(108, 0, 'product-7', 'product-7', 11, 'image/png', 9803, 'fashion/products/product-7.png', '[]', '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, 'public'),
(109, 0, 'product-8', 'product-8', 11, 'image/png', 9803, 'fashion/products/product-8.png', '[]', '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL, 'public'),
(110, 0, '1', '1', 12, 'image/jpeg', 15433, 'main/video/1.jpg', '[]', '2024-10-31 20:46:58', '2024-10-31 20:46:58', NULL, 'public'),
(111, 0, '2', '2', 12, 'image/jpeg', 18347, 'main/video/2.jpg', '[]', '2024-10-31 20:46:58', '2024-10-31 20:46:58', NULL, 'public'),
(112, 0, 'video-1', 'video-1', 12, 'video/mp4', 4959871, 'main/video/video-1.mp4', '[]', '2024-10-31 20:46:58', '2024-10-31 20:46:58', NULL, 'public'),
(113, 0, 'video-2', 'video-2', 12, 'video/mp4', 1077550, 'main/video/video-2.mp4', '[]', '2024-10-31 20:46:58', '2024-10-31 20:46:58', NULL, 'public'),
(114, 0, '1', '1', 13, 'image/jpeg', 6309, 'main/banners/1.jpg', '[]', '2024-10-31 20:47:00', '2024-10-31 20:47:00', NULL, 'public'),
(115, 0, '2', '2', 13, 'image/jpeg', 6275, 'main/banners/2.jpg', '[]', '2024-10-31 20:47:00', '2024-10-31 20:47:00', NULL, 'public'),
(116, 0, 'slider-1', 'slider-1', 13, 'image/png', 8207, 'main/banners/slider-1.png', '[]', '2024-10-31 20:47:00', '2024-10-31 20:47:00', NULL, 'public'),
(117, 0, 'slider-2', 'slider-2', 13, 'image/png', 8497, 'main/banners/slider-2.png', '[]', '2024-10-31 20:47:00', '2024-10-31 20:47:00', NULL, 'public'),
(118, 0, 'slider-3', 'slider-3', 13, 'image/png', 6239, 'main/banners/slider-3.png', '[]', '2024-10-31 20:47:00', '2024-10-31 20:47:00', NULL, 'public'),
(119, 0, '1', '1', 14, 'image/jpeg', 6287, 'fashion/banners/1.jpg', '[]', '2024-10-31 20:47:00', '2024-10-31 20:47:00', NULL, 'public'),
(120, 0, '2', '2', 14, 'image/jpeg', 5975, 'fashion/banners/2.jpg', '[]', '2024-10-31 20:47:00', '2024-10-31 20:47:00', NULL, 'public'),
(121, 0, '3', '3', 14, 'image/jpeg', 5975, 'fashion/banners/3.jpg', '[]', '2024-10-31 20:47:01', '2024-10-31 20:47:01', NULL, 'public'),
(122, 0, '4', '4', 14, 'image/jpeg', 9052, 'fashion/banners/4.jpg', '[]', '2024-10-31 20:47:01', '2024-10-31 20:47:01', NULL, 'public'),
(123, 0, '1', '1', 15, 'image/jpeg', 4294, 'fashion/galleries/1.jpg', '[]', '2024-10-31 20:47:01', '2024-10-31 20:47:01', NULL, 'public'),
(124, 0, '2', '2', 15, 'image/jpeg', 4294, 'fashion/galleries/2.jpg', '[]', '2024-10-31 20:47:01', '2024-10-31 20:47:01', NULL, 'public'),
(125, 0, '3', '3', 15, 'image/jpeg', 4294, 'fashion/galleries/3.jpg', '[]', '2024-10-31 20:47:01', '2024-10-31 20:47:01', NULL, 'public'),
(126, 0, '4', '4', 15, 'image/jpeg', 4294, 'fashion/galleries/4.jpg', '[]', '2024-10-31 20:47:01', '2024-10-31 20:47:01', NULL, 'public'),
(127, 0, '5', '5', 15, 'image/jpeg', 4294, 'fashion/galleries/5.jpg', '[]', '2024-10-31 20:47:01', '2024-10-31 20:47:01', NULL, 'public'),
(128, 0, 'icon-1', 'icon-1', 16, 'image/png', 4492, 'main/contact/icon-1.png', '[]', '2024-10-31 20:47:01', '2024-10-31 20:47:01', NULL, 'public'),
(129, 0, 'icon-2', 'icon-2', 16, 'image/png', 5753, 'main/contact/icon-2.png', '[]', '2024-10-31 20:47:01', '2024-10-31 20:47:01', NULL, 'public'),
(130, 0, 'icon-3', 'icon-3', 16, 'image/png', 5987, 'main/contact/icon-3.png', '[]', '2024-10-31 20:47:01', '2024-10-31 20:47:01', NULL, 'public'),
(131, 0, 'line', 'line', 17, 'image/png', 6598, 'main/shapes/line.png', '[]', '2024-10-31 20:47:02', '2024-10-31 20:47:02', NULL, 'public'),
(132, 0, 'quote', 'quote', 17, 'image/png', 592, 'main/shapes/quote.png', '[]', '2024-10-31 20:47:02', '2024-10-31 20:47:02', NULL, 'public'),
(133, 1, 'first_iphone-removebg-preview', 'first_iphone-removebg-preview', 11, 'image/png', 130471, 'fashion/products/first-iphone-removebg-preview.png', '[]', '2025-02-14 08:27:58', '2025-02-14 08:27:58', NULL, 'public'),
(134, 1, 'seccond_iphone-removebg-preview', 'seccond_iphone-removebg-preview', 11, 'image/png', 35398, 'fashion/products/seccond-iphone-removebg-preview.png', '[]', '2025-02-14 08:28:01', '2025-02-14 08:28:01', NULL, 'public'),
(135, 1, 'third_iphone-removebg-preview', 'third_iphone-removebg-preview', 11, 'image/png', 48083, 'fashion/products/third-iphone-removebg-preview.png', '[]', '2025-02-14 08:28:02', '2025-02-14 08:28:02', NULL, 'public'),
(136, 1, 'fifth_iphone-removebg-preview', 'fifth_iphone-removebg-preview', 11, 'image/png', 44982, 'fashion/products/fifth-iphone-removebg-preview.png', '[]', '2025-02-14 08:28:03', '2025-02-14 08:28:03', NULL, 'public'),
(137, 0, 'logo_avs', 'logo_avs', 19, 'image/jpeg', 8375, 'customers/11/logo-avs.jpeg', '[]', '2025-02-14 10:33:25', '2025-02-14 10:33:25', NULL, 'public'),
(138, 1, 'logo_avs', 'logo_avs', 0, 'image/jpeg', 8375, 'logo-avs.jpeg', '[]', '2025-02-14 21:45:51', '2025-02-14 21:45:51', NULL, 'public'),
(139, 1, 'logo_avs-1', 'logo_avs-1', 0, 'image/jpeg', 8375, 'logo-avs-1.jpeg', '[]', '2025-02-14 21:46:17', '2025-02-14 21:46:17', NULL, 'public'),
(140, 0, 'k3', 'k3', 21, 'image/jpeg', 12924, 'stores/ladylife/k3.jpeg', '[]', '2025-02-14 22:02:51', '2025-02-14 22:02:51', NULL, 'public'),
(141, 0, 'k2', 'k2', 21, 'image/jpeg', 18209, 'stores/ladylife/k2.jpeg', '[]', '2025-02-14 22:02:52', '2025-02-14 22:02:52', NULL, 'public'),
(142, 0, 'k1', 'k1', 21, 'image/jpeg', 12762, 'stores/ladylife/k1.jpeg', '[]', '2025-02-14 22:02:53', '2025-02-14 22:02:53', NULL, 'public'),
(143, 1, 'fifth_iphone-removebg-preview', 'fifth_iphone-removebg-preview', 0, 'image/png', 44982, 'fifth-iphone-removebg-preview.png', '[]', '2025-02-14 22:33:14', '2025-02-14 22:33:14', NULL, 'public'),
(144, 1, 'first_iphone-removebg-preview', 'first_iphone-removebg-preview', 0, 'image/png', 130471, 'first-iphone-removebg-preview.png', '[]', '2025-02-14 22:33:15', '2025-02-14 22:33:15', NULL, 'public'),
(145, 1, 'seccond_iphone-removebg-preview', 'seccond_iphone-removebg-preview', 0, 'image/png', 35398, 'seccond-iphone-removebg-preview.png', '[]', '2025-02-14 22:33:16', '2025-02-14 22:33:16', NULL, 'public'),
(146, 1, 'third_iphone-removebg-preview', 'third_iphone-removebg-preview', 0, 'image/png', 48083, 'third-iphone-removebg-preview.png', '[]', '2025-02-14 22:33:17', '2025-02-14 22:33:17', NULL, 'public'),
(147, 1, '295cca3a-6cc2-4785-96e7-de290410ead1', '295cca3a-6cc2-4785-96e7-de290410ead1', 0, 'image/jpeg', 137957, '295cca3a-6cc2-4785-96e7-de290410ead1.jpeg', '[]', '2025-02-14 22:50:06', '2025-02-14 22:50:57', '2025-02-14 22:50:57', 'public'),
(148, 1, '295cca3a-6cc2-4785-96e7-de290410ead1-1', '295cca3a-6cc2-4785-96e7-de290410ead1-1', 0, 'image/jpeg', 133478, '295cca3a-6cc2-4785-96e7-de290410ead1-1.jpeg?v=1739593430', '[]', '2025-02-14 22:52:32', '2025-02-14 22:53:50', NULL, 'public'),
(149, 1, '295cca3a-6cc2-4785-96e7-de290410ead1-2', '295cca3a-6cc2-4785-96e7-de290410ead1-2', 0, 'image/jpeg', 133478, '295cca3a-6cc2-4785-96e7-de290410ead1-2.jpeg', '[]', '2025-02-14 22:53:59', '2025-02-14 22:53:59', NULL, 'public'),
(150, 1, 'Manusia Formal Baju Biru Ultra Laut Bebas Png Dan Psd, Pakaian Resmi, Setelan Foto Paspor, Pakaian Pria PNG Transparan Clipart dan File PSD untuk Unduh Gratis', 'Manusia Formal Baju Biru Ultra Laut Bebas Png Dan Psd, Pakaian Resmi, Setelan Foto Paspor, Pakaian Pria PNG Transparan Clipart dan File PSD untuk Unduh Gratis', 0, 'image/jpeg', 13838, 'manusia-formal-baju-biru-ultra-laut-bebas-png-dan-psd-pakaian-resmi-setelan-foto-paspor-pakaian-pria.jpeg', '[]', '2025-02-14 22:57:18', '2025-02-14 22:57:18', NULL, 'public'),
(151, 1, 'avs-logo', 'avs-logo', 0, 'image/png', 118425, 'avs-logo.png', '[]', '2025-02-17 08:27:43', '2025-02-17 08:27:43', NULL, 'public');

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

--
-- Table structure for table `media_folders`
--

CREATE TABLE `media_folders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `color` varchar(191) DEFAULT NULL,
  `slug` varchar(191) DEFAULT NULL,
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `media_folders`
--

INSERT INTO `media_folders` (`id`, `user_id`, `name`, `color`, `slug`, `parent_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 0, 'main', NULL, 'main', 0, '2024-10-31 20:46:45', '2024-10-31 20:46:45', NULL),
(2, 0, 'general', NULL, 'general', 1, '2024-10-31 20:46:45', '2024-10-31 20:46:45', NULL),
(3, 0, 'users', NULL, 'users', 1, '2024-10-31 20:46:46', '2024-10-31 20:46:46', NULL),
(4, 0, 'brands', NULL, 'brands', 1, '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL),
(5, 0, 'customers', NULL, 'customers', 1, '2024-10-31 20:46:47', '2024-10-31 20:46:47', NULL),
(6, 0, 'blog', NULL, 'blog', 1, '2024-10-31 20:46:51', '2024-10-31 20:46:51', NULL),
(7, 0, 'stores', NULL, 'stores', 1, '2024-10-31 20:46:52', '2024-10-31 20:46:52', NULL),
(8, 0, 'fashion', NULL, 'fashion', 0, '2024-10-31 20:46:56', '2024-10-31 20:46:56', NULL),
(9, 0, 'sliders', NULL, 'sliders', 8, '2024-10-31 20:46:56', '2024-10-31 20:46:56', NULL),
(10, 0, 'product-categories', NULL, 'product-categories', 8, '2024-10-31 20:46:56', '2024-10-31 20:46:56', NULL),
(11, 0, 'products', NULL, 'products', 8, '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL),
(12, 0, 'video', NULL, 'video', 1, '2024-10-31 20:46:57', '2024-10-31 20:46:57', NULL),
(13, 0, 'banners', NULL, 'banners', 1, '2024-10-31 20:47:00', '2024-10-31 20:47:00', NULL),
(14, 0, 'banners', NULL, 'banners', 8, '2024-10-31 20:47:00', '2024-10-31 20:47:00', NULL),
(15, 0, 'galleries', NULL, 'galleries', 8, '2024-10-31 20:47:01', '2024-10-31 20:47:01', NULL),
(16, 0, 'contact', NULL, 'contact', 1, '2024-10-31 20:47:01', '2024-10-31 20:47:01', NULL),
(17, 0, 'shapes', NULL, 'shapes', 1, '2024-10-31 20:47:02', '2024-10-31 20:47:02', NULL),
(18, 0, 'customers', NULL, 'customers', 0, '2025-02-14 10:33:25', '2025-02-14 10:33:25', NULL),
(19, 0, '11', NULL, '11', 18, '2025-02-14 10:33:25', '2025-02-14 10:33:25', NULL),
(20, 0, 'stores', NULL, 'stores', 0, '2025-02-14 22:02:51', '2025-02-14 22:02:51', NULL),
(21, 0, 'ladylife', NULL, 'ladylife', 20, '2025-02-14 22:02:51', '2025-02-14 22:02:51', NULL);

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

--
-- Table structure for table `media_settings`
--

CREATE TABLE `media_settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `key` varchar(120) NOT NULL,
  `value` text DEFAULT NULL,
  `media_id` bigint(20) UNSIGNED DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `menus`
--

CREATE TABLE `menus` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `slug` varchar(120) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `menus`
--

INSERT INTO `menus` (`id`, `name`, `slug`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Main menu', 'main-menu', 'published', '2024-10-31 20:47:01', '2025-02-14 23:10:22'),
(2, 'My Account', 'my-account', 'published', '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(3, 'Information', 'information', 'published', '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(4, 'footer-menu', 'footer-menu', 'published', '2025-02-15 00:30:52', '2025-02-15 00:33:33');

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

--
-- Table structure for table `menu_locations`
--

CREATE TABLE `menu_locations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `menu_id` bigint(20) UNSIGNED NOT NULL,
  `location` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `menu_locations`
--

INSERT INTO `menu_locations` (`id`, `menu_id`, `location`, `created_at`, `updated_at`) VALUES
(1, 1, 'main-menu', '2024-10-31 20:47:02', '2024-10-31 20:47:02');

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

--
-- Table structure for table `menu_nodes`
--

CREATE TABLE `menu_nodes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `menu_id` bigint(20) UNSIGNED NOT NULL,
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `reference_id` bigint(20) UNSIGNED DEFAULT NULL,
  `reference_type` varchar(191) DEFAULT NULL,
  `url` varchar(191) DEFAULT NULL,
  `icon_font` varchar(191) DEFAULT NULL,
  `position` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `title` varchar(191) DEFAULT NULL,
  `css_class` varchar(191) DEFAULT NULL,
  `target` varchar(20) NOT NULL DEFAULT '_self',
  `has_child` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `menu_nodes`
--

INSERT INTO `menu_nodes` (`id`, `menu_id`, `parent_id`, `reference_id`, `reference_type`, `url`, `icon_font`, `position`, `title`, `css_class`, `target`, `has_child`, `created_at`, `updated_at`) VALUES
(1, 1, 0, 1, 'Botble\\Page\\Models\\Page', '', '', 0, 'Home', '', '_self', 0, '2024-10-31 20:47:02', '2025-02-14 23:10:22'),
(7, 1, 0, 0, NULL, '', '', 2, 'Shop', '', '_self', 1, '2024-10-31 20:47:02', '2025-02-14 23:10:22'),
(8, 1, 44, 2, 'Botble\\Page\\Models\\Page', '/categories', '', 0, 'Shop Categories', '', '_self', 0, '2024-10-31 20:47:02', '2025-02-14 23:10:22'),
(9, 1, 44, 3, 'Botble\\Page\\Models\\Page', '/brands', '', 1, 'Shop Brands', '', '_self', 0, '2024-10-31 20:47:02', '2025-02-14 23:10:22'),
(12, 1, 44, 0, NULL, '/products/classic-aviator-sunglasses', '', 2, 'Product Detail', '', '_self', 0, '2024-10-31 20:47:02', '2025-02-14 23:10:22'),
(13, 1, 7, 4, 'Botble\\Page\\Models\\Page', '/coupons', '', 0, 'Grab Coupons', '', '_self', 0, '2024-10-31 20:47:02', '2025-02-14 23:10:22'),
(14, 1, 7, 0, NULL, '/cart', '', 1, 'Cart', '', '_self', 0, '2024-10-31 20:47:02', '2025-02-14 23:10:22'),
(15, 1, 7, 0, NULL, '/compare', '', 2, 'Compare', '', '_self', 0, '2024-10-31 20:47:02', '2025-02-14 23:10:22'),
(16, 1, 7, 0, NULL, '/wishlist', '', 3, 'Wishlist', '', '_self', 0, '2024-10-31 20:47:02', '2025-02-14 23:10:22'),
(17, 1, 7, 0, NULL, '/orders/tracking', '', 4, 'Track Your Order', '', '_self', 0, '2024-10-31 20:47:02', '2025-02-14 23:10:22'),
(30, 1, 0, 6, 'Botble\\Page\\Models\\Page', '/contact', '', 3, 'Contact', '', '_self', 0, '2024-10-31 20:47:02', '2025-02-14 23:10:22'),
(31, 2, 0, NULL, NULL, '/orders/tracking', NULL, 1, 'Track Orders', NULL, '_self', 0, '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(32, 2, 0, 11, 'Botble\\Page\\Models\\Page', '/shipping', NULL, 1, 'Shipping', NULL, '_self', 0, '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(33, 2, 0, NULL, NULL, '/wishlist', NULL, 1, 'Wishlist', NULL, '_self', 0, '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(34, 2, 0, NULL, NULL, '/customer/overview', NULL, 1, 'My Account', NULL, '_self', 0, '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(35, 2, 0, NULL, NULL, '/customer/orders', NULL, 1, 'Order History', NULL, '_self', 0, '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(36, 2, 0, NULL, NULL, '/customer/order-returns', NULL, 1, 'Returns', NULL, '_self', 0, '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(37, 3, 0, 9, 'Botble\\Page\\Models\\Page', '/our-story', NULL, 2, 'Our Story', NULL, '_self', 0, '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(38, 3, 0, 10, 'Botble\\Page\\Models\\Page', '/careers', NULL, 2, 'Careers', NULL, '_self', 0, '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(39, 3, 0, 8, 'Botble\\Page\\Models\\Page', '/cookie-policy', NULL, 2, 'Privacy Policy', NULL, '_self', 0, '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(40, 3, 0, NULL, NULL, '/blog', NULL, 2, 'Latest News', NULL, '_self', 0, '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(41, 3, 0, 6, 'Botble\\Page\\Models\\Page', '/contact', NULL, 2, 'Contact Us', NULL, '_self', 0, '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(44, 1, 0, 0, NULL, '/', 'ti ti-list-details', 1, 'Details', '', '_self', 1, '2025-02-14 23:08:41', '2025-02-14 23:10:22'),
(45, 4, 0, 1, 'Botble\\Page\\Models\\Page', '', NULL, 0, 'Home', NULL, '_self', 0, '2025-02-15 00:31:18', '2025-02-15 00:33:33'),
(46, 4, 0, 6, 'Botble\\Page\\Models\\Page', '/contact', NULL, 1, 'Contact', NULL, '_self', 0, '2025-02-15 00:31:34', '2025-02-15 00:33:33'),
(47, 4, 0, 7, 'Botble\\Page\\Models\\Page', '/faqs', NULL, 2, 'FAQs', NULL, '_self', 0, '2025-02-15 00:32:59', '2025-02-15 00:33:33'),
(48, 4, 0, 13, 'Botble\\Page\\Models\\Page', '/return-policy', NULL, 3, 'Return Policy', NULL, '_self', 0, '2025-02-15 00:32:59', '2025-02-15 00:33:33'),
(49, 4, 0, 7, 'Botble\\Ecommerce\\Models\\ProductCategory', '/product-categories/womens-clothing', NULL, 4, 'Women\'s Clothing', NULL, '_self', 0, '2025-02-15 00:33:13', '2025-02-15 00:33:34');

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

--
-- Table structure for table `meta_boxes`
--

CREATE TABLE `meta_boxes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `meta_key` varchar(191) NOT NULL,
  `meta_value` text DEFAULT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(120) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `meta_boxes`
--

INSERT INTO `meta_boxes` (`id`, `meta_key`, `meta_value`, `reference_id`, `reference_type`, `created_at`, `updated_at`) VALUES
(1, 'button_label', '[\"Shop Collection\"]', 1, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2024-10-31 20:46:56', '2024-10-31 20:46:56'),
(2, 'button_label', '[\"Shop Collection\"]', 2, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2024-10-31 20:46:56', '2024-10-31 20:46:56'),
(3, 'button_label', '[\"Shop Collection\"]', 3, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2024-10-31 20:46:56', '2024-10-31 20:46:56'),
(4, 'faq_ids', '[[2,5,6,8,9]]', 1, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(5, 'faq_ids', '[[3,4,5,6,7]]', 2, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(6, 'faq_ids', '[[3,5,8,9,10]]', 3, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(7, 'faq_ids', '[[2,5,8,9,10]]', 4, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(8, 'faq_ids', '[[1,2,5,8,10]]', 5, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(9, 'faq_ids', '[[1,3,7,9,10]]', 6, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(10, 'faq_ids', '[[1,2,6,9,10]]', 7, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(11, 'faq_ids', '[[1,4,6,8,9]]', 8, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(12, 'faq_ids', '[[2,3,5,6,8]]', 9, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(13, 'faq_ids', '[[1,2,7,8,10]]', 10, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(14, 'faq_ids', '[[1,4,6,7,10]]', 11, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(15, 'faq_ids', '[[2,5,6,9,10]]', 12, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(16, 'faq_ids', '[[1,3,4,6,9]]', 13, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(17, 'faq_ids', '[[1,3,4,9,10]]', 14, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(18, 'faq_ids', '[[1,2,6,7,8]]', 15, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(19, 'faq_ids', '[[1,3,5,6,8]]', 16, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(20, 'faq_ids', '[[1,4,7,8,10]]', 17, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(21, 'faq_ids', '[[1,5,6,9,10]]', 18, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(22, 'faq_ids', '[[1,4,5,8,9]]', 19, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(23, 'faq_ids', '[[1,4,5,6,10]]', 20, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(24, 'faq_ids', '[[1,2,3,6,7]]', 21, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(25, 'faq_ids', '[[2,6,7,8,10]]', 22, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(26, 'faq_ids', '[[1,2,4,6,10]]', 23, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(27, 'faq_ids', '[[5,6,7,8,9]]', 24, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(28, 'faq_ids', '[[1,4,7,8,9]]', 25, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(29, 'faq_ids', '[[1,2,5,6,8]]', 26, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(30, 'faq_ids', '[[1,4,5,6,7]]', 27, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(31, 'faq_ids', '[[1,2,6,7,9]]', 28, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(32, 'faq_ids', '[[1,4,5,9,10]]', 29, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(33, 'faq_ids', '[[2,4,5,6,10]]', 30, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(34, 'faq_ids', '[[2,4,5,7,9]]', 31, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(35, 'faq_ids', '[[2,6,8,9,10]]', 32, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(36, 'faq_ids', '[[1,2,3,6,7]]', 33, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(38, 'faq_ids', '[[2,4,5,7,10]]', 35, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(39, 'faq_ids', '[[1,5,6,7,8]]', 36, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(40, 'faq_ids', '[[1,4,5,8,9]]', 37, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(41, 'faq_ids', '[[5,6,7,8,9]]', 38, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(42, 'faq_ids', '[[1,6,7,9,10]]', 39, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(43, 'faq_ids', '[[1,3,5,6,10]]', 40, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(44, 'faq_ids', '[[2,5,7,8,10]]', 41, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(45, 'faq_ids', '[[1,3,4,8,10]]', 42, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2024-10-31 20:46:58'),
(46, 'faq_ids', '[[\"3\",\"5\",\"6\",\"7\",\"10\"]]', 43, 'Botble\\Ecommerce\\Models\\Product', '2024-10-31 20:46:58', '2025-02-14 08:30:47'),
(53, 'title', '[\"New Arrivals\"]', 3, 'Botble\\Ads\\Models\\Ads', '2024-10-31 20:47:01', '2025-02-14 23:44:31'),
(54, 'button_label', '[\"Shop Now\"]', 3, 'Botble\\Ads\\Models\\Ads', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(61, 'breadcrumb_style', '[\"none\"]', 1, 'Botble\\Page\\Models\\Page', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(62, 'breadcrumb_style', '[\"align-start\"]', 2, 'Botble\\Page\\Models\\Page', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(63, 'breadcrumb_style', '[\"align-center\"]', 7, 'Botble\\Page\\Models\\Page', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(64, 'seo_meta', '[{\"index\":\"index\"}]', 43, 'Botble\\Ecommerce\\Models\\Product', '2025-02-14 08:30:46', '2025-02-14 08:30:46'),
(65, 'background_color', '[\"transparent\"]', 1, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2025-02-14 10:15:15', '2025-02-14 10:15:15'),
(66, 'is_light', '[\"0\"]', 1, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2025-02-14 10:15:15', '2025-02-14 10:15:15'),
(67, 'background_color', '[\"transparent\"]', 2, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2025-02-14 10:15:35', '2025-02-14 10:15:35'),
(68, 'is_light', '[\"0\"]', 2, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2025-02-14 10:15:35', '2025-02-14 10:15:35'),
(69, 'background_color', '[\"transparent\"]', 3, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2025-02-14 10:15:53', '2025-02-14 10:15:53'),
(70, 'is_light', '[\"0\"]', 3, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2025-02-14 10:15:53', '2025-02-14 10:15:53'),
(71, 'subtitle', '[\"Demo\"]', 1, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2025-02-14 10:20:24', '2025-02-14 10:20:24'),
(72, 'breadcrumb_style', '[\"align-start\"]', 3, 'Botble\\Page\\Models\\Page', '2025-02-14 10:37:37', '2025-02-14 10:37:37'),
(73, 'breadcrumb_background', '[\"fashion\\/products\\/fifth-iphone-removebg-preview.png\"]', 3, 'Botble\\Page\\Models\\Page', '2025-02-14 10:37:37', '2025-02-14 10:37:37'),
(74, 'seo_meta', '[{\"index\":\"index\"}]', 3, 'Botble\\Page\\Models\\Page', '2025-02-14 10:37:37', '2025-02-14 10:37:37'),
(75, 'tablet_image', '[\"fashion\\/products\\/first-iphone-removebg-preview.png\"]', 1, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2025-02-14 10:54:14', '2025-02-14 10:54:14'),
(76, 'mobile_image', '[\"fashion\\/products\\/first-iphone-removebg-preview.png\"]', 1, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2025-02-14 10:54:14', '2025-02-14 10:54:14'),
(77, 'tablet_image', '[\"fashion\\/products\\/seccond-iphone-removebg-preview.png\"]', 2, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2025-02-14 10:54:35', '2025-02-14 10:54:35'),
(78, 'mobile_image', '[\"fashion\\/products\\/seccond-iphone-removebg-preview.png\"]', 2, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2025-02-14 10:54:35', '2025-02-14 10:54:35'),
(79, 'tablet_image', '[\"fashion\\/products\\/third-iphone-removebg-preview.png\"]', 3, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2025-02-14 10:54:55', '2025-02-14 10:54:55'),
(80, 'mobile_image', '[\"fashion\\/products\\/third-iphone-removebg-preview.png\"]', 3, 'Botble\\SimpleSlider\\Models\\SimpleSliderItem', '2025-02-14 10:54:55', '2025-02-14 10:54:55'),
(81, 'breadcrumb_background', '[\"fashion\\/products\\/first-iphone-removebg-preview.png\"]', 1, 'Botble\\Page\\Models\\Page', '2025-02-14 10:58:06', '2025-02-14 10:58:06'),
(82, 'breadcrumb_style', '[\"align-start\"]', 14, 'Botble\\Page\\Models\\Page', '2025-02-14 10:59:43', '2025-02-14 10:59:43'),
(83, 'breadcrumb_background', '[\"fashion\\/products\\/third-iphone-removebg-preview.png\"]', 14, 'Botble\\Page\\Models\\Page', '2025-02-14 10:59:43', '2025-02-14 10:59:43'),
(84, 'seo_meta', '[{\"index\":\"index\"}]', 14, 'Botble\\Page\\Models\\Page', '2025-02-14 10:59:43', '2025-02-14 10:59:43'),
(85, 'seo_meta', '[{\"index\":\"index\"}]', 101, 'Botble\\Ecommerce\\Models\\Product', '2025-02-14 22:06:31', '2025-02-14 22:06:31'),
(86, 'faq_ids', '[[]]', 101, 'Botble\\Ecommerce\\Models\\Product', '2025-02-14 22:06:31', '2025-02-14 22:06:31'),
(87, 'seo_meta', '[{\"index\":\"index\"}]', 7, 'Botble\\Ecommerce\\Models\\ProductTag', '2025-02-14 22:06:31', '2025-02-14 22:06:31'),
(88, 'seo_meta', '[{\"index\":\"index\"}]', 2, 'Botble\\Page\\Models\\Page', '2025-02-14 22:55:39', '2025-02-14 22:55:39'),
(89, 'seo_meta', '[{\"index\":\"index\"}]', 2, 'Botble\\Ecommerce\\Models\\ProductCategory', '2025-02-14 22:57:28', '2025-02-14 22:57:28'),
(90, 'seo_meta', '[{\"index\":\"index\"}]', 6, 'Botble\\Ecommerce\\Models\\Brand', '2025-02-14 23:34:25', '2025-02-14 23:34:25'),
(91, 'seo_meta', '[{\"index\":\"index\"}]', 127, 'Botble\\Ecommerce\\Models\\Product', '2025-02-19 03:36:18', '2025-02-19 03:36:18'),
(92, 'faq_ids', '[[]]', 127, 'Botble\\Ecommerce\\Models\\Product', '2025-02-19 03:36:18', '2025-02-19 03:36:18'),
(93, 'seo_meta', '[{\"index\":\"index\"}]', 8, 'Botble\\Ecommerce\\Models\\ProductTag', '2025-02-19 03:36:18', '2025-02-19 03:36:18'),
(94, 'seo_meta', '[{\"index\":\"index\"}]', 9, 'Botble\\Ecommerce\\Models\\ProductTag', '2025-02-19 03:36:18', '2025-02-19 03:36:18');

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

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

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

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

INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2013_04_09_032329_create_base_tables', 1),
(2, '2013_04_09_062329_create_revisions_table', 1),
(3, '2014_10_12_000000_create_users_table', 1),
(4, '2014_10_12_100000_create_password_reset_tokens_table', 1),
(5, '2015_06_18_033822_create_blog_table', 1),
(6, '2015_06_29_025744_create_audit_history', 1),
(7, '2016_05_28_112028_create_system_request_logs_table', 1),
(8, '2016_06_10_230148_create_acl_tables', 1),
(9, '2016_06_14_230857_create_menus_table', 1),
(10, '2016_06_17_091537_create_contacts_table', 1),
(11, '2016_06_28_221418_create_pages_table', 1),
(12, '2016_10_03_032336_create_languages_table', 1),
(13, '2016_10_05_074239_create_setting_table', 1),
(14, '2016_10_07_193005_create_translations_table', 1),
(15, '2016_10_13_150201_create_galleries_table', 1),
(16, '2016_11_28_032840_create_dashboard_widget_tables', 1),
(17, '2016_12_16_084601_create_widgets_table', 1),
(18, '2017_05_09_070343_create_media_tables', 1),
(19, '2017_05_18_080441_create_payment_tables', 1),
(20, '2017_07_11_140018_create_simple_slider_table', 1),
(21, '2017_10_24_154832_create_newsletter_table', 1),
(22, '2017_11_03_070450_create_slug_table', 1),
(23, '2018_07_09_214610_create_testimonial_table', 1),
(24, '2018_07_09_221238_create_faq_table', 1),
(25, '2019_01_05_053554_create_jobs_table', 1),
(26, '2019_08_19_000000_create_failed_jobs_table', 1),
(27, '2019_11_18_061011_create_country_table', 1),
(28, '2019_12_14_000001_create_personal_access_tokens_table', 1),
(29, '2020_03_05_041139_create_ecommerce_tables', 1),
(30, '2020_11_18_150916_ads_create_ads_table', 1),
(31, '2021_01_01_044147_ecommerce_create_flash_sale_table', 1),
(32, '2021_01_17_082713_add_column_is_featured_to_product_collections_table', 1),
(33, '2021_01_18_024333_add_zip_code_into_table_customer_addresses', 1),
(34, '2021_02_16_092633_remove_default_value_for_author_type', 1),
(35, '2021_02_18_073505_update_table_ec_reviews', 1),
(36, '2021_03_10_024419_add_column_confirmed_at_to_table_ec_customers', 1),
(37, '2021_03_10_025153_change_column_tax_amount', 1),
(38, '2021_03_20_033103_add_column_availability_to_table_ec_products', 1),
(39, '2021_03_27_144913_add_customer_type_into_table_payments', 1),
(40, '2021_04_28_074008_ecommerce_create_product_label_table', 1),
(41, '2021_05_24_034720_make_column_currency_nullable', 1),
(42, '2021_05_31_173037_ecommerce_create_ec_products_translations', 1),
(43, '2021_07_06_030002_create_marketplace_table', 1),
(44, '2021_08_09_161302_add_metadata_column_to_payments_table', 1),
(45, '2021_08_17_105016_remove_column_currency_id_in_some_tables', 1),
(46, '2021_08_30_142128_add_images_column_to_ec_reviews_table', 1),
(47, '2021_09_04_150137_add_vendor_verified_at_to_ec_customers_table', 1),
(48, '2021_10_04_030050_add_column_created_by_to_table_ec_products', 1),
(49, '2021_10_04_033903_add_column_approved_by_into_table_ec_products', 1),
(50, '2021_10_05_122616_add_status_column_to_ec_customers_table', 1),
(51, '2021_10_06_124943_add_transaction_id_column_to_mp_customer_withdrawals_table', 1),
(52, '2021_10_10_054216_add_columns_to_mp_customer_revenues_table', 1),
(53, '2021_10_19_020859_update_metadata_field', 1),
(54, '2021_10_25_021023_fix-priority-load-for-language-advanced', 1),
(55, '2021_11_03_025806_nullable_phone_number_in_ec_customer_addresses', 1),
(56, '2021_11_23_071403_correct_languages_for_product_variations', 1),
(57, '2021_11_28_031808_add_product_tags_translations', 1),
(58, '2021_12_01_031123_add_featured_image_to_ec_products', 1),
(59, '2021_12_02_035301_add_ads_translations_table', 1),
(60, '2021_12_03_030600_create_blog_translations', 1),
(61, '2021_12_03_075608_create_page_translations', 1),
(62, '2021_12_03_082134_create_faq_translations', 1),
(63, '2021_12_03_082953_create_gallery_translations', 1),
(64, '2021_12_03_083642_create_testimonials_translations', 1),
(65, '2021_12_03_084118_create_location_translations', 1),
(66, '2021_12_03_094518_migrate_old_location_data', 1),
(67, '2021_12_06_031304_update_table_mp_customer_revenues', 1),
(68, '2021_12_10_034440_switch_plugin_location_to_use_language_advanced', 1),
(69, '2022_01_01_033107_update_table_ec_shipments', 1),
(70, '2022_01_16_085908_improve_plugin_location', 1),
(71, '2022_02_16_042457_improve_product_attribute_sets', 1),
(72, '2022_03_22_075758_correct_product_name', 1),
(73, '2022_04_19_113334_add_index_to_ec_products', 1),
(74, '2022_04_19_113923_add_index_to_table_posts', 1),
(75, '2022_04_20_100851_add_index_to_media_table', 1),
(76, '2022_04_20_101046_add_index_to_menu_table', 1),
(77, '2022_04_28_144405_remove_unused_table', 1),
(78, '2022_04_30_034048_create_gallery_meta_translations_table', 1),
(79, '2022_05_05_115015_create_ec_customer_recently_viewed_products_table', 1),
(80, '2022_05_18_143720_add_index_to_table_ec_product_categories', 1),
(81, '2022_06_16_095633_add_index_to_some_tables', 1),
(82, '2022_06_28_151901_activate_paypal_stripe_plugin', 1),
(83, '2022_06_30_035148_create_order_referrals_table', 1),
(84, '2022_07_07_153354_update_charge_id_in_table_payments', 1),
(85, '2022_07_10_034813_move_lang_folder_to_root', 1),
(86, '2022_07_24_153815_add_completed_at_to_ec_orders_table', 1),
(87, '2022_08_04_051940_add_missing_column_expires_at', 1),
(88, '2022_08_04_052122_delete_location_backup_tables', 1),
(89, '2022_08_14_032836_create_ec_order_returns_table', 1),
(90, '2022_08_14_033554_create_ec_order_return_items_table', 1),
(91, '2022_08_15_040324_add_billing_address', 1),
(92, '2022_08_30_091114_support_digital_products_table', 1),
(93, '2022_09_01_000001_create_admin_notifications_tables', 1),
(94, '2022_09_13_095744_create_options_table', 1),
(95, '2022_09_13_104347_create_option_value_table', 1),
(96, '2022_10_05_163518_alter_table_ec_order_product', 1),
(97, '2022_10_12_041517_create_invoices_table', 1),
(98, '2022_10_12_142226_update_orders_table', 1),
(99, '2022_10_13_024916_update_table_order_returns', 1),
(100, '2022_10_14_024629_drop_column_is_featured', 1),
(101, '2022_10_19_152916_add_columns_to_mp_stores_table', 1),
(102, '2022_10_20_062849_create_mp_category_sale_commissions_table', 1),
(103, '2022_10_21_030830_update_columns_in_ec_shipments_table', 1),
(104, '2022_10_28_021046_update_columns_in_ec_shipments_table', 1),
(105, '2022_11_02_071413_add_more_info_for_store', 1),
(106, '2022_11_02_080444_add_tax_info', 1),
(107, '2022_11_16_034522_update_type_column_in_ec_shipping_rules_table', 1),
(108, '2022_11_18_063357_add_missing_timestamp_in_table_settings', 1),
(109, '2022_11_19_041643_add_ec_tax_product_table', 1),
(110, '2022_12_02_093615_update_slug_index_columns', 1),
(111, '2022_12_12_063830_update_tax_defadult_in_ec_tax_products_table', 1),
(112, '2022_12_17_041532_fix_address_in_order_invoice', 1),
(113, '2022_12_26_070329_create_ec_product_views_table', 1),
(114, '2023_01_04_033051_fix_product_categories', 1),
(115, '2023_01_09_050400_add_ec_global_options_translations_table', 1),
(116, '2023_01_10_093754_add_missing_option_value_id', 1),
(117, '2023_01_17_082713_add_column_barcode_and_cost_per_item_to_product_table', 1),
(118, '2023_01_26_021854_add_ec_customer_used_coupons_table', 1),
(119, '2023_01_30_024431_add_alt_to_media_table', 1),
(120, '2023_02_01_062030_add_store_translations', 1),
(121, '2023_02_08_015900_update_options_column_in_ec_order_product_table', 1),
(122, '2023_02_13_032133_update_fee_column_mp_customer_revenues_table', 1),
(123, '2023_02_16_042611_drop_table_password_resets', 1),
(124, '2023_02_17_023648_fix_store_prefix', 1),
(125, '2023_02_27_095752_remove_duplicate_reviews', 1),
(126, '2023_03_20_115757_add_user_type_column_to_ec_shipment_histories_table', 1),
(127, '2023_04_17_062645_add_open_in_new_tab', 1),
(128, '2023_04_21_082427_create_ec_product_categorizables_table', 1),
(129, '2023_04_23_005903_add_column_permissions_to_admin_notifications', 1),
(130, '2023_04_23_061847_increase_state_translations_abbreviation_column', 1),
(131, '2023_05_03_011331_add_missing_column_price_into_invoice_items_table', 1),
(132, '2023_05_10_075124_drop_column_id_in_role_users_table', 1),
(133, '2023_05_17_025812_fix_invoice_issue', 1),
(134, '2023_05_26_073140_move_option_make_phone_field_optional_at_checkout_page_to_mandatory_fields', 1),
(135, '2023_05_27_144611_fix_exchange_rate_setting', 1),
(136, '2023_06_22_084331_add_generate_license_code_to_ec_products_table', 1),
(137, '2023_06_30_042512_create_ec_order_tax_information_table', 1),
(138, '2023_07_06_011444_create_slug_translations_table', 1),
(139, '2023_07_14_022724_remove_column_id_from_ec_product_collection_products', 1),
(140, '2023_07_26_041451_add_more_columns_to_location_table', 1),
(141, '2023_07_27_041451_add_more_columns_to_location_translation_table', 1),
(142, '2023_08_09_012940_remove_column_status_in_ec_product_attributes', 1),
(143, '2023_08_11_060908_create_announcements_table', 1),
(144, '2023_08_15_064505_create_ec_tax_rules_table', 1),
(145, '2023_08_15_073307_drop_unique_in_states_cities_translations', 1),
(146, '2023_08_21_021819_make_column_address_in_ec_customer_addresses_nullable', 1),
(147, '2023_08_21_090810_make_page_content_nullable', 1),
(148, '2023_08_22_094114_drop_unique_for_barcode', 1),
(149, '2023_08_29_074620_make_column_author_id_nullable', 1),
(150, '2023_08_29_075308_make_column_user_id_nullable', 1),
(151, '2023_08_30_031811_add_apply_via_url_column_to_ec_discounts_table', 1),
(152, '2023_09_07_094312_add_index_to_product_sku_and_translations', 1),
(153, '2023_09_14_021936_update_index_for_slugs_table', 1),
(154, '2023_09_14_022423_add_index_for_language_table', 1),
(155, '2023_09_19_024955_create_discount_product_categories_table', 1),
(156, '2023_10_17_070728_add_icon_and_icon_image_to_product_categories_table', 1),
(157, '2023_10_21_065016_make_state_id_in_table_cities_nullable', 1),
(158, '2023_11_07_023805_add_tablet_mobile_image', 1),
(159, '2023_11_10_080225_migrate_contact_blacklist_email_domains_to_core', 1),
(160, '2023_11_14_033417_change_request_column_in_table_audit_histories', 1),
(161, '2023_11_17_063408_add_description_column_to_faq_categories_table', 1),
(162, '2023_11_22_154643_add_unique_in_table_ec_products_variations', 1),
(163, '2023_11_27_032313_add_price_columns_to_ec_product_cross_sale_relations_table', 1),
(164, '2023_12_06_023945_add_display_on_checkout_column_to_ec_discounts_table', 1),
(165, '2023_12_07_095130_add_color_column_to_media_folders_table', 1),
(166, '2023_12_12_105220_drop_translations_table', 1),
(167, '2023_12_17_162208_make_sure_column_color_in_media_folders_nullable', 1),
(168, '2023_12_25_040604_ec_create_review_replies_table', 1),
(169, '2023_12_26_090340_add_private_notes_column_to_ec_customers_table', 1),
(170, '2024_01_16_070706_fix_translation_tables', 1),
(171, '2024_01_23_075227_add_proof_file_to_ec_orders_table', 1),
(172, '2024_03_14_041050_migrate_lazy_load_theme_options', 1),
(173, '2024_03_20_080001_migrate_change_attribute_email_to_nullable_form_contacts_table', 1),
(174, '2024_03_21_100334_update_section_title_shape', 1),
(175, '2024_03_25_000001_update_captcha_settings_for_contact', 1),
(176, '2024_03_25_000001_update_captcha_settings_for_newsletter', 1),
(177, '2024_03_26_041531_add_cancel_reason_to_ec_orders_table', 1),
(178, '2024_03_27_062402_create_ec_customer_deletion_requests_table', 1),
(179, '2024_03_29_042242_migrate_old_captcha_settings', 1),
(180, '2024_03_29_093946_create_ec_order_return_histories_table', 1),
(181, '2024_04_01_043317_add_google_adsense_slot_id_to_ads_table', 1),
(182, '2024_04_01_063523_add_customer_columns_to_ec_reviews_table', 1),
(183, '2024_04_03_062451_add_cover_image_to_table_mp_stores', 1),
(184, '2024_04_04_110758_update_value_column_in_user_meta_table', 1),
(185, '2024_04_15_092654_migrate_ecommerce_google_tag_manager_code_setting', 1),
(186, '2024_04_16_035713_add_min_max_order_quantity_columns_to_products_table', 1),
(187, '2024_04_19_063914_create_custom_fields_table', 1),
(188, '2024_04_27_100730_improve_analytics_setting', 1),
(189, '2024_05_07_073153_improve_table_wishlist', 1),
(190, '2024_05_07_082630_create_mp_messages_table', 1),
(191, '2024_05_07_093703_add_missing_zip_code_into_table_store_locators', 1),
(192, '2024_05_12_091229_add_column_visibility_to_table_media_files', 1),
(193, '2024_05_15_021503_fix_invoice_path', 1),
(194, '2024_06_20_160724_create_ec_shared_wishlists_table', 1),
(195, '2024_06_28_025104_add_notify_attachment_updated_column_to_ec_products_table', 1),
(196, '2024_07_03_030900_add_downloaded_at_column_to_ec_order_product_table', 1),
(197, '2024_07_04_083133_create_payment_logs_table', 1),
(198, '2024_07_07_091316_fix_column_url_in_menu_nodes_table', 1),
(199, '2024_07_12_100000_change_random_hash_for_media', 1),
(200, '2024_07_14_071826_make_customer_email_nullable', 1),
(201, '2024_07_15_104916_add_video_media_column_to_ec_products_table', 1),
(202, '2024_07_19_131849_add_documents_to_mp_stores_table', 1),
(203, '2024_07_26_052530_add_percentage_to_tax_rules_table', 1),
(204, '2024_07_30_091615_fix_order_column_in_categories_table', 1),
(205, '2024_08_14_123028_add_customer_delivered_confirmed_at_column_to_ec_shipments_table', 1),
(206, '2024_08_17_094600_add_image_into_countries', 1),
(207, '2024_08_18_083119_add_tax_id_column_to_mp_stores_table', 1),
(208, '2024_08_19_132849_create_specification_tables', 1),
(209, '2024_08_27_141244_add_block_reason_to_ec_customers_table', 1),
(210, '2024_09_07_060744_add_author_column_to_specification_tables', 1),
(211, '2024_09_14_064023_add_can_use_with_flash_sale_column_to_ec_discounts_table', 1),
(212, '2024_09_14_100108_add_stripe_connect_details_to_ec_customers_table', 1),
(213, '2024_09_17_125408_add_square_logo_to_stores_table', 1),
(214, '2024_09_25_073928_remove_wrong_product_slugs', 1),
(215, '2024_09_30_024515_create_sessions_table', 1);

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

--
-- Table structure for table `mp_category_sale_commissions`
--

CREATE TABLE `mp_category_sale_commissions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `product_category_id` bigint(20) UNSIGNED NOT NULL,
  `commission_percentage` decimal(8,2) NOT NULL DEFAULT 0.00
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `mp_customer_revenues`
--

CREATE TABLE `mp_customer_revenues` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED DEFAULT NULL,
  `order_id` bigint(20) UNSIGNED DEFAULT NULL,
  `sub_amount` decimal(15,2) DEFAULT 0.00,
  `fee` decimal(15,2) DEFAULT 0.00,
  `amount` decimal(15,2) DEFAULT 0.00,
  `current_balance` decimal(15,2) DEFAULT 0.00,
  `currency` varchar(120) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `type` varchar(60) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `mp_customer_withdrawals`
--

CREATE TABLE `mp_customer_withdrawals` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED DEFAULT NULL,
  `fee` decimal(15,2) UNSIGNED DEFAULT 0.00,
  `amount` decimal(15,2) UNSIGNED DEFAULT 0.00,
  `current_balance` decimal(15,2) UNSIGNED DEFAULT 0.00,
  `currency` varchar(120) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `bank_info` text DEFAULT NULL,
  `payment_channel` varchar(60) DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `status` varchar(60) NOT NULL DEFAULT 'pending',
  `images` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `transaction_id` varchar(60) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `mp_messages`
--

CREATE TABLE `mp_messages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `store_id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED DEFAULT NULL,
  `name` varchar(60) NOT NULL,
  `email` varchar(60) NOT NULL,
  `content` longtext NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `mp_stores`
--

CREATE TABLE `mp_stores` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `email` varchar(60) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `address` varchar(191) DEFAULT NULL,
  `country` varchar(120) DEFAULT NULL,
  `state` varchar(120) DEFAULT NULL,
  `city` varchar(120) DEFAULT NULL,
  `customer_id` bigint(20) UNSIGNED DEFAULT NULL,
  `logo` varchar(191) DEFAULT NULL,
  `logo_square` varchar(255) DEFAULT NULL,
  `cover_image` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `vendor_verified_at` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `zip_code` varchar(20) DEFAULT NULL,
  `company` varchar(191) DEFAULT NULL,
  `tax_id` varchar(191) DEFAULT NULL,
  `certificate_file` varchar(191) DEFAULT NULL,
  `government_id_file` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `mp_stores`
--

INSERT INTO `mp_stores` (`id`, `name`, `email`, `phone`, `address`, `country`, `state`, `city`, `customer_id`, `logo`, `logo_square`, `cover_image`, `description`, `content`, `status`, `vendor_verified_at`, `created_at`, `updated_at`, `zip_code`, `company`, `tax_id`, `certificate_file`, `government_id_file`) VALUES
(9, 'Ladylife Boutique', '', '9313535043', NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, NULL, NULL, 'published', NULL, '2025-02-14 21:53:51', '2025-02-14 21:53:51', NULL, NULL, NULL, NULL, NULL);

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

--
-- Table structure for table `mp_stores_translations`
--

CREATE TABLE `mp_stores_translations` (
  `lang_code` varchar(191) NOT NULL,
  `mp_stores_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `address` varchar(191) DEFAULT NULL,
  `company` varchar(191) DEFAULT NULL,
  `cover_image` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `mp_vendor_info`
--

CREATE TABLE `mp_vendor_info` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `balance` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_fee` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_revenue` decimal(15,2) NOT NULL DEFAULT 0.00,
  `signature` varchar(191) DEFAULT NULL,
  `bank_info` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `payout_payment_method` varchar(120) DEFAULT 'bank_transfer',
  `tax_info` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `mp_vendor_info`
--

INSERT INTO `mp_vendor_info` (`id`, `customer_id`, `balance`, `total_fee`, `total_revenue`, `signature`, `bank_info`, `created_at`, `updated_at`, `payout_payment_method`, `tax_info`) VALUES
(8, 11, 0.00, 0.00, 0.00, '$2y$12$Wu/f03j961RZXJNXyKNE6euE1qIbm1PeH83Hs13RXx.o8QiOnIrki', NULL, '2025-02-14 21:53:55', '2025-02-14 21:53:55', 'bank_transfer', NULL);

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

--
-- Table structure for table `newsletters`
--

CREATE TABLE `newsletters` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `email` varchar(120) NOT NULL,
  `name` varchar(120) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'subscribed',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `newsletters`
--

INSERT INTO `newsletters` (`id`, `email`, `name`, `status`, `created_at`, `updated_at`) VALUES
(1, 'ranavadiyahardik31@gmail.com', NULL, 'subscribed', '2025-02-19 04:23:30', '2025-02-19 04:23:30');

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

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

CREATE TABLE `pages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `content` longtext DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `template` varchar(60) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `pages` (`id`, `name`, `content`, `user_id`, `image`, `template`, `description`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Home', '<shortcode>[simple-slider style=\"2\" key=\"home-slider\" customize_font_family_of_description=\"0\" font_family_of_description=\"Oregano\" title_font_size=\"80\" is_autoplay=\"yes\" autoplay_speed=\"5000\" is_loop=\"yes\"][/simple-slider]</shortcode><p>&nbsp;</p><shortcode>[ecommerce-categories style=\"slider\" category_ids=\"2,7\" title=\"Popular On The Our Store.\" subtitle=\"Shop by Category\" background_color=\"#F3F5F7\" items_per_view=\"5\" show_products_count=\"yes\" enable_lazy_loading=\"no\"][/ecommerce-categories]</shortcode><shortcode>[ads style=\"2\" key_1=\"WXAUTIJV1QU0\" full_width=\"0,1\" enable_lazy_loading=\"no\"][/ads]</shortcode><shortcode>[ecommerce-product-groups title=\"Customer Favorite Style Product\" subtitle=\"All Product Shop\" limit=\"8\" tabs=\"all,featured,on-sale,trending,top-rated\" enable_lazy_loading=\"yes\"][/ecommerce-product-groups]</shortcode><shortcode>[ecommerce-products style=\"slider-full-width\" title=\"This Week\'s Featured\" subtitle=\"Shop by Category\" collection_ids=\"1\" limit=\"5\" with_sidebar=\"on\" background_color=\"#EFF1F5\" enable_lazy_loading=\"yes\"][/ecommerce-products]</shortcode><shortcode>[ecommerce-products title=\"Trending Arrivals\" subtitle=\"More to Discover\" collection_ids=\"1\" limit=\"5\" with_sidebar=\"on\" ads_ids=\"6\" style=\"slider\" ads=\"VKJNCBIBQC1O\" enable_lazy_loading=\"yes\"][/ecommerce-products]</shortcode><shortcode>[ecommerce-products style=\"slider-full-width\" title=\"This Week\'s Featured\" subtitle=\"Best Seller This Week\'s\" limit=\"12\" slides_to_show=\"4\" items_per_row=\"4\" border_color=\"#fd4b6b\" background_color=\"#EFF1F5\" enable_lazy_loading=\"yes\"][/ecommerce-products]</shortcode><p>&nbsp;</p><p>&nbsp;</p><shortcode>[site-features style=\"2\" quantity=\"4\" title_1=\"Free Delivery\" description_1=\"Orders from all item\" icon_1=\"ti ti-truck-delivery\" title_2=\"Return &amp; Refund\" description_2=\"Money-back guarantee\" icon_2=\"ti ti-currency-dollar\" title_3=\"Member Discount\" description_3=\"Every order over $140.00\" icon_3=\"ti ti-discount-2\" title_4=\"Support 24/7\" description_4=\"Contact us 24 hours a day\" icon_4=\"ti ti-headset\" enable_lazy_loading=\"yes\"][/site-features]</shortcode>', 1, 'fashion/products/fifth-iphone-removebg-preview.png', 'full-width', '', 'published', '2024-10-31 20:47:01', '2025-02-19 04:34:52'),
(2, 'Categories', '<p>&nbsp;</p><shortcode>[ecommerce-categories style=\"grid\" category_ids=\"2,7\" title=\"Popular On The Our Store.\" subtitle=\"Shop by Category\" background_color=\"#F3F5F7\" items_per_view=\"5\" show_products_count=\"yes\" enable_lazy_loading=\"yes\"][/ecommerce-categories]</shortcode>', 1, NULL, 'full-width', 'Categories Of Our Products', 'published', '2024-10-31 20:47:01', '2025-02-19 04:35:44'),
(3, 'Brands', '<shortcode>[ecommerce-brands show_brand_name=\"1\" enable_lazy_loading=\"yes\"][/ecommerce-brands]</shortcode>', 1, 'fashion/products/seccond-iphone-removebg-preview.png', 'default', '', 'published', '2024-10-31 20:47:01', '2025-02-14 10:37:37'),
(4, 'Coupons', '[ecommerce-coupons coupon_ids=\"1,2,3,4,5,6\" enable_lazy_loading=\"yes\"][/ecommerce-coupons]', 1, NULL, 'full-width', NULL, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(5, 'Blog', NULL, 1, NULL, 'full-width', NULL, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(6, 'Contact', '[contact-form show_contact_form=&quot;1&quot; title=&quot;Sent A Message&quot; quantity=&quot;2&quot; icon_1=&quot;main/contact/icon-1.png&quot; content_1=&quot;contact@shofy.com &lt;br&gt; &lt;strong&gt;+670 413 90 762&lt;/strong&gt;&quot; icon_2=&quot;main/contact/icon-2.png&quot; content_2=&quot;502 New St, Brighton VIC 3186, Australia&quot; show_social_info=&quot;1&quot; social_info_label=&quot;Find on social media&quot; social_info_icon=&quot;main/contact/icon-3.png&quot;][/contact-form][google-map]502 New Street, Brighton VIC, Australia[/google-map]', 1, NULL, 'full-width', NULL, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(7, 'FAQs', '[faqs style=\"group\" title=\"Frequently Ask Questions\" description=\"Below are frequently asked questions, you may find the answer for yourself.\" category_ids=\"1,2,3\" expand_first_time=\"1\"][/faqs]', 1, NULL, NULL, NULL, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(8, '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, NULL, NULL, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(9, 'Our Story', '<h4>A passion for handcrafted coffee, brewed with love and community.</h4>\n\n<p>\n    We are a small, family-owned coffee roaster dedicated to bringing the finest, ethically sourced beans to your cup. Our story began in a cozy kitchen, fueled by a shared passion for the rich aroma and invigorating taste of freshly brewed coffee. We dreamt of creating a space where people could connect over a warm cup, share stories, and experience the joy of handcrafted coffee.\n</p>\n\n<h4>From Humble Beginnings to Roasting Success:</h4>\n\n<p>\n    Our journey started with a small coffee roaster nestled in our garage. We spent countless hours experimenting with different roasting profiles, meticulously cupping each batch to achieve the perfect balance of flavor and aroma. Driven by a desire to make a difference, we built relationships with sustainable coffee farms around the world, ensuring fair trade practices and the highest quality beans.\n</p>\n\n<h4>Milestones and More to Come:</h4>\n\n<p>\n    Our dedication to quality and community resonated with coffee lovers, and our small business quickly grew. We opened our first cafe, a warm and inviting space where people could gather, savor our freshly roasted coffee, and connect with friends and neighbors. We\'ve continued to expand, now offering a variety of handcrafted coffee beverages, alongside delicious pastries and light bites.\n</p>\n\n<h4>Values at Our Core:</h4>\n\n<p>\n    At the heart of everything we do lies our commitment to ethical sourcing, sustainable practices, and building meaningful connections. We believe in supporting the communities that cultivate our coffee beans, ensuring fair wages and responsible farming methods. Every cup you enjoy contributes to a positive impact, one sip at a time.\n</p>\n\n<h4>Join us on our journey!</h4>\n\n<p>\n    We invite you to explore our world of coffee, from the rich diversity of our bean origins to the unique flavors crafted through meticulous roasting. Visit our cafe, discover your perfect cup, and become part of our ever-growing coffee community. Let\'s connect over a cup, share stories, and celebrate the simple joy of a well-brewed coffee.\n</p>\n', 1, NULL, NULL, NULL, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(10, 'Careers', '<h3>Careers: Be Part of Our Brewing Legacy</h3>\n\n<p>\n    At Shofy, we\'re not just brewing coffee, we\'re brewing a legacy. Since our humble beginnings in 2024, we\'ve grown from a small, family-owned roaster to a thriving coffee haven. But our passion for quality, community, and sustainability remains at the core of everything we do.\n</p>\n\n<h4>Why Join Our Team?</h4>\n\n<ul>\n    <li>\n        <p><strong>Become a Coffee Connoisseur</strong>: Immerse yourself in the world of coffee, learning from experienced roasters and baristas about bean origins, roasting techniques, and crafting the perfect cup.</p>\n    </li>\n    <li>\n        <p><strong>Fuel Your Passion</strong>: Contribute to our mission by sourcing ethically, promoting sustainable practices, and fostering positive relationships with coffee-growing communities around the globe.</p>\n    </li>\n    <li>\n        <p><strong>Grow with Us</strong>: We offer comprehensive training programs and opportunities for professional development, helping you refine your skills and advance your career in the coffee industry.</p>\n    </li>\n    <li>\n        <p><strong>Be Part of the Family</strong>: We cultivate a collaborative and supportive work environment where your unique talents and perspectives are valued.</p>\n    </li>\n</ul>\n\n<h4>Current Openings:</h4>\n\n<ul>\n    <li>\n        <p><strong>Coffee Roaster</strong>: Play a vital role in our roasting process, meticulously crafting unique flavor profiles and ensuring the highest quality beans reach our customers.</p>\n    </li>\n    <li>\n        <p><strong>Barista</strong>: Become a coffee ambassador, welcoming guests with a smile, crafting their perfect cup, and sharing your knowledge and passion for coffee.</p>\n    </li>\n    <li>\n        <p><strong>Cafe Manager</strong>: Lead your team in creating a warm and inviting atmosphere, overseeing daily operations, and ensuring exceptional customer service.</p>\n    </li>\n</ul>\n\n<h4>We are always looking for passionate individuals who share our values:</h4>\n\n<ul>\n    <li>\n        <p>A genuine love for coffee and a desire to learn everything there is to know about it.</p>\n    </li>\n    <li>\n        <p>A commitment to ethical sourcing, sustainability, and social responsibility.</p>\n    </li>\n    <li>\n        <p>Excellent communication and interpersonal skills to build rapport with colleagues and customers.</p>\n    </li>\n    <li>\n        <p>A positive attitude, a willingness to learn, and a collaborative spirit.</p>\n    </li>\n</ul>\n\n<p>Ready to join our brewing legacy?</p>\n\n<p>\n    Submit your resume and cover letter, telling us why you\'re a perfect fit for our team. We look forward to meeting passionate individuals who are ready to brew the future with us, one cup at a time.\n</p>\n', 1, NULL, NULL, NULL, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(11, 'Shipping', '<section>\n    <h2>Shipping Methods</h2>\n    <p>We offer several shipping methods to choose from:</p>\n    <ul>\n        <li>Standard Shipping - 3 to 5 business days</li>\n        <li>Express Shipping - 1 to 2 business days</li>\n        <li>International Shipping - 7 to 14 business days</li>\n    </ul>\n    <p>Please note that shipping times may vary depending on your location and other factors.</p>\n</section>\n\n<section>\n    <h2>Shipping Costs</h2>\n    <p>Shipping costs are calculated based on the weight of your order and the shipping method selected during checkout.</p>\n    <p>You can view the estimated shipping costs in your shopping cart before completing your purchase.</p>\n</section>\n\n<section>\n    <h2>Tracking Your Order</h2>\n    <p>Once your order has been shipped, you will receive a confirmation email with a tracking number.</p>\n    <p>You can use this tracking number to monitor the status of your delivery on our website or through the shipping carrier\'s website.</p>\n</section>\n\n<section>\n    <h2>Shipping Restrictions</h2>\n    <p>Some items may be subject to shipping restrictions due to size, weight, or destination.</p>\n    <p>If your order contains any restricted items, we will notify you during the checkout process.</p>\n</section>\n', 1, NULL, NULL, NULL, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(12, 'Coming Soon', '[coming-soon title=\"Get Notified When We Launch\" countdown_time=\"2025-05-20\" address=\" 58 Street Commercial Road Fratton, Australia\" hotline=\"+123456789\" business_hours=\"Mon – Sat: 8 am – 5 pm, Sunday: CLOSED\" show_social_links=\"0,1\" image=\"main/general/contact-img.jpg\"][/coming-soon]', 1, NULL, 'without-layout', NULL, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(13, 'Return Policy', '<h1>Return Policy</h1>\n<p>Thank you for shopping at [Your Company Name]. We are committed to ensuring that you are completely satisfied with\n    your purchase. If for any reason you are not entirely happy with your purchase, we\'re here to help.</p>\n\n<h2>Returns</h2>\n<p>You have [X] calendar days to return an item from the date you received it.</p>\n<p>To be eligible for a return, your item must be unused and in the same condition that you received it. Your item must\n    be in the original packaging.</p>\n<p>Your item needs to have the receipt or proof of purchase.</p>\n\n<h2>Refunds</h2>\n<p>Once we receive your item, we will inspect it and notify you that we have received your returned item. We will\n    immediately notify you on the status of your refund after inspecting the item.</p>\n<p>If your return is approved, we will initiate a refund to your credit card (or original method of payment). You will\n    receive the credit within a certain amount of days, depending on your card issuer\'s policies.</p>\n\n<h2>Shipping</h2>\n<p>You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are\n    non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.</p>\n\n<h2>Contact Us</h2>\n<p>If you have any questions on how to return your item to us, contact us at:</p>\n<ul>\n    <li>Email: [Your Email Address]</li>\n    <li>Phone: [Your Phone Number]</li>\n    <li>Address: [Your Physical Address]</li>\n</ul>\n', 1, NULL, NULL, NULL, 'published', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(14, 'New Products', '<shortcode>[ecommerce-collections collection_ids=\"2\" items_per_view=\"5\" enable_lazy_loading=\"yes\"][/ecommerce-collections]</shortcode>', 1, 'fashion/products/first-iphone-removebg-preview.png', 'full-width', 'New Products Added', 'published', '2025-02-14 10:59:43', '2025-02-14 10:59:43');

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

--
-- Table structure for table `pages_translations`
--

CREATE TABLE `pages_translations` (
  `lang_code` varchar(20) NOT NULL,
  `pages_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  `content` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

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

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

--
-- Table structure for table `payments`
--

CREATE TABLE `payments` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `currency` varchar(120) DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `charge_id` varchar(191) DEFAULT NULL,
  `payment_channel` varchar(60) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  `amount` decimal(15,2) UNSIGNED NOT NULL,
  `order_id` bigint(20) UNSIGNED DEFAULT NULL,
  `status` varchar(60) DEFAULT 'pending',
  `payment_type` varchar(191) DEFAULT 'confirm',
  `customer_id` bigint(20) UNSIGNED DEFAULT NULL,
  `refunded_amount` decimal(15,2) UNSIGNED DEFAULT NULL,
  `refund_note` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `customer_type` varchar(191) DEFAULT NULL,
  `metadata` mediumtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `payments`
--

INSERT INTO `payments` (`id`, `currency`, `user_id`, `charge_id`, `payment_channel`, `description`, `amount`, `order_id`, `status`, `payment_type`, `customer_id`, `refunded_amount`, `refund_note`, `created_at`, `updated_at`, `customer_type`, `metadata`) VALUES
(1, 'INR', 1, 'RZ37OEHXVD', 'cod', NULL, 727.50, 1, 'completed', 'confirm', 11, NULL, NULL, '2025-02-14 10:42:39', '2025-02-14 10:45:34', 'Botble\\Ecommerce\\Models\\Customer', NULL),
(3, 'INR', 1, 'IOH5BOHDMZ', 'cod', NULL, 700.00, 3, 'pending', 'confirm', 12, NULL, NULL, '2025-02-15 01:16:40', '2025-02-15 01:20:19', 'Botble\\Ecommerce\\Models\\Customer', NULL);

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

--
-- Table structure for table `payment_logs`
--

CREATE TABLE `payment_logs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `payment_method` varchar(191) NOT NULL,
  `request` longtext DEFAULT NULL,
  `response` longtext DEFAULT NULL,
  `ip_address` varchar(45) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `personal_access_tokens`
--

CREATE TABLE `personal_access_tokens` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `tokenable_type` varchar(191) NOT NULL,
  `tokenable_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `token` varchar(64) NOT NULL,
  `abilities` text DEFAULT NULL,
  `last_used_at` timestamp NULL DEFAULT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `posts`
--

CREATE TABLE `posts` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `author_id` bigint(20) UNSIGNED DEFAULT NULL,
  `author_type` varchar(191) NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `image` varchar(191) DEFAULT NULL,
  `views` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `format_type` varchar(30) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `posts`
--

INSERT INTO `posts` (`id`, `name`, `description`, `content`, `status`, `author_id`, `author_type`, `is_featured`, `image`, `views`, `format_type`, `created_at`, `updated_at`) VALUES
(1, '4 Expert Tips On How To Choose The Right Men’s Wallet', 'LITTLE larger, sir, if you drink much from a bottle marked \'poison,\' so Alice soon began talking to herself, \'Why, they\'re only a child!\' The Queen turned angrily away from him, and very neatly and.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'main/blog/post-2.jpg', 1146, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(2, 'Sexy Clutches: How to Buy &amp; Wear a Designer Clutch Bag', 'Dormouse, who was trembling down to look down and cried. \'Come, there\'s no room at all a pity. I said \"What for?\"\' \'She boxed the Queen\'s absence, and were quite silent, and looked at them with.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'main/blog/post-10.jpg', 2178, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(3, 'The Top 2020 Handbag Trends to Know', 'Gryphon. \'Do you play croquet?\' The soldiers were silent, and looked at it uneasily, shaking it every now and then, \'we went to school in the face. \'I\'ll put a stop to this,\' she said this, she came.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'main/blog/post-12.jpg', 1113, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(4, 'How to Match the Color of Your Handbag With an Outfit', 'Presently she began nibbling at the cook tulip-roots instead of onions.\' Seven flung down his brush, and had come to the fifth bend, I think?\' he said to herself, in a tone of this was her dream.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'main/blog/post-10.jpg', 327, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(5, 'How to Care for Leather Bags', 'Her chin was pressed hard against it, that attempt proved a failure. Alice heard it muttering to himself as he said in a twinkling! Half-past one, time for dinner!\' (\'I only wish people knew that.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'main/blog/post-3.jpg', 634, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(6, 'We\'re Crushing Hard on Summer\'s 10 Biggest Bag Trends', 'Alice thought the poor little juror (it was Bill, the Lizard) could not possibly reach it: she could even make out which were the cook, to see it pop down a very interesting dance to watch,\' said.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'main/blog/post-2.jpg', 1175, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(7, 'Essential Qualities of Highly Successful Music', 'I\'m I, and--oh dear, how puzzling it all seemed quite dull and stupid for life to go down--Here, Bill! the master says you\'re to go down--Here, Bill! the master says you\'re to go after that savage.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'main/blog/post-3.jpg', 240, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(8, '9 Things I Love About Shaving My Head', 'Hatter: \'I\'m on the English coast you find a pleasure in all directions, \'just like a stalk out of its mouth again, and we put a stop to this,\' she said this, she was now more than three.\' \'Your.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'main/blog/post-10.jpg', 2214, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(9, 'Why Teamwork Really Makes The Dream Work', 'Gryphon whispered in reply, \'for fear they should forget them before the trial\'s over!\' thought Alice. The King looked anxiously at the top of it. Presently the Rabbit just under the sea--\' (\'I.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'main/blog/post-9.jpg', 1014, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(10, 'The World Caters to Average People', 'March--just before HE went mad, you know--\' (pointing with his head!\"\' \'How dreadfully savage!\' exclaimed Alice. \'That\'s the judge,\' she said this, she was getting quite crowded with the Lory, with.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'main/blog/post-2.jpg', 1236, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(11, 'The litigants on the screen are not actors', 'She ate a little pattering of feet in the distance, sitting sad and lonely on a bough of a well--\' \'What did they live at the Hatter, \'when the Queen never left off sneezing by this time?\' she said.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'main/blog/post-7.jpg', 1131, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(12, 'Hiring the Right Sales Team at the Right Time', 'Alice. It looked good-natured, she thought: still it was over at last: \'and I do so like that curious song about the temper of your nose-- What made you so awfully clever?\' \'I have answered three.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'main/blog/post-8.jpg', 2418, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(13, 'Fully Embrace the Return of 90s fashion', 'I can\'t take LESS,\' said the Lory. Alice replied very gravely. \'What else had you to learn?\' \'Well, there was room for this, and she drew herself up closer to Alice\'s side as she went slowly after.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'main/blog/post-8.jpg', 1644, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(14, 'Exploring the English Countryside', 'March Hare had just begun to dream that she had nothing else to do, and perhaps as this before, never! And I declare it\'s too bad, that it might be hungry, in which case it would like the look of.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'main/blog/post-5.jpg', 316, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52');
INSERT INTO `posts` (`id`, `name`, `description`, `content`, `status`, `author_id`, `author_type`, `is_featured`, `image`, `views`, `format_type`, `created_at`, `updated_at`) VALUES
(15, 'Here’s the First Valentino’s New Makeup Collection', 'Alice replied, so eagerly that the way wherever she wanted much to know, but the tops of the e--e--evening, Beautiful, beautiful Soup!\' CHAPTER XI. Who Stole the Tarts? The King turned pale, and.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'main/blog/post-9.jpg', 2250, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(16, 'Follow Your own Design process, whatever gets', 'Duchess, the Duchess! Oh! won\'t she be savage if I\'ve been changed several times since then.\' \'What do you like the Queen?\' said the Dormouse; \'--well in.\' This answer so confused poor Alice, \'to.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'main/blog/post-5.jpg', 181, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(17, 'Freelancer Days 2024, What’s new?', 'First, however, she went on, turning to Alice. \'Only a thimble,\' said Alice timidly. \'Would you tell me,\' said Alice, a little ledge of rock, and, as they used to say.\' \'So he did, so he with his.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'main/blog/post-7.jpg', 131, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(18, 'Quality Foods Requirments For Every Human Body’s', 'Queen jumped up on to himself as he shook his head sadly. \'Do I look like one, but it is.\' \'I quite forgot how to get us dry would be quite as safe to stay in here any longer!\' She waited for some.', '<p class=\"tp-dropcap\">sales process is critically important to the success of your reps and your business. If you\'ve never seen a really skilled salesperson work, it seems almost effortless. They ask great questions, craftt perfect proposal, answer questions, address concerns and seamlessly seal the Underneath the surface of all of that, the salesperson has probably dedicated hours honing their craft and ensuring the process moves smoothly.</p>\n\n<p>One of the challenges that often surfaces when  working with a remote sales team is a lack of transparency over what is happening, and where in the process things are taking place. We’re going to peel back the curtain and show you how to create the best sales.</p>\n\n<h4 class=\"tp-postbox-details-heading\">Breaking Up With Fast Fashion Has Been Easier</h4>\n<p>Lommodo ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient montes lorem, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium, sem. Nulla onsequat massa quis enim. donec pede justo fringilla vel aliquet.</p>\n\n<div class=\"tp-postbox-details-desc-thumb text-center\">\n   <img src=\"/storage/main/blog/blog-details-sm-1.jpg\" alt=\"\">\n   <span class=\"tp-postbox-details-desc-thumb-caption\">Gucci’s Women’s Cruise Collection 2023 Lookbook Has Arrived</span>\n</div>\n<p>“We’re so glad we’ll be working with you to get your new marketing strategy up and running. I\'ve attached the details of your package. Next you’ll get an email from Jen to schedule your kick-off meeting and be assigned your account rep. During your kick-off meeting, we will introduce your project team, let you know what access we need to start.” </p>\n\n<div class=\"tp-postbox-details-quote\">\n   <blockquote>\n      <div class=\"tp-postbox-details-quote-shape\">\n         <img class=\"tp-postbox-details-quote-shape-1\" src=\"/storage/main/shapes/line.png\" alt=\"\">\n         <img class=\"tp-postbox-details-quote-shape-2\" src=\"/storage/main/shapes/quote.png\" alt=\"\">\n      </div>\n      <p>There is a way out of every box, a solution to every puzzle its just a matter of finding it.</p>\n      <span style=\"color: #fff\">Shahnewaz Sakil</span>\n   </blockquote>\n</div>\n\n<h4 class=\"tp-postbox-details-heading\">Exploring the English Countryside</h4>\n<p>Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus et magnis dis parturient montes lorem,nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque euro, pretium quis, sem. Nulla onsequat massa quis enim.</p>\n\n<div class=\"tp-postbox-details-list\">\n   <ul>\n      <li>Lorem ipsum dolor sit amet.</li>\n      <li>At vero eos et accusamus et iusto odio.</li>\n      <li>Excepteur sint occaecat cupidatat non proident.</li>\n   </ul>\n</div>\n<p>Rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer cidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae lorem.</p>\n', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'main/blog/post-11.jpg', 1760, NULL, '2024-10-31 20:46:52', '2024-10-31 20:46:52');

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

--
-- Table structure for table `posts_translations`
--

CREATE TABLE `posts_translations` (
  `lang_code` varchar(20) NOT NULL,
  `posts_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  `content` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `post_categories`
--

CREATE TABLE `post_categories` (
  `category_id` bigint(20) UNSIGNED NOT NULL,
  `post_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `post_categories`
--

INSERT INTO `post_categories` (`category_id`, `post_id`) VALUES
(3, 1),
(4, 1),
(5, 2),
(4, 2),
(2, 3),
(1, 3),
(3, 4),
(1, 4),
(2, 5),
(5, 5),
(1, 6),
(4, 6),
(1, 7),
(2, 8),
(5, 8),
(3, 9),
(6, 9),
(4, 10),
(2, 10),
(4, 11),
(6, 11),
(6, 12),
(2, 12),
(2, 13),
(3, 13),
(4, 14),
(3, 14),
(2, 15),
(5, 15),
(6, 16),
(1, 16),
(5, 17),
(3, 17),
(6, 18),
(2, 18);

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

--
-- Table structure for table `post_tags`
--

CREATE TABLE `post_tags` (
  `tag_id` bigint(20) UNSIGNED NOT NULL,
  `post_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `post_tags`
--

INSERT INTO `post_tags` (`tag_id`, `post_id`) VALUES
(4, 1),
(3, 1),
(1, 1),
(2, 2),
(8, 2),
(3, 3),
(6, 3),
(8, 3),
(2, 4),
(4, 4),
(1, 4),
(5, 5),
(1, 5),
(2, 5),
(6, 6),
(5, 6),
(3, 6),
(3, 7),
(8, 7),
(8, 8),
(5, 8),
(1, 9),
(4, 9),
(4, 10),
(6, 10),
(3, 10),
(2, 11),
(7, 11),
(4, 12),
(1, 12),
(5, 12),
(4, 13),
(2, 13),
(3, 14),
(2, 14),
(4, 15),
(3, 15),
(7, 15),
(6, 16),
(8, 16),
(3, 17),
(1, 17),
(8, 17),
(3, 18),
(8, 18),
(5, 18);

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

--
-- Table structure for table `request_logs`
--

CREATE TABLE `request_logs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `status_code` int(11) DEFAULT NULL,
  `url` varchar(191) DEFAULT NULL,
  `count` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `user_id` varchar(191) DEFAULT NULL,
  `referrer` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `request_logs`
--

INSERT INTO `request_logs` (`id`, `status_code`, `url`, `count`, `user_id`, `referrer`, `created_at`, `updated_at`) VALUES
(1, 404, 'http://localhost:81/avs_ecom3', 4, '[1]', NULL, '2025-02-14 08:39:06', '2025-02-14 10:10:48'),
(2, 404, 'http://localhost:8000/404', 1, '[1]', NULL, '2025-02-14 22:37:17', '2025-02-14 22:37:17'),
(3, 404, 'http://localhost:8000/sourceMap/chrome/css/download_scan_popup.css.map', 1, NULL, NULL, '2025-02-16 04:34:03', '2025-02-16 04:34:03'),
(4, 404, 'http://localhost:8000/sourceMap/chrome/css/interactive_balloon.css.map', 1, NULL, NULL, '2025-02-16 04:34:04', '2025-02-16 04:34:04');

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

--
-- Table structure for table `revisions`
--

CREATE TABLE `revisions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `revisionable_type` varchar(191) NOT NULL,
  `revisionable_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `key` varchar(120) NOT NULL,
  `old_value` text DEFAULT NULL,
  `new_value` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `revisions`
--

INSERT INTO `revisions` (`id`, `revisionable_type`, `revisionable_id`, `user_id`, `key`, `old_value`, `new_value`, `created_at`, `updated_at`) VALUES
(1, 'Botble\\Page\\Models\\Page', 1, 1, 'description', NULL, '', '2025-02-14 10:18:54', '2025-02-14 10:18:54'),
(2, 'Botble\\Page\\Models\\Page', 3, 1, 'image', NULL, 'fashion/products/seccond-iphone-removebg-preview.png', '2025-02-14 10:37:37', '2025-02-14 10:37:37'),
(3, 'Botble\\Page\\Models\\Page', 3, 1, 'template', NULL, 'default', '2025-02-14 10:37:37', '2025-02-14 10:37:37'),
(4, 'Botble\\Page\\Models\\Page', 3, 1, 'description', NULL, '', '2025-02-14 10:37:37', '2025-02-14 10:37:37'),
(5, 'Botble\\Page\\Models\\Page', 1, 1, 'image', NULL, 'fashion/products/fifth-iphone-removebg-preview.png', '2025-02-14 10:58:06', '2025-02-14 10:58:06'),
(6, 'Botble\\Page\\Models\\Page', 2, 1, 'description', NULL, '', '2025-02-14 22:55:39', '2025-02-14 22:55:39'),
(7, 'Botble\\Page\\Models\\Page', 2, 1, 'description', '', 'Categories Of Our Products', '2025-02-19 04:30:51', '2025-02-19 04:30:51');

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

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

CREATE TABLE `roles` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `slug` varchar(120) NOT NULL,
  `name` varchar(120) NOT NULL,
  `permissions` text DEFAULT NULL,
  `description` varchar(400) 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 NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `roles` (`id`, `slug`, `name`, `permissions`, `description`, `is_default`, `created_by`, `updated_by`, `created_at`, `updated_at`) 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,\"announcements.index\":true,\"announcements.create\":true,\"announcements.edit\":true,\"announcements.destroy\":true,\"announcements.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,\"contacts.index\":true,\"contacts.edit\":true,\"contacts.destroy\":true,\"contact.settings\":true,\"plugins.ecommerce\":true,\"ecommerce.report.index\":true,\"products.index\":true,\"products.create\":true,\"products.edit\":true,\"products.destroy\":true,\"products.duplicate\":true,\"ecommerce.product-prices.index\":true,\"ecommerce.product-prices.edit\":true,\"ecommerce.product-inventory.index\":true,\"ecommerce.product-inventory.edit\":true,\"product-categories.index\":true,\"product-categories.create\":true,\"product-categories.edit\":true,\"product-categories.destroy\":true,\"product-tag.index\":true,\"product-tag.create\":true,\"product-tag.edit\":true,\"product-tag.destroy\":true,\"brands.index\":true,\"brands.create\":true,\"brands.edit\":true,\"brands.destroy\":true,\"product-collections.index\":true,\"product-collections.create\":true,\"product-collections.edit\":true,\"product-collections.destroy\":true,\"product-attribute-sets.index\":true,\"product-attribute-sets.create\":true,\"product-attribute-sets.edit\":true,\"product-attribute-sets.destroy\":true,\"product-attributes.index\":true,\"product-attributes.create\":true,\"product-attributes.edit\":true,\"product-attributes.destroy\":true,\"tax.index\":true,\"tax.create\":true,\"tax.edit\":true,\"tax.destroy\":true,\"reviews.index\":true,\"reviews.create\":true,\"reviews.destroy\":true,\"reviews.publish\":true,\"reviews.reply\":true,\"ecommerce.shipments.index\":true,\"ecommerce.shipments.create\":true,\"ecommerce.shipments.edit\":true,\"ecommerce.shipments.destroy\":true,\"orders.index\":true,\"orders.create\":true,\"orders.edit\":true,\"orders.destroy\":true,\"discounts.index\":true,\"discounts.create\":true,\"discounts.edit\":true,\"discounts.destroy\":true,\"customers.index\":true,\"customers.create\":true,\"customers.edit\":true,\"customers.destroy\":true,\"flash-sale.index\":true,\"flash-sale.create\":true,\"flash-sale.edit\":true,\"flash-sale.destroy\":true,\"product-label.index\":true,\"product-label.create\":true,\"product-label.edit\":true,\"product-label.destroy\":true,\"ecommerce.import.products.index\":true,\"ecommerce.export.products.index\":true,\"order_returns.index\":true,\"order_returns.edit\":true,\"order_returns.destroy\":true,\"global-option.index\":true,\"global-option.create\":true,\"global-option.edit\":true,\"global-option.destroy\":true,\"ecommerce.invoice.index\":true,\"ecommerce.invoice.edit\":true,\"ecommerce.invoice.destroy\":true,\"ecommerce.settings\":true,\"ecommerce.settings.general\":true,\"ecommerce.invoice-template.index\":true,\"ecommerce.settings.currencies\":true,\"ecommerce.settings.products\":true,\"ecommerce.settings.product-search\":true,\"ecommerce.settings.digital-products\":true,\"ecommerce.settings.store-locators\":true,\"ecommerce.settings.invoices\":true,\"ecommerce.settings.product-reviews\":true,\"ecommerce.settings.customers\":true,\"ecommerce.settings.shopping\":true,\"ecommerce.settings.taxes\":true,\"ecommerce.settings.shipping\":true,\"ecommerce.settings.tracking\":true,\"ecommerce.settings.standard-and-format\":true,\"ecommerce.settings.checkout\":true,\"ecommerce.settings.return\":true,\"ecommerce.settings.flash-sale\":true,\"ecommerce.settings.product-specification\":true,\"product-categories.export\":true,\"product-categories.import\":true,\"orders.export\":true,\"ecommerce.product-specification.index\":true,\"ecommerce.specification-groups.index\":true,\"ecommerce.specification-groups.create\":true,\"ecommerce.specification-groups.edit\":true,\"ecommerce.specification-groups.destroy\":true,\"ecommerce.specification-attributes.index\":true,\"ecommerce.specification-attributes.create\":true,\"ecommerce.specification-attributes.edit\":true,\"ecommerce.specification-attributes.destroy\":true,\"ecommerce.specification-tables.index\":true,\"ecommerce.specification-tables.create\":true,\"ecommerce.specification-tables.edit\":true,\"ecommerce.specification-tables.destroy\":true,\"plugin.faq\":true,\"faq.index\":true,\"faq.create\":true,\"faq.edit\":true,\"faq.destroy\":true,\"faq_category.index\":true,\"faq_category.create\":true,\"faq_category.edit\":true,\"faq_category.destroy\":true,\"faqs.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,\"plugin.location\":true,\"country.index\":true,\"country.create\":true,\"country.edit\":true,\"country.destroy\":true,\"state.index\":true,\"state.create\":true,\"state.edit\":true,\"state.destroy\":true,\"city.index\":true,\"city.create\":true,\"city.edit\":true,\"city.destroy\":true,\"marketplace.index\":true,\"marketplace.store.index\":true,\"marketplace.store.create\":true,\"marketplace.store.edit\":true,\"marketplace.store.destroy\":true,\"marketplace.store.view\":true,\"marketplace.store.revenue.create\":true,\"marketplace.withdrawal.index\":true,\"marketplace.withdrawal.edit\":true,\"marketplace.withdrawal.destroy\":true,\"marketplace.withdrawal.invoice\":true,\"marketplace.vendors.index\":true,\"marketplace.unverified-vendors.index\":true,\"marketplace.vendors.control\":true,\"marketplace.unverified-vendors.edit\":true,\"marketplace.reports\":true,\"marketplace.settings\":true,\"newsletter.index\":true,\"newsletter.destroy\":true,\"newsletter.settings\":true,\"payment.index\":true,\"payments.settings\":true,\"payment.destroy\":true,\"payments.logs\":true,\"payments.logs.show\":true,\"payments.logs.destroy\":true,\"request-log.index\":true,\"request-log.destroy\":true,\"sale-popup.settings\":true,\"simple-slider.index\":true,\"simple-slider.create\":true,\"simple-slider.edit\":true,\"simple-slider.destroy\":true,\"simple-slider-item.index\":true,\"simple-slider-item.create\":true,\"simple-slider-item.edit\":true,\"simple-slider-item.destroy\":true,\"simple-slider.settings\":true,\"social-login.settings\":true,\"testimonial.index\":true,\"testimonial.create\":true,\"testimonial.edit\":true,\"testimonial.destroy\":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-10-31 20:46:47', '2024-10-31 20:46:47');

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

--
-- Table structure for table `role_users`
--

CREATE TABLE `role_users` (
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `role_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

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

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

INSERT INTO `sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES
('RY7jTTlP1Xmh1oY8a6L4qJzVdjsptWllInSqQYTo', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'YTo0OntzOjY6Il90b2tlbiI7czo0MDoiQXQ1N29CQmNKYzVHS1A5ZEZpcVBwT0VsejZ0b20xRzJLZnVIS0FxNSI7czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319czozOiJ1cmwiO2E6MTp7czo4OiJpbnRlbmRlZCI7czoxNTg6Imh0dHA6Ly9sb2NhbGhvc3Q6ODEvc2hvZnktMTI1L2NvZGVjYW55b24tNTExMTk2Mzgtc2hvZnktZWNvbW1lcmNlLW11bHRpdmVuZG9yLW1hcmtldHBsYWNlLWxhcmF2ZWwtcGxhdGZvcm0vcHVibGljL2FkbWluL3RoZW1lL29wdGlvbnMvb3B0LXRleHQtc3Vic2VjdGlvbi1sb2dvIjt9czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTU4OiJodHRwOi8vbG9jYWxob3N0OjgxL3Nob2Z5LTEyNS9jb2RlY2FueW9uLTUxMTE5NjM4LXNob2Z5LWVjb21tZXJjZS1tdWx0aXZlbmRvci1tYXJrZXRwbGFjZS1sYXJhdmVsLXBsYXRmb3JtL3B1YmxpYy9hZG1pbi90aGVtZS9vcHRpb25zL29wdC10ZXh0LXN1YnNlY3Rpb24tbG9nbyI7fX0=', 1739542757);

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

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

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

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

INSERT INTO `settings` (`id`, `key`, `value`, `created_at`, `updated_at`) VALUES
(1, 'media_random_hash', 'dd5ab61fea9f8c9e4733b571080f3442', NULL, '2025-02-19 04:22:15'),
(2, 'api_enabled', '0', NULL, '2025-02-19 04:22:15'),
(3, 'activated_plugins', '[\"language\",\"language-advanced\",\"ads\",\"analytics\",\"announcement\",\"audit-log\",\"backup\",\"blog\",\"captcha\",\"contact\",\"cookie-consent\",\"ecommerce\",\"faq\",\"gallery\",\"location\",\"marketplace\",\"mollie\",\"newsletter\",\"payment\",\"paypal\",\"paypal-payout\",\"paystack\",\"razorpay\",\"request-log\",\"sale-popup\",\"shippo\",\"simple-slider\",\"social-login\",\"sslcommerz\",\"stripe\",\"stripe-connect\",\"testimonial\",\"translation\"]', NULL, '2025-02-19 04:22:15'),
(6, 'theme', 'shofy-fashion', NULL, '2025-02-19 04:22:15'),
(7, 'show_admin_bar', '1', NULL, '2025-02-19 04:22:15'),
(8, 'admin_favicon', 'main/general/favicon.png', NULL, '2025-02-19 04:22:15'),
(9, 'admin_logo', 'avs-logo.png', NULL, '2025-02-19 04:22:15'),
(10, 'announcement_lazy_loading', '1', NULL, '2025-02-19 04:22:15'),
(11, 'marketplace_requires_vendor_documentations_verification', '0', NULL, '2025-02-19 04:22:15'),
(12, 'payment_cod_status', '1', NULL, '2025-02-19 04:22:15'),
(13, 'payment_bank_transfer_status', '1', NULL, '2025-02-19 04:22:15'),
(14, 'payment_cod_description', 'Please pay money directly to the postman, if you choose cash on delivery method (COD).', NULL, '2025-02-19 04:22:15'),
(15, 'payment_bank_transfer_description', 'Please send money to our bank account: ACB - 69270 213 19.', NULL, '2025-02-19 04:22:15'),
(16, 'payment_stripe_payment_type', 'stripe_checkout', NULL, '2025-02-19 04:22:15'),
(17, 'plugins_ecommerce_customer_new_order_status', '1', NULL, '2025-02-19 04:22:15'),
(18, 'plugins_ecommerce_admin_new_order_status', '1', NULL, '2025-02-19 04:22:15'),
(19, 'ecommerce_is_enabled_support_digital_products', '1', NULL, '2025-02-19 04:22:15'),
(20, 'ecommerce_load_countries_states_cities_from_location_plugin', '0', NULL, '2025-02-19 04:22:15'),
(21, 'ecommerce_product_sku_format', 'SF-2443-%s%s%s%s', NULL, '2025-02-19 04:22:15'),
(22, 'ecommerce_enable_product_specification', '1', NULL, '2025-02-19 04:22:15'),
(23, 'permalink-botble-blog-models-post', 'blog', NULL, '2025-02-19 04:22:15'),
(24, 'permalink-botble-blog-models-category', 'blog', NULL, '2025-02-19 04:22:15'),
(25, 'language_hide_default', '1', NULL, '2025-02-19 04:22:15'),
(26, 'language_switcher_display', 'dropdown', NULL, '2025-02-19 04:22:15'),
(27, 'language_display', 'all', NULL, '2025-02-19 04:22:15'),
(28, 'language_hide_languages', '[]', NULL, '2025-02-19 04:22:15'),
(29, 'ecommerce_store_name', 'Lady Life', NULL, '2025-02-19 04:22:15'),
(30, 'ecommerce_store_phone', '9313535043', NULL, '2025-02-19 04:22:15'),
(31, 'ecommerce_store_address', 'Amreli', NULL, '2025-02-19 04:22:15'),
(32, 'ecommerce_store_state', 'Gujarat', NULL, '2025-02-19 04:22:15'),
(33, 'ecommerce_store_city', 'Amreli', NULL, '2025-02-19 04:22:15'),
(34, 'ecommerce_store_country', 'IN', NULL, '2025-02-19 04:22:15'),
(35, 'announcement_max_width', '1390', NULL, '2025-02-19 04:22:15'),
(36, 'announcement_text_color', '#010f1c', NULL, '2025-02-19 04:22:15'),
(37, 'announcement_background_color', 'transparent', NULL, '2025-02-19 04:22:15'),
(38, 'announcement_placement', 'theme', NULL, '2025-02-19 04:22:15'),
(39, 'announcement_text_alignment', 'start', NULL, '2025-02-19 04:22:15'),
(40, 'announcement_dismissible', '0', NULL, '2025-02-19 04:22:15'),
(41, 'simple_slider_using_assets', '0', NULL, '2025-02-19 04:22:15'),
(42, 'theme-shofy-fashion-site_name', 'Shofy', NULL, '2025-02-19 04:22:15'),
(43, 'theme-shofy-fashion-site_title', 'AVS- Ecommerce', NULL, '2025-02-19 04:22:15'),
(44, 'theme-shofy-fashion-seo_description', 'AVS is a powerful tool eCommerce Laravel script for creating a professional and visually appealing online store.', NULL, '2025-02-19 04:22:15'),
(45, 'theme-shofy-fashion-copyright', '© %Y All Rights Reserved By Ashtavinayak Soft Solutions', NULL, '2025-02-19 04:22:15'),
(46, 'theme-shofy-fashion-tp_primary_font', 'Jost', NULL, '2025-02-19 04:22:15'),
(47, 'theme-shofy-fashion-primary_color', 'rgb(159, 197, 232)', NULL, '2025-02-19 04:22:15'),
(48, 'theme-shofy-fashion-favicon', 'avs-logo.png', NULL, '2025-02-19 04:22:15'),
(49, 'theme-shofy-fashion-logo', 'avs-logo.png', NULL, '2025-02-19 04:22:15'),
(50, 'theme-shofy-fashion-logo_light', 'avs-logo.png', NULL, '2025-02-19 04:22:15'),
(51, 'theme-shofy-fashion-header_style', '5', NULL, '2025-02-19 04:22:15'),
(52, 'theme-shofy-fashion-preloader_icon', 'main/general/preloader-icon.png', NULL, '2025-02-19 04:22:15'),
(53, 'theme-shofy-fashion-address', '502 New Street, Brighton VIC, Australia', NULL, '2025-02-19 04:22:15'),
(54, 'theme-shofy-fashion-hotline', '8 800 332 65-66', NULL, '2025-02-19 04:22:15'),
(55, 'theme-shofy-fashion-email', 'contact@fartmart.co', NULL, '2025-02-19 04:22:15'),
(56, 'theme-shofy-fashion-working_time', 'Mon - Fri: 07AM - 06PM', NULL, '2025-02-19 04:22:15'),
(57, 'theme-shofy-fashion-homepage_id', '1', NULL, '2025-02-19 04:22:15'),
(58, 'theme-shofy-fashion-blog_page_id', '5', NULL, '2025-02-19 04:22:15'),
(59, 'theme-shofy-fashion-cookie_consent_message', 'Your experience on this site will be improved by allowing cookies ', NULL, '2025-02-19 04:22:15'),
(60, 'theme-shofy-fashion-cookie_consent_learn_more_url', 'cookie-policy', NULL, '2025-02-19 04:22:15'),
(61, 'theme-shofy-fashion-cookie_consent_learn_more_text', 'Cookie Policy', NULL, '2025-02-19 04:22:15'),
(62, 'theme-shofy-fashion-number_of_products_per_page', '24', NULL, '2025-02-19 04:22:15'),
(63, 'theme-shofy-fashion-number_of_cross_sale_product', '6', NULL, '2025-02-19 04:22:15'),
(64, 'theme-shofy-fashion-ecommerce_products_page_layout', 'left-sidebar', NULL, '2025-02-19 04:22:15'),
(65, 'theme-shofy-fashion-ecommerce_product_item_style', '2', NULL, '2025-02-19 04:22:15'),
(66, 'theme-shofy-fashion-404_page_image', 'main/general/404.png', NULL, '2025-02-19 04:22:15'),
(67, 'theme-shofy-fashion-newsletter_popup_enable', '1', NULL, '2025-02-19 04:22:15'),
(68, 'theme-shofy-fashion-newsletter_popup_image', 'logo-avs-1.jpeg', NULL, '2025-02-19 04:22:15'),
(69, 'theme-shofy-fashion-newsletter_popup_title', 'Contact With Us', NULL, '2025-02-19 04:22:15'),
(70, 'theme-shofy-fashion-newsletter_popup_subtitle', 'New Letter', NULL, '2025-02-19 04:22:15'),
(71, 'theme-shofy-fashion-newsletter_popup_description', 'Connect With Us', NULL, '2025-02-19 04:22:15'),
(72, 'theme-shofy-fashion-lazy_load_images', '1', NULL, '2025-02-19 04:22:15'),
(73, 'theme-shofy-fashion-lazy_load_placeholder_image', '', NULL, '2025-02-19 04:22:15'),
(74, 'theme-shofy-fashion-breadcrumb_background_image', '295cca3a-6cc2-4785-96e7-de290410ead1-1.jpeg?v=1739593430', NULL, '2025-02-19 04:22:15'),
(75, 'theme-shofy-fashion-section_title_shape_decorated', 'style-3', NULL, '2025-02-19 04:22:15'),
(76, 'theme-shofy-fashion-social_links', '[[{\"key\":\"name\",\"value\":\"Facebook\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-facebook\"},{\"key\":\"url\",\"value\":\"https:\\/\\/www.facebook.com\"}],[{\"key\":\"name\",\"value\":\"X (Twitter)\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-x\"},{\"key\":\"url\",\"value\":\"https:\\/\\/x.com\"}],[{\"key\":\"name\",\"value\":\"YouTube\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-youtube\"},{\"key\":\"url\",\"value\":\"https:\\/\\/www.youtube.com\"}],[{\"key\":\"name\",\"value\":\"Instagram\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-linkedin\"},{\"key\":\"url\",\"value\":\"https:\\/\\/www.linkedin.com\"}]]', NULL, '2025-02-19 04:22:15'),
(77, 'theme-shofy-fashion-social_sharing', '[[{\"key\":\"social\",\"value\":\"facebook\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-facebook\"}],[{\"key\":\"social\",\"value\":\"x\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-x\"}],[{\"key\":\"social\",\"value\":\"pinterest\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-pinterest\"}],[{\"key\":\"social\",\"value\":\"linkedin\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-linkedin\"}],[{\"key\":\"social\",\"value\":\"whatsapp\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-whatsapp\"}],[{\"key\":\"social\",\"value\":\"email\"},{\"key\":\"icon\",\"value\":\"ti ti-mail\"}]]', NULL, '2025-02-19 04:22:15'),
(78, 'theme-shofy-fashion-login_background', NULL, NULL, '2025-02-19 04:22:15'),
(79, 'theme-shofy-fashion-register_background', NULL, NULL, '2025-02-19 04:22:15'),
(80, 'theme-shofy-fashion-merchant_return_policy_url', 'return-policy', NULL, '2025-02-19 04:22:15'),
(81, 'theme-shofy-fashion-term_and_privacy_policy_url', 'privacy-policy', NULL, '2025-02-19 04:22:15'),
(82, 'theme-shofy-fashion-header_main_background_color', 'rgb(159, 197, 232)', NULL, '2025-02-19 04:22:15'),
(83, 'theme-shofy-fashion-header_main_text_color', '#010f1c', NULL, '2025-02-19 04:22:15'),
(84, 'licensed_to', 'xxxxx', NULL, '2025-02-19 04:22:15'),
(85, 'ecommerce_enable_auto_detect_visitor_currency', '0', NULL, '2025-02-19 04:22:15'),
(86, 'ecommerce_add_space_between_price_and_currency', '0', NULL, '2025-02-19 04:22:15'),
(87, 'ecommerce_thousands_separator', ',', NULL, '2025-02-19 04:22:15'),
(88, 'ecommerce_decimal_separator', '.', NULL, '2025-02-19 04:22:15'),
(89, 'ecommerce_exchange_rate_api_provider', 'none', NULL, '2025-02-19 04:22:15'),
(90, 'ecommerce_api_layer_api_key', '', NULL, '2025-02-19 04:22:15'),
(91, 'ecommerce_open_exchange_app_id', '', NULL, '2025-02-19 04:22:15'),
(92, 'ecommerce_use_exchange_rate_from_api', '0', NULL, '2025-02-19 04:22:15'),
(93, 'ecommerce_currencies_is_default', '6', NULL, '2025-02-19 04:22:15'),
(94, 'admin_logo_max_height', '32', NULL, '2025-02-19 04:22:15'),
(95, 'login_screen_backgrounds', '{\"1\":\"avs-logo.png\"}', NULL, '2025-02-19 04:22:15'),
(96, 'admin_title', 'AVS ECOM', NULL, '2025-02-19 04:22:15'),
(97, 'admin_appearance_locale', 'en', NULL, '2025-02-19 04:22:15'),
(98, 'rich_editor', 'ckeditor', NULL, '2025-02-19 04:22:15'),
(99, 'admin_appearance_layout', 'vertical', NULL, '2025-02-19 04:22:15'),
(100, 'admin_appearance_show_menu_item_icon', '1', NULL, '2025-02-19 04:22:15'),
(101, 'admin_appearance_container_width', 'container-xl', NULL, '2025-02-19 04:22:15'),
(102, 'admin_primary_font', 'Inter', NULL, '2025-02-19 04:22:15'),
(103, 'admin_primary_color', '#206bc4', NULL, '2025-02-19 04:22:15'),
(104, 'admin_secondary_color', '#6c7a91', NULL, '2025-02-19 04:22:15'),
(105, 'admin_heading_color', 'inherit', NULL, '2025-02-19 04:22:15'),
(106, 'admin_text_color', '#182433', NULL, '2025-02-19 04:22:15'),
(107, 'admin_link_color', '#206bc4', NULL, '2025-02-19 04:22:15'),
(108, 'admin_link_hover_color', '#1a569d', NULL, '2025-02-19 04:22:15'),
(109, 'admin_appearance_custom_css', '', NULL, '2025-02-19 04:22:15'),
(110, 'admin_appearance_custom_header_js', '', NULL, '2025-02-19 04:22:15'),
(111, 'admin_appearance_custom_body_js', '', NULL, '2025-02-19 04:22:15'),
(112, 'admin_appearance_custom_footer_js', '', NULL, '2025-02-19 04:22:15'),
(113, 'show_theme_guideline_link', '0', NULL, '2025-02-19 04:22:15'),
(114, 'admin_appearance_locale_direction', 'ltr', NULL, '2025-02-19 04:22:15'),
(115, 'theme-shofy-fashion-show_site_name', '0', NULL, '2025-02-19 04:22:15'),
(116, 'theme-shofy-fashion-seo_title', '', NULL, '2025-02-19 04:22:15'),
(117, 'theme-shofy-fashion-seo_index', '1', NULL, '2025-02-19 04:22:15'),
(118, 'theme-shofy-fashion-seo_og_image', '', NULL, '2025-02-19 04:22:15'),
(119, 'theme-shofy-fashion-preloader_enabled', 'no', NULL, '2025-02-19 04:22:15'),
(120, 'theme-shofy-fashion-preloader_version', 'v1', NULL, '2025-02-19 04:22:15'),
(121, 'theme-shofy-fashion-date_format', 'M d, Y', NULL, '2025-02-19 04:22:15'),
(122, 'theme-shofy-fashion-logo_height', '40', NULL, '2025-02-19 04:22:15'),
(123, 'theme-shofy-fashion-ecommerce_product_item_layout', 'grid', NULL, '2025-02-19 04:22:15'),
(124, 'theme-shofy-fashion-number_of_products_per_row', '4', NULL, '2025-02-19 04:22:15'),
(125, 'theme-shofy-fashion-ecommerce_products_per_row_mobile', '2', NULL, '2025-02-19 04:22:15'),
(126, 'theme-shofy-fashion-ecommerce_product_gallery_image_style', 'vertical', NULL, '2025-02-19 04:22:15'),
(127, 'theme-shofy-fashion-ecommerce_product_gallery_video_position', 'bottom', NULL, '2025-02-19 04:22:15'),
(128, 'theme-shofy-fashion-max_filter_price', '50000', NULL, '2025-02-19 04:22:15'),
(129, 'theme-shofy-fashion-logo_in_the_checkout_page', NULL, NULL, '2025-02-19 04:22:15'),
(130, 'theme-shofy-fashion-ecommerce_empty_cart_image', '', NULL, '2025-02-19 04:22:15'),
(131, 'theme-shofy-fashion-enabled_header_categories_dropdown', 'yes', NULL, '2025-02-19 04:22:15'),
(132, 'theme-shofy-fashion-enabled_header_categories_dropdown_on_mobile', 'yes', NULL, '2025-02-19 04:22:15'),
(133, 'theme-shofy-fashion-enabled_mega_menu_in_product_categories_dropdown', 'yes', NULL, '2025-02-19 04:22:15'),
(134, 'theme-shofy-fashion-ecommerce_hide_rating_star_when_is_zero', 'no', NULL, '2025-02-19 04:22:15'),
(135, 'theme-shofy-fashion-product_listing_review_style', 'default', NULL, '2025-02-19 04:22:15'),
(136, 'theme-shofy-fashion-merchant_return_days', '7', NULL, '2025-02-19 04:22:15'),
(137, 'theme-shofy-fashion-theme_breadcrumb_enabled', '1', NULL, '2025-02-19 04:22:15'),
(138, 'theme-shofy-fashion-breadcrumb_style', 'align-start', NULL, '2025-02-19 04:22:15'),
(139, 'theme-shofy-fashion-breadcrumb_hide_title', 'no', NULL, '2025-02-19 04:22:15'),
(140, 'theme-shofy-fashion-breadcrumb_background_color', 'rgba(245, 245, 245, 0)', NULL, '2025-02-19 04:22:15'),
(141, 'theme-shofy-fashion-breadcrumb_height', '', NULL, '2025-02-19 04:22:15'),
(142, 'theme-shofy-fashion-breadcrumb_reduce_length_on_mobile', 'yes', NULL, '2025-02-19 04:22:15'),
(143, 'theme-shofy-fashion-sticky_header_enabled', '1', NULL, '2025-02-19 04:22:15'),
(144, 'theme-shofy-fashion-sticky_header_mobile_enabled', '1', NULL, '2025-02-19 04:22:15'),
(145, 'theme-shofy-fashion-enabled_bottom_menu_bar_on_mobile', '1', NULL, '2025-02-19 04:22:15'),
(146, 'theme-shofy-fashion-back_to_top_button_enabled', '1', NULL, '2025-02-19 04:22:15'),
(147, 'theme-shofy-fashion-header_top_background_color', 'rgb(255, 255, 255)', NULL, '2025-02-19 04:22:15'),
(148, 'theme-shofy-fashion-header_top_text_color', 'rgb(0, 0, 0)', NULL, '2025-02-19 04:22:15'),
(149, 'theme-shofy-fashion-header_menu_background_color', 'rgb(0, 0, 0)', NULL, '2025-02-19 04:22:15'),
(150, 'theme-shofy-fashion-header_border_color', 'rgba(1, 15, 28, 0.1)', NULL, '2025-02-19 04:22:15'),
(151, 'theme-shofy-fashion-header_menu_text_color', '#010f1c', NULL, '2025-02-19 04:22:15'),
(152, 'theme-shofy-fashion-newsletter_popup_delay', '3', NULL, '2025-02-19 04:22:15'),
(153, 'theme-shofy-fashion-newsletter_popup_display_pages', '[\"public.index\"]', NULL, '2025-02-19 04:22:15'),
(154, 'payment_razorpay_name', 'Pay online via Razorpay', NULL, '2025-02-19 04:22:15'),
(155, 'payment_razorpay_description', 'Payment with Razorpay', NULL, '2025-02-19 04:22:15'),
(156, 'payment_razorpay_logo', '', NULL, '2025-02-19 04:22:15'),
(157, 'payment_razorpay_key', 'admin@example.com', NULL, '2025-02-19 04:22:15'),
(158, 'payment_razorpay_secret', 'password', NULL, '2025-02-19 04:22:15'),
(159, 'payment_razorpay_available_countries', '[]', NULL, '2025-02-19 04:22:15'),
(160, 'payment_razorpay_status', '1', NULL, '2025-02-19 04:22:15'),
(161, 'default_payment_method', 'cod', NULL, '2025-02-19 04:22:15'),
(162, 'plugins_ecommerce_customer_new_order_subject', 'New order(s) at {{ site_title }}', NULL, '2025-02-19 04:22:15'),
(163, 'plugins_ecommerce_welcome_status', '1', NULL, '2025-02-19 04:22:15'),
(164, 'plugins_ecommerce_customer_order_delivered_status', '1', NULL, '2025-02-19 04:22:15'),
(165, 'plugins_ecommerce_invoice-payment-created_status', '1', NULL, '2025-02-19 04:22:15'),
(166, 'plugins_ecommerce_review_products_status', '1', NULL, '2025-02-19 04:22:15'),
(167, 'plugins_marketplace_welcome-vendor_status', '1', NULL, '2025-02-19 04:22:15'),
(168, 'email_driver', 'smtp', NULL, '2025-02-19 04:22:15'),
(169, 'email_from_name', 'Hardik', NULL, '2025-02-19 04:22:15'),
(170, 'email_from_address', 'hndeveloping@gmail.com', NULL, '2025-02-19 04:22:15'),
(171, 'email_port', '2525', NULL, '2025-02-19 04:22:15'),
(172, 'email_host', 'sandbox.smtp.mailtrap.io', NULL, '2025-02-19 04:22:15'),
(173, 'email_username', '062233798c2696', NULL, '2025-02-19 04:22:15'),
(174, 'email_password', 'd1924c94e02005', NULL, '2025-02-19 04:22:15'),
(175, 'email_local_domain', 'localhost', NULL, '2025-02-19 04:22:15'),
(176, 'email_encryption', 'tls', NULL, '2025-02-19 04:22:15'),
(177, 'email_mail_gun_domain', '', NULL, '2025-02-19 04:22:15'),
(178, 'email_mail_gun_secret', '', NULL, '2025-02-19 04:22:15'),
(179, 'email_mail_gun_endpoint', 'api.mailgun.net', NULL, '2025-02-19 04:22:15'),
(180, 'email_ses_key', '', NULL, '2025-02-19 04:22:15'),
(181, 'email_ses_secret', '', NULL, '2025-02-19 04:22:15'),
(182, 'email_ses_region', 'us-east-1', NULL, '2025-02-19 04:22:15'),
(183, 'email_postmark_token', '', NULL, '2025-02-19 04:22:15'),
(184, 'email_log_channel', 'stack', NULL, '2025-02-19 04:22:15'),
(185, 'email_sendmail_path', '/usr/sbin/sendmail -bs -i', NULL, '2025-02-19 04:22:15'),
(186, 'theme-shofy-fashion-admin_logo', 'logo-avs.jpeg', NULL, '2025-02-19 04:22:15'),
(187, 'theme-shofy-fashion-admin_favicon', 'main/general/favicon.png', NULL, '2025-02-19 04:22:15'),
(188, 'is_completed_get_started', '1', NULL, '2025-02-19 04:22:15'),
(189, 'email_template_logo', 'logo-avs-1.jpeg', NULL, '2025-02-19 04:22:15'),
(190, 'email_template_email_contact', 'hndeveloping@gmail.com', NULL, '2025-02-19 04:22:15'),
(191, 'email_template_social_links', '', NULL, '2025-02-19 04:22:15'),
(192, 'email_template_copyright_text', '© %Y All Rights Reserved By Ashtavinayak Soft Solutions', NULL, '2025-02-19 04:22:15'),
(193, 'email_template_custom_css', '', NULL, '2025-02-19 04:22:15'),
(194, 'email_template_max_height_for_logo', '40', NULL, '2025-02-19 04:22:15'),
(195, 'ecommerce_store_company', 'Ashtvinayak Soft Solutions', NULL, '2025-02-19 04:22:15'),
(196, 'ecommerce_store_email', 'hndeveloping@gmail.com', NULL, '2025-02-19 04:22:15'),
(197, 'ecommerce_store_vat_number', '', NULL, '2025-02-19 04:22:15');

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

--
-- Table structure for table `simple_sliders`
--

CREATE TABLE `simple_sliders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `key` varchar(120) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `simple_sliders`
--

INSERT INTO `simple_sliders` (`id`, `name`, `key`, `description`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Home slider', 'home-slider', 'The main slider on homepage', 'published', '2024-10-31 20:46:56', '2025-02-14 10:55:05');

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

--
-- Table structure for table `simple_slider_items`
--

CREATE TABLE `simple_slider_items` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `simple_slider_id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) DEFAULT NULL,
  `image` varchar(191) NOT NULL,
  `link` varchar(191) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `order` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `simple_slider_items`
--

INSERT INTO `simple_slider_items` (`id`, `simple_slider_id`, `title`, `image`, `link`, `description`, `order`, `created_at`, `updated_at`) VALUES
(1, 1, 'The Clothing Collection', 'fashion/products/first-iphone-removebg-preview.png', '/products', 'New Arrivals 2023', 0, '2024-10-31 20:46:56', '2025-02-14 10:15:15'),
(2, 1, 'The Summer Collection', 'fashion/products/seccond-iphone-removebg-preview.png', '/products', 'Best Selling 2023', 1, '2024-10-31 20:46:56', '2025-02-14 10:15:35'),
(3, 1, 'Amazing New designs', 'fashion/products/third-iphone-removebg-preview.png', '/products', 'Winter Has Arrived', 2, '2024-10-31 20:46:56', '2025-02-14 10:15:53');

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

--
-- Table structure for table `slugs`
--

CREATE TABLE `slugs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `key` varchar(191) NOT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(191) NOT NULL,
  `prefix` varchar(120) DEFAULT '',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `slugs`
--

INSERT INTO `slugs` (`id`, `key`, `reference_id`, `reference_type`, `prefix`, `created_at`, `updated_at`) VALUES
(12, 'crisp-bread-cake', 1, 'Botble\\Blog\\Models\\Category', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(13, 'fashion', 2, 'Botble\\Blog\\Models\\Category', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(14, 'electronic', 3, 'Botble\\Blog\\Models\\Category', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(15, 'commercial', 4, 'Botble\\Blog\\Models\\Category', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(16, 'organic-fruits', 5, 'Botble\\Blog\\Models\\Category', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(17, 'ecological', 6, 'Botble\\Blog\\Models\\Category', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(18, 'general', 1, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(19, 'design', 2, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(20, 'fashion', 3, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(21, 'branding', 4, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(22, 'modern', 5, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(23, 'nature', 6, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(24, 'vintage', 7, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(25, 'sunglasses', 8, 'Botble\\Blog\\Models\\Tag', 'tag', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(26, '4-expert-tips-on-how-to-choose-the-right-mens-wallet', 1, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(27, 'sexy-clutches-how-to-buy-wear-a-designer-clutch-bag', 2, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(28, 'the-top-2020-handbag-trends-to-know', 3, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(29, 'how-to-match-the-color-of-your-handbag-with-an-outfit', 4, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(30, 'how-to-care-for-leather-bags', 5, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(31, 'were-crushing-hard-on-summers-10-biggest-bag-trends', 6, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(32, 'essential-qualities-of-highly-successful-music', 7, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(33, '9-things-i-love-about-shaving-my-head', 8, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(34, 'why-teamwork-really-makes-the-dream-work', 9, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(35, 'the-world-caters-to-average-people', 10, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(36, 'the-litigants-on-the-screen-are-not-actors', 11, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(37, 'hiring-the-right-sales-team-at-the-right-time', 12, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(38, 'fully-embrace-the-return-of-90s-fashion', 13, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(39, 'exploring-the-english-countryside', 14, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(40, 'heres-the-first-valentinos-new-makeup-collection', 15, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(41, 'follow-your-own-design-process-whatever-gets', 16, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(42, 'freelancer-days-2024-whats-new', 17, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(43, 'quality-foods-requirments-for-every-human-bodys', 18, 'Botble\\Blog\\Models\\Post', 'blog', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(53, 'clothing', 2, 'Botble\\Ecommerce\\Models\\ProductCategory', 'product-categories', '2024-10-31 20:46:57', '2024-10-31 20:46:57'),
(54, 'mens-clothing', 3, 'Botble\\Ecommerce\\Models\\ProductCategory', 'product-categories', '2024-10-31 20:46:57', '2024-10-31 20:46:57'),
(55, 't-shirts', 4, 'Botble\\Ecommerce\\Models\\ProductCategory', 'product-categories', '2024-10-31 20:46:57', '2024-10-31 20:46:57'),
(56, 'jeans', 5, 'Botble\\Ecommerce\\Models\\ProductCategory', 'product-categories', '2024-10-31 20:46:57', '2024-10-31 20:46:57'),
(57, 'suits', 6, 'Botble\\Ecommerce\\Models\\ProductCategory', 'product-categories', '2024-10-31 20:46:57', '2024-10-31 20:46:57'),
(58, 'womens-clothing', 7, 'Botble\\Ecommerce\\Models\\ProductCategory', 'product-categories', '2024-10-31 20:46:57', '2024-10-31 20:46:57'),
(59, 'dresses', 8, 'Botble\\Ecommerce\\Models\\ProductCategory', 'product-categories', '2024-10-31 20:46:57', '2024-10-31 20:46:57'),
(114, 'perfect', 1, 'Botble\\Gallery\\Models\\Gallery', 'galleries', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(115, 'new-day', 2, 'Botble\\Gallery\\Models\\Gallery', 'galleries', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(116, 'happy-day', 3, 'Botble\\Gallery\\Models\\Gallery', 'galleries', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(117, 'nature', 4, 'Botble\\Gallery\\Models\\Gallery', 'galleries', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(118, 'morning', 5, 'Botble\\Gallery\\Models\\Gallery', 'galleries', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(119, 'home', 1, 'Botble\\Page\\Models\\Page', '', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(120, 'categories', 2, 'Botble\\Page\\Models\\Page', '', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(121, 'brands', 3, 'Botble\\Page\\Models\\Page', '', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(122, 'coupons', 4, 'Botble\\Page\\Models\\Page', '', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(123, 'blog', 5, 'Botble\\Page\\Models\\Page', '', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(124, 'contact', 6, 'Botble\\Page\\Models\\Page', '', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(125, 'faqs', 7, 'Botble\\Page\\Models\\Page', '', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(126, 'cookie-policy', 8, 'Botble\\Page\\Models\\Page', '', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(127, 'our-story', 9, 'Botble\\Page\\Models\\Page', '', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(128, 'careers', 10, 'Botble\\Page\\Models\\Page', '', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(129, 'shipping', 11, 'Botble\\Page\\Models\\Page', '', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(130, 'coming-soon', 12, 'Botble\\Page\\Models\\Page', '', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(131, 'return-policy', 13, 'Botble\\Page\\Models\\Page', '', '2024-10-31 20:47:01', '2024-10-31 20:47:01'),
(189, 'new-products', 14, 'Botble\\Page\\Models\\Page', '', '2025-02-14 10:59:43', '2025-02-14 10:59:43'),
(190, 'ladylife', 9, 'Botble\\Marketplace\\Models\\Store', 'stores', '2025-02-14 21:53:51', '2025-02-14 21:53:51'),
(191, 'womens-cotton-blend-co-ord-set', 101, 'Botble\\Ecommerce\\Models\\Product', 'products', '2025-02-14 22:06:31', '2025-02-14 22:06:31'),
(192, 'kurti', 7, 'Botble\\Ecommerce\\Models\\ProductTag', 'product-tags', '2025-02-14 22:06:31', '2025-02-14 22:06:31'),
(193, 'fashion', 6, 'Botble\\Ecommerce\\Models\\Brand', 'brands', '2025-02-14 23:34:25', '2025-02-14 23:34:25'),
(194, 'demo-new-product', 127, 'Botble\\Ecommerce\\Models\\Product', 'products', '2025-02-19 03:36:18', '2025-02-19 03:36:18'),
(195, 'new', 8, 'Botble\\Ecommerce\\Models\\ProductTag', 'product-tags', '2025-02-19 03:36:18', '2025-02-19 03:36:18'),
(196, 'demo', 9, 'Botble\\Ecommerce\\Models\\ProductTag', 'product-tags', '2025-02-19 03:36:19', '2025-02-19 03:36:19');

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

--
-- Table structure for table `slugs_translations`
--

CREATE TABLE `slugs_translations` (
  `lang_code` varchar(20) NOT NULL,
  `slugs_id` bigint(20) UNSIGNED NOT NULL,
  `key` varchar(191) DEFAULT NULL,
  `prefix` varchar(120) DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `states`
--

CREATE TABLE `states` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `slug` varchar(120) DEFAULT NULL,
  `abbreviation` varchar(10) DEFAULT NULL,
  `country_id` bigint(20) UNSIGNED DEFAULT NULL,
  `order` tinyint(4) NOT NULL DEFAULT 0,
  `image` varchar(191) DEFAULT NULL,
  `is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `states`
--

INSERT INTO `states` (`id`, `name`, `slug`, `abbreviation`, `country_id`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Andaman and Nicobar Islands', 'andaman-and-nicobar-islands', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(2, 'Andhra Pradesh', 'andhra-pradesh', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(3, 'Arunachal Pradesh', 'arunachal-pradesh', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(4, 'Assam', 'assam', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(5, 'Bihar', 'bihar', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(6, 'Chandigarh', 'chandigarh', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(7, 'Chhattisgarh', 'chhattisgarh', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(8, 'Dadra and Nagar Haveli and Daman and Diu', 'dadra-and-nagar-haveli-and-daman-and-diu', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(9, 'Delhi', 'delhi', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(10, 'Goa', 'goa', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(11, 'Gujarat', 'gujarat', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(12, 'Haryana', 'haryana', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(13, 'Himachal Pradesh', 'himachal-pradesh', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(14, 'Jammu and Kashmir', 'jammu-and-kashmir', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(15, 'Jharkhand', 'jharkhand', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(16, 'Karnataka', 'karnataka', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(17, 'Kerala', 'kerala', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(18, 'Ladakh', 'ladakh', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(19, 'Lakshadweep', 'lakshadweep', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(20, 'Madhya Pradesh', 'madhya-pradesh', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(21, 'Maharashtra', 'maharashtra', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(22, 'Manipur', 'manipur', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(23, 'Meghalaya', 'meghalaya', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(24, 'Mizoram', 'mizoram', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(25, 'Nagaland', 'nagaland', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(26, 'Odisha', 'odisha', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(27, 'Puducherry', 'puducherry', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(28, 'Punjab', 'punjab', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(29, 'Rajasthan', 'rajasthan', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(30, 'Sikkim', 'sikkim', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(31, 'Tamil Nadu', 'tamil-nadu', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(32, 'Telangana', 'telangana', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(33, 'Tripura', 'tripura', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(34, 'Uttar Pradesh', 'uttar-pradesh', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(35, 'Uttarakhand', 'uttarakhand', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00'),
(36, 'West Bengal', 'west-bengal', NULL, 1, 0, NULL, 0, 'published', '2025-02-14 10:22:00', '2025-02-14 10:22:00');

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

--
-- Table structure for table `states_translations`
--

CREATE TABLE `states_translations` (
  `lang_code` varchar(20) NOT NULL,
  `states_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) DEFAULT NULL,
  `slug` varchar(120) DEFAULT NULL,
  `abbreviation` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `tags` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `author_id` bigint(20) UNSIGNED DEFAULT NULL,
  `author_type` varchar(191) NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `description` varchar(400) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `tags`
--

INSERT INTO `tags` (`id`, `name`, `author_id`, `author_type`, `description`, `status`, `created_at`, `updated_at`) VALUES
(1, 'General', NULL, 'Botble\\ACL\\Models\\User', NULL, 'published', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(2, 'Design', NULL, 'Botble\\ACL\\Models\\User', NULL, 'published', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(3, 'Fashion', NULL, 'Botble\\ACL\\Models\\User', NULL, 'published', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(4, 'Branding', NULL, 'Botble\\ACL\\Models\\User', NULL, 'published', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(5, 'Modern', NULL, 'Botble\\ACL\\Models\\User', NULL, 'published', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(6, 'Nature', NULL, 'Botble\\ACL\\Models\\User', NULL, 'published', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(7, 'Vintage', NULL, 'Botble\\ACL\\Models\\User', NULL, 'published', '2024-10-31 20:46:52', '2024-10-31 20:46:52'),
(8, 'Sunglasses', NULL, 'Botble\\ACL\\Models\\User', NULL, 'published', '2024-10-31 20:46:52', '2024-10-31 20:46:52');

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

--
-- Table structure for table `tags_translations`
--

CREATE TABLE `tags_translations` (
  `lang_code` varchar(20) NOT NULL,
  `tags_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `testimonials` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `content` text NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `company` varchar(120) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `testimonials` (`id`, `name`, `content`, `image`, `company`, `status`, `created_at`, `updated_at`) VALUES
(1, 'James Dopli', 'Thanks for all your efforts and teamwork over the last several months!  Thank you so much', 'main/users/10.jpg', 'Developer', 'published', '2024-10-31 20:46:56', '2024-10-31 20:46:56'),
(2, 'Theodore Handle', 'How you use the city or town name is up to you. All results may be freely used in any work.', 'main/users/3.jpg', 'CO Founder', 'published', '2024-10-31 20:46:56', '2024-10-31 20:46:56'),
(3, 'Shahnewaz Sakil', 'Very happy with our choice to take our daughter to Brave care. The entire team was great! Thank you!', 'main/users/1.jpg', 'UI/UX Designer', 'published', '2024-10-31 20:46:56', '2024-10-31 20:46:56'),
(4, 'Albert Flores', 'Wedding day savior! 5 stars. Their bridal collection is a game-changer. Made me feel like a star.', 'main/users/1.jpg', 'Bank of America', 'published', '2024-10-31 20:46:56', '2024-10-31 20:46:56');

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

--
-- Table structure for table `testimonials_translations`
--

CREATE TABLE `testimonials_translations` (
  `lang_code` varchar(20) NOT NULL,
  `testimonials_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `company` varchar(120) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `users` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `email` varchar(191) NOT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(120) DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `first_name` varchar(120) DEFAULT NULL,
  `last_name` varchar(120) DEFAULT NULL,
  `username` varchar(60) DEFAULT NULL,
  `avatar_id` bigint(20) UNSIGNED DEFAULT NULL,
  `super_user` tinyint(1) NOT NULL DEFAULT 0,
  `manage_supers` tinyint(1) NOT NULL DEFAULT 0,
  `permissions` text DEFAULT NULL,
  `last_login` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `users` (`id`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `first_name`, `last_name`, `username`, `avatar_id`, `super_user`, `manage_supers`, `permissions`, `last_login`) VALUES
(1, 'hndevelopinng@gmail.com', NULL, '$2y$12$DQ/4vqZ4k9DAABP3XCC37eKTOI5C.No63RxrVJVwNEpCF5MOdANW6', 'oOUZMznu9Oh4yotcfuCIUBw1NOgdtoSi8FawVA2APBhpnaJmcISylHb64ero', '2025-02-14 08:22:03', '2025-02-16 04:14:35', 'AVS', 'Admin', 'AVS_1414', NULL, 1, 1, NULL, NULL);

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

--
-- Table structure for table `user_meta`
--

CREATE TABLE `user_meta` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `key` varchar(120) DEFAULT NULL,
  `value` text DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `user_meta`
--

INSERT INTO `user_meta` (`id`, `key`, `value`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'theme_mode', 'dark', 1, '2025-02-14 08:35:58', '2025-02-14 08:35:58'),
(2, 'minimal_sidebar', 'no', 1, '2025-02-14 10:13:01', '2025-02-16 04:34:46');

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

--
-- Table structure for table `widgets`
--

CREATE TABLE `widgets` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `widget_id` varchar(120) NOT NULL,
  `sidebar_id` varchar(120) NOT NULL,
  `theme` varchar(120) NOT NULL,
  `position` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `data` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `widgets`
--

INSERT INTO `widgets` (`id`, `widget_id`, `sidebar_id`, `theme`, `position`, `data`, `created_at`, `updated_at`) VALUES
(12, 'BlogSearchWidget', 'blog_sidebar', 'shofy-fashion', 1, '{\"id\":\"BlogSearchWidget\"}', '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(13, 'BlogAboutMeWidget', 'blog_sidebar', 'shofy-fashion', 2, '{\"id\":\"BlogAboutMeWidget\",\"name\":\"About Me\",\"author_url\":\"\\/blog\",\"author_avatar\":\"main\\/users\\/10.jpg\",\"author_name\":\"Ravi O\'Leigh\",\"author_role\":\"Photographer & Blogger\",\"author_description\":\"Lorem ligula eget dolor. Aenean massa. Cum sociis que penatibus magnis dis parturient\",\"author_signature\":\"main\\/general\\/signature.png\"}', '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(14, 'BlogPostsWidget', 'blog_sidebar', 'shofy-fashion', 3, '{\"id\":\"BlogPostsWidget\",\"name\":\"Latest Posts\",\"limit\":3}', '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(15, 'BlogCategoriesWidget', 'blog_sidebar', 'shofy-fashion', 4, '{\"id\":\"BlogCategoriesWidget\",\"name\":\"Categories\",\"number_display\":6}', '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(16, 'BlogTagsWidget', 'blog_sidebar', 'shofy-fashion', 5, '{\"id\":\"BlogTagsWidget\",\"name\":\"Popular Tags\",\"number_display\":6}', '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(18, 'EcommerceBrands', 'products_listing_top_sidebar', 'shofy-fashion', 1, '{\"id\":\"EcommerceBrands\",\"brand_ids\":[1,2,3,4,5]}', '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(19, 'ProductCategoriesWidget', 'products_listing_top_sidebar', 'shofy-fashion', 2, '{\"id\":\"ProductCategoriesWidget\",\"categories\":[1,2,7,11,18,19],\"style\":\"grid\",\"display_children\":true}', '2024-10-31 20:47:02', '2024-10-31 20:47:02'),
(20, 'SiteAcceptedPaymentsWidget', 'footer_top_sidebar', 'shofy-fashion', 0, '{\"id\":\"SiteAcceptedPaymentsWidget\"}', '2025-02-14 22:23:21', '2025-02-14 22:23:21'),
(21, 'NewsletterWidget', 'footer_top_sidebar', 'shofy-fashion', 1, '{\"id\":\"NewsletterWidget\",\"title\":\"Subscribe our Newsletter\",\"subtitle\":\"Sale 20% off all store\",\"shape_1\":\"\",\"shape_2\":\"\",\"shape_3\":\"\",\"shape_4\":\"\"}', '2025-02-14 22:23:21', '2025-02-14 22:23:21'),
(59, 'ProductDetailInfoWidget', 'product_details_sidebar', 'shofy-fashion', 0, '{\"id\":\"ProductDetailInfoWidget\",\"messages\":[[{\"key\":\"message\",\"value\":\"7 days easy returns\"}],[{\"key\":\"message\",\"value\":\"Order yours before 2.30pm for same day dispatch\"}]],\"description\":\"Guaranteed safe & secure checkout\",\"image\":\"\"}', '2025-02-15 00:25:51', '2025-02-15 00:25:51'),
(64, 'SiteInfoWidget', 'footer_primary_sidebar', 'shofy-fashion', 0, '{\"id\":\"SiteInfoWidget\",\"logo\":\"logo-avs.jpeg\",\"logo_height\":\"50\",\"about\":\"Ashtavinayak Soft Solutions\",\"show_social_links\":\"0\"}', '2025-02-15 00:34:03', '2025-02-15 00:34:03'),
(65, 'CustomMenuWidget', 'footer_primary_sidebar', 'shofy-fashion', 1, '{\"id\":\"CustomMenuWidget\",\"name\":\"Information\",\"menu_id\":\"footer-menu\"}', '2025-02-15 00:34:04', '2025-02-15 00:34:04'),
(66, 'SiteContactWidget', 'footer_primary_sidebar', 'shofy-fashion', 2, '{\"id\":\"SiteContactWidget\",\"name\":\"Talk To Us\",\"phone_label\":\"Got Questions? Call us\",\"phone\":\"+91 9313535043\",\"email\":\"hndeveloping@gmail.com\",\"address\":\"Shanghvi DharmShala , Near Central Bank,Station Road Amreli-365601\"}', '2025-02-15 00:34:04', '2025-02-15 00:34:04'),
(67, 'ProductCategoriesWidget', 'footer_primary_sidebar', 'shofy-fashion', 3, '{\"id\":\"ProductCategoriesWidget\",\"style\":\"simple-text\",\"name\":\"Fashion\",\"categories\":[\"2\",\"7\",\"8\"],\"display_children\":\"0\",\"centered_text\":\"0\"}', '2025-02-15 00:34:04', '2025-02-15 00:34:04'),
(68, 'SiteCopyrightWidget', 'footer_bottom_sidebar', 'shofy-fashion', 0, '{\"id\":\"SiteCopyrightWidget\"}', '2025-02-19 03:50:03', '2025-02-19 03:50:03'),
(69, 'SiteAcceptedPaymentsWidget', 'footer_bottom_sidebar', 'shofy-fashion', 1, '{\"id\":\"SiteAcceptedPaymentsWidget\",\"image\":\"\",\"url\":\"#\"}', '2025-02-19 03:50:03', '2025-02-19 03:50:03');

--
-- Indexes for dumped tables
--

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

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

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

--
-- Indexes for table `ads_translations`
--
ALTER TABLE `ads_translations`
  ADD PRIMARY KEY (`lang_code`,`ads_id`);

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

--
-- Indexes for table `announcements_translations`
--
ALTER TABLE `announcements_translations`
  ADD PRIMARY KEY (`lang_code`,`announcements_id`);

--
-- Indexes for table `audit_histories`
--
ALTER TABLE `audit_histories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `audit_histories_user_id_index` (`user_id`),
  ADD KEY `audit_histories_module_index` (`module`);

--
-- Indexes for table `categories`
--
ALTER TABLE `categories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `categories_parent_id_index` (`parent_id`),
  ADD KEY `categories_status_index` (`status`),
  ADD KEY `categories_created_at_index` (`created_at`);

--
-- Indexes for table `categories_translations`
--
ALTER TABLE `categories_translations`
  ADD PRIMARY KEY (`lang_code`,`categories_id`);

--
-- Indexes for table `cities`
--
ALTER TABLE `cities`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `cities_slug_unique` (`slug`);

--
-- Indexes for table `cities_translations`
--
ALTER TABLE `cities_translations`
  ADD PRIMARY KEY (`lang_code`,`cities_id`);

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

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

--
-- Indexes for table `contact_custom_fields_translations`
--
ALTER TABLE `contact_custom_fields_translations`
  ADD PRIMARY KEY (`lang_code`,`contact_custom_fields_id`);

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

--
-- Indexes for table `contact_custom_field_options_translations`
--
ALTER TABLE `contact_custom_field_options_translations`
  ADD PRIMARY KEY (`lang_code`,`contact_custom_field_options_id`);

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

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

--
-- Indexes for table `countries_translations`
--
ALTER TABLE `countries_translations`
  ADD PRIMARY KEY (`lang_code`,`countries_id`);

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

--
-- Indexes for table `dashboard_widget_settings`
--
ALTER TABLE `dashboard_widget_settings`
  ADD PRIMARY KEY (`id`),
  ADD KEY `dashboard_widget_settings_user_id_index` (`user_id`),
  ADD KEY `dashboard_widget_settings_widget_id_index` (`widget_id`);

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

--
-- Indexes for table `ec_brands_translations`
--
ALTER TABLE `ec_brands_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_brands_id`);

--
-- Indexes for table `ec_cart`
--
ALTER TABLE `ec_cart`
  ADD PRIMARY KEY (`identifier`,`instance`);

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

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

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

--
-- Indexes for table `ec_customer_deletion_requests`
--
ALTER TABLE `ec_customer_deletion_requests`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `ec_customer_deletion_requests_token_unique` (`token`);

--
-- Indexes for table `ec_customer_password_resets`
--
ALTER TABLE `ec_customer_password_resets`
  ADD KEY `ec_customer_password_resets_email_index` (`email`),
  ADD KEY `ec_customer_password_resets_token_index` (`token`);

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

--
-- Indexes for table `ec_customer_used_coupons`
--
ALTER TABLE `ec_customer_used_coupons`
  ADD PRIMARY KEY (`discount_id`,`customer_id`);

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

--
-- Indexes for table `ec_discount_customers`
--
ALTER TABLE `ec_discount_customers`
  ADD PRIMARY KEY (`discount_id`,`customer_id`);

--
-- Indexes for table `ec_discount_products`
--
ALTER TABLE `ec_discount_products`
  ADD PRIMARY KEY (`discount_id`,`product_id`);

--
-- Indexes for table `ec_discount_product_categories`
--
ALTER TABLE `ec_discount_product_categories`
  ADD PRIMARY KEY (`discount_id`,`product_category_id`);

--
-- Indexes for table `ec_discount_product_collections`
--
ALTER TABLE `ec_discount_product_collections`
  ADD PRIMARY KEY (`discount_id`,`product_collection_id`);

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

--
-- Indexes for table `ec_flash_sales_translations`
--
ALTER TABLE `ec_flash_sales_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_flash_sales_id`);

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

--
-- Indexes for table `ec_global_options_translations`
--
ALTER TABLE `ec_global_options_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_global_options_id`);

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

--
-- Indexes for table `ec_global_option_value_translations`
--
ALTER TABLE `ec_global_option_value_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_global_option_value_id`);

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

--
-- Indexes for table `ec_invoices`
--
ALTER TABLE `ec_invoices`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `ec_invoices_code_unique` (`code`),
  ADD KEY `ec_invoices_reference_type_reference_id_index` (`reference_type`,`reference_id`),
  ADD KEY `ec_invoices_payment_id_index` (`payment_id`),
  ADD KEY `ec_invoices_status_index` (`status`);

--
-- Indexes for table `ec_invoice_items`
--
ALTER TABLE `ec_invoice_items`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ec_invoice_items_reference_type_reference_id_index` (`reference_type`,`reference_id`);

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

--
-- Indexes for table `ec_options_translations`
--
ALTER TABLE `ec_options_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_options_id`);

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

--
-- Indexes for table `ec_option_value_translations`
--
ALTER TABLE `ec_option_value_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_option_value_id`);

--
-- Indexes for table `ec_orders`
--
ALTER TABLE `ec_orders`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `ec_orders_code_unique` (`code`),
  ADD KEY `ec_orders_user_id_status_created_at_index` (`user_id`,`status`,`created_at`);

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

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

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

--
-- Indexes for table `ec_order_referrals`
--
ALTER TABLE `ec_order_referrals`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ec_order_referrals_order_id_index` (`order_id`);

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

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

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

--
-- Indexes for table `ec_order_tax_information`
--
ALTER TABLE `ec_order_tax_information`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ec_order_tax_information_order_id_index` (`order_id`);

--
-- Indexes for table `ec_products`
--
ALTER TABLE `ec_products`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ec_products_brand_id_status_is_variation_created_at_index` (`brand_id`,`status`,`is_variation`,`created_at`),
  ADD KEY `sale_type_index` (`sale_type`),
  ADD KEY `start_date_index` (`start_date`),
  ADD KEY `end_date_index` (`end_date`),
  ADD KEY `sale_price_index` (`sale_price`),
  ADD KEY `is_variation_index` (`is_variation`),
  ADD KEY `ec_products_sku_index` (`sku`);

--
-- Indexes for table `ec_products_translations`
--
ALTER TABLE `ec_products_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_products_id`);

--
-- Indexes for table `ec_product_attributes`
--
ALTER TABLE `ec_product_attributes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `attribute_set_status_index` (`attribute_set_id`);

--
-- Indexes for table `ec_product_attributes_translations`
--
ALTER TABLE `ec_product_attributes_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_product_attributes_id`);

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

--
-- Indexes for table `ec_product_attribute_sets_translations`
--
ALTER TABLE `ec_product_attribute_sets_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_product_attribute_sets_id`);

--
-- Indexes for table `ec_product_categories`
--
ALTER TABLE `ec_product_categories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ec_product_categories_parent_id_status_created_at_index` (`parent_id`,`status`,`created_at`),
  ADD KEY `ec_product_categories_parent_id_status_index` (`parent_id`,`status`);

--
-- Indexes for table `ec_product_categories_translations`
--
ALTER TABLE `ec_product_categories_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_product_categories_id`);

--
-- Indexes for table `ec_product_categorizables`
--
ALTER TABLE `ec_product_categorizables`
  ADD PRIMARY KEY (`category_id`,`reference_id`,`reference_type`),
  ADD KEY `ec_product_categorizables_category_id_index` (`category_id`),
  ADD KEY `ec_product_categorizables_reference_id_index` (`reference_id`),
  ADD KEY `ec_product_categorizables_reference_type_index` (`reference_type`);

--
-- Indexes for table `ec_product_category_product`
--
ALTER TABLE `ec_product_category_product`
  ADD PRIMARY KEY (`product_id`,`category_id`),
  ADD KEY `ec_product_category_product_category_id_index` (`category_id`),
  ADD KEY `ec_product_category_product_product_id_index` (`product_id`);

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

--
-- Indexes for table `ec_product_collections_translations`
--
ALTER TABLE `ec_product_collections_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_product_collections_id`);

--
-- Indexes for table `ec_product_collection_products`
--
ALTER TABLE `ec_product_collection_products`
  ADD PRIMARY KEY (`product_id`,`product_collection_id`),
  ADD KEY `ec_product_collection_products_product_collection_id_index` (`product_collection_id`),
  ADD KEY `ec_product_collection_products_product_id_index` (`product_id`);

--
-- Indexes for table `ec_product_cross_sale_relations`
--
ALTER TABLE `ec_product_cross_sale_relations`
  ADD PRIMARY KEY (`from_product_id`,`to_product_id`),
  ADD KEY `ec_product_cross_sale_relations_from_product_id_index` (`from_product_id`),
  ADD KEY `ec_product_cross_sale_relations_to_product_id_index` (`to_product_id`);

--
-- Indexes for table `ec_product_files`
--
ALTER TABLE `ec_product_files`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ec_product_files_product_id_index` (`product_id`);

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

--
-- Indexes for table `ec_product_labels_translations`
--
ALTER TABLE `ec_product_labels_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_product_labels_id`);

--
-- Indexes for table `ec_product_label_products`
--
ALTER TABLE `ec_product_label_products`
  ADD PRIMARY KEY (`product_label_id`,`product_id`),
  ADD KEY `ec_product_label_products_product_label_id_index` (`product_label_id`),
  ADD KEY `ec_product_label_products_product_id_index` (`product_id`);

--
-- Indexes for table `ec_product_related_relations`
--
ALTER TABLE `ec_product_related_relations`
  ADD PRIMARY KEY (`from_product_id`,`to_product_id`),
  ADD KEY `ec_product_related_relations_from_product_id_index` (`from_product_id`),
  ADD KEY `ec_product_related_relations_to_product_id_index` (`to_product_id`);

--
-- Indexes for table `ec_product_specification_attribute`
--
ALTER TABLE `ec_product_specification_attribute`
  ADD PRIMARY KEY (`product_id`,`attribute_id`);

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

--
-- Indexes for table `ec_product_tags_translations`
--
ALTER TABLE `ec_product_tags_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_product_tags_id`);

--
-- Indexes for table `ec_product_tag_product`
--
ALTER TABLE `ec_product_tag_product`
  ADD PRIMARY KEY (`product_id`,`tag_id`),
  ADD KEY `ec_product_tag_product_product_id_index` (`product_id`),
  ADD KEY `ec_product_tag_product_tag_id_index` (`tag_id`);

--
-- Indexes for table `ec_product_up_sale_relations`
--
ALTER TABLE `ec_product_up_sale_relations`
  ADD PRIMARY KEY (`from_product_id`,`to_product_id`),
  ADD KEY `ec_product_up_sale_relations_from_product_id_index` (`from_product_id`),
  ADD KEY `ec_product_up_sale_relations_to_product_id_index` (`to_product_id`);

--
-- Indexes for table `ec_product_variations`
--
ALTER TABLE `ec_product_variations`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `ec_product_variations_product_id_configurable_product_id_unique` (`product_id`,`configurable_product_id`),
  ADD KEY `configurable_product_index` (`product_id`,`configurable_product_id`);

--
-- Indexes for table `ec_product_variation_items`
--
ALTER TABLE `ec_product_variation_items`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `ec_product_variation_items_attribute_id_variation_id_unique` (`attribute_id`,`variation_id`),
  ADD KEY `attribute_variation_index` (`attribute_id`,`variation_id`);

--
-- Indexes for table `ec_product_views`
--
ALTER TABLE `ec_product_views`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `ec_product_views_product_id_date_unique` (`product_id`,`date`),
  ADD KEY `ec_product_views_product_id_index` (`product_id`);

--
-- Indexes for table `ec_product_with_attribute_set`
--
ALTER TABLE `ec_product_with_attribute_set`
  ADD PRIMARY KEY (`product_id`,`attribute_set_id`);

--
-- Indexes for table `ec_reviews`
--
ALTER TABLE `ec_reviews`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `ec_reviews_product_id_customer_id_unique` (`product_id`,`customer_id`),
  ADD KEY `ec_reviews_product_id_customer_id_status_created_at_index` (`product_id`,`customer_id`,`status`,`created_at`),
  ADD KEY `review_relation_index` (`product_id`,`customer_id`,`status`);

--
-- Indexes for table `ec_review_replies`
--
ALTER TABLE `ec_review_replies`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `ec_review_replies_review_id_user_id_unique` (`review_id`,`user_id`);

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

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

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

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

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

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

--
-- Indexes for table `ec_specification_attributes`
--
ALTER TABLE `ec_specification_attributes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ec_specification_attributes_author_type_author_id_index` (`author_type`,`author_id`);

--
-- Indexes for table `ec_specification_attributes_translations`
--
ALTER TABLE `ec_specification_attributes_translations`
  ADD PRIMARY KEY (`lang_code`,`ec_specification_attributes_id`);

--
-- Indexes for table `ec_specification_groups`
--
ALTER TABLE `ec_specification_groups`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ec_specification_groups_author_type_author_id_index` (`author_type`,`author_id`);

--
-- Indexes for table `ec_specification_tables`
--
ALTER TABLE `ec_specification_tables`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ec_specification_tables_author_type_author_id_index` (`author_type`,`author_id`);

--
-- Indexes for table `ec_specification_table_group`
--
ALTER TABLE `ec_specification_table_group`
  ADD PRIMARY KEY (`table_id`,`group_id`);

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

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

--
-- Indexes for table `ec_tax_products`
--
ALTER TABLE `ec_tax_products`
  ADD PRIMARY KEY (`product_id`,`tax_id`),
  ADD KEY `ec_tax_products_tax_id_index` (`tax_id`),
  ADD KEY `ec_tax_products_product_id_index` (`product_id`);

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

--
-- Indexes for table `ec_wish_lists`
--
ALTER TABLE `ec_wish_lists`
  ADD PRIMARY KEY (`customer_id`,`product_id`),
  ADD KEY `wishlist_relation_index` (`product_id`,`customer_id`);

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

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

--
-- Indexes for table `faqs_translations`
--
ALTER TABLE `faqs_translations`
  ADD PRIMARY KEY (`lang_code`,`faqs_id`);

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

--
-- Indexes for table `faq_categories_translations`
--
ALTER TABLE `faq_categories_translations`
  ADD PRIMARY KEY (`lang_code`,`faq_categories_id`);

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

--
-- Indexes for table `galleries_translations`
--
ALTER TABLE `galleries_translations`
  ADD PRIMARY KEY (`lang_code`,`galleries_id`);

--
-- Indexes for table `gallery_meta`
--
ALTER TABLE `gallery_meta`
  ADD PRIMARY KEY (`id`),
  ADD KEY `gallery_meta_reference_id_index` (`reference_id`);

--
-- Indexes for table `gallery_meta_translations`
--
ALTER TABLE `gallery_meta_translations`
  ADD PRIMARY KEY (`lang_code`,`gallery_meta_id`);

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

--
-- Indexes for table `languages`
--
ALTER TABLE `languages`
  ADD PRIMARY KEY (`lang_id`),
  ADD KEY `lang_locale_index` (`lang_locale`),
  ADD KEY `lang_code_index` (`lang_code`),
  ADD KEY `lang_is_default_index` (`lang_is_default`);

--
-- Indexes for table `language_meta`
--
ALTER TABLE `language_meta`
  ADD PRIMARY KEY (`lang_meta_id`),
  ADD KEY `language_meta_reference_id_index` (`reference_id`),
  ADD KEY `meta_code_index` (`lang_meta_code`),
  ADD KEY `meta_origin_index` (`lang_meta_origin`),
  ADD KEY `meta_reference_type_index` (`reference_type`);

--
-- Indexes for table `media_files`
--
ALTER TABLE `media_files`
  ADD PRIMARY KEY (`id`),
  ADD KEY `media_files_user_id_index` (`user_id`),
  ADD KEY `media_files_index` (`folder_id`,`user_id`,`created_at`);

--
-- Indexes for table `media_folders`
--
ALTER TABLE `media_folders`
  ADD PRIMARY KEY (`id`),
  ADD KEY `media_folders_user_id_index` (`user_id`),
  ADD KEY `media_folders_index` (`parent_id`,`user_id`,`created_at`);

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

--
-- Indexes for table `menus`
--
ALTER TABLE `menus`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `menus_slug_unique` (`slug`);

--
-- Indexes for table `menu_locations`
--
ALTER TABLE `menu_locations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `menu_locations_menu_id_created_at_index` (`menu_id`,`created_at`);

--
-- Indexes for table `menu_nodes`
--
ALTER TABLE `menu_nodes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `menu_nodes_menu_id_index` (`menu_id`),
  ADD KEY `menu_nodes_parent_id_index` (`parent_id`),
  ADD KEY `reference_id` (`reference_id`),
  ADD KEY `reference_type` (`reference_type`);

--
-- Indexes for table `meta_boxes`
--
ALTER TABLE `meta_boxes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `meta_boxes_reference_id_index` (`reference_id`);

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

--
-- Indexes for table `mp_category_sale_commissions`
--
ALTER TABLE `mp_category_sale_commissions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `mp_category_sale_commissions_product_category_id_unique` (`product_category_id`);

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

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

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

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

--
-- Indexes for table `mp_stores_translations`
--
ALTER TABLE `mp_stores_translations`
  ADD PRIMARY KEY (`lang_code`,`mp_stores_id`);

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

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

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

--
-- Indexes for table `pages_translations`
--
ALTER TABLE `pages_translations`
  ADD PRIMARY KEY (`lang_code`,`pages_id`);

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

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

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

--
-- Indexes for table `personal_access_tokens`
--
ALTER TABLE `personal_access_tokens`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
  ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`);

--
-- Indexes for table `posts`
--
ALTER TABLE `posts`
  ADD PRIMARY KEY (`id`),
  ADD KEY `posts_status_index` (`status`),
  ADD KEY `posts_author_id_index` (`author_id`),
  ADD KEY `posts_author_type_index` (`author_type`),
  ADD KEY `posts_created_at_index` (`created_at`);

--
-- Indexes for table `posts_translations`
--
ALTER TABLE `posts_translations`
  ADD PRIMARY KEY (`lang_code`,`posts_id`);

--
-- Indexes for table `post_categories`
--
ALTER TABLE `post_categories`
  ADD KEY `post_categories_category_id_index` (`category_id`),
  ADD KEY `post_categories_post_id_index` (`post_id`);

--
-- Indexes for table `post_tags`
--
ALTER TABLE `post_tags`
  ADD KEY `post_tags_tag_id_index` (`tag_id`),
  ADD KEY `post_tags_post_id_index` (`post_id`);

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

--
-- Indexes for table `revisions`
--
ALTER TABLE `revisions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `revisions_revisionable_id_revisionable_type_index` (`revisionable_id`,`revisionable_type`);

--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `roles_slug_unique` (`slug`),
  ADD KEY `roles_created_by_index` (`created_by`),
  ADD KEY `roles_updated_by_index` (`updated_by`);

--
-- Indexes for table `role_users`
--
ALTER TABLE `role_users`
  ADD PRIMARY KEY (`user_id`,`role_id`),
  ADD KEY `role_users_user_id_index` (`user_id`),
  ADD KEY `role_users_role_id_index` (`role_id`);

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

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

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

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

--
-- Indexes for table `slugs`
--
ALTER TABLE `slugs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `slugs_reference_id_index` (`reference_id`),
  ADD KEY `slugs_key_index` (`key`),
  ADD KEY `slugs_prefix_index` (`prefix`),
  ADD KEY `slugs_reference_index` (`reference_id`,`reference_type`);

--
-- Indexes for table `slugs_translations`
--
ALTER TABLE `slugs_translations`
  ADD PRIMARY KEY (`lang_code`,`slugs_id`);

--
-- Indexes for table `states`
--
ALTER TABLE `states`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `states_slug_unique` (`slug`);

--
-- Indexes for table `states_translations`
--
ALTER TABLE `states_translations`
  ADD PRIMARY KEY (`lang_code`,`states_id`);

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

--
-- Indexes for table `tags_translations`
--
ALTER TABLE `tags_translations`
  ADD PRIMARY KEY (`lang_code`,`tags_id`);

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

--
-- Indexes for table `testimonials_translations`
--
ALTER TABLE `testimonials_translations`
  ADD PRIMARY KEY (`lang_code`,`testimonials_id`);

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

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

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

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `activations`
--
ALTER TABLE `activations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `admin_notifications`
--
ALTER TABLE `admin_notifications`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `ads`
--
ALTER TABLE `ads`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `announcements`
--
ALTER TABLE `announcements`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `audit_histories`
--
ALTER TABLE `audit_histories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=311;

--
-- AUTO_INCREMENT for table `categories`
--
ALTER TABLE `categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `cities`
--
ALTER TABLE `cities`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4198;

--
-- AUTO_INCREMENT for table `contacts`
--
ALTER TABLE `contacts`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `contact_custom_fields`
--
ALTER TABLE `contact_custom_fields`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `contact_custom_field_options`
--
ALTER TABLE `contact_custom_field_options`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `contact_replies`
--
ALTER TABLE `contact_replies`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `countries`
--
ALTER TABLE `countries`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `dashboard_widgets`
--
ALTER TABLE `dashboard_widgets`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `dashboard_widget_settings`
--
ALTER TABLE `dashboard_widget_settings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ec_brands`
--
ALTER TABLE `ec_brands`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `ec_currencies`
--
ALTER TABLE `ec_currencies`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `ec_customers`
--
ALTER TABLE `ec_customers`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `ec_customer_addresses`
--
ALTER TABLE `ec_customer_addresses`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;

--
-- AUTO_INCREMENT for table `ec_customer_deletion_requests`
--
ALTER TABLE `ec_customer_deletion_requests`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ec_customer_recently_viewed_products`
--
ALTER TABLE `ec_customer_recently_viewed_products`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `ec_discounts`
--
ALTER TABLE `ec_discounts`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `ec_flash_sales`
--
ALTER TABLE `ec_flash_sales`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `ec_global_options`
--
ALTER TABLE `ec_global_options`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `ec_global_option_value`
--
ALTER TABLE `ec_global_option_value`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `ec_grouped_products`
--
ALTER TABLE `ec_grouped_products`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ec_invoices`
--
ALTER TABLE `ec_invoices`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `ec_invoice_items`
--
ALTER TABLE `ec_invoice_items`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `ec_options`
--
ALTER TABLE `ec_options`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ec_option_value`
--
ALTER TABLE `ec_option_value`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ec_orders`
--
ALTER TABLE `ec_orders`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `ec_order_addresses`
--
ALTER TABLE `ec_order_addresses`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `ec_order_histories`
--
ALTER TABLE `ec_order_histories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;

--
-- AUTO_INCREMENT for table `ec_order_product`
--
ALTER TABLE `ec_order_product`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `ec_order_referrals`
--
ALTER TABLE `ec_order_referrals`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ec_order_returns`
--
ALTER TABLE `ec_order_returns`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ec_order_return_histories`
--
ALTER TABLE `ec_order_return_histories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ec_order_return_items`
--
ALTER TABLE `ec_order_return_items`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ec_order_tax_information`
--
ALTER TABLE `ec_order_tax_information`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ec_products`
--
ALTER TABLE `ec_products`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=131;

--
-- AUTO_INCREMENT for table `ec_product_attributes`
--
ALTER TABLE `ec_product_attributes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;

--
-- AUTO_INCREMENT for table `ec_product_attribute_sets`
--
ALTER TABLE `ec_product_attribute_sets`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `ec_product_categories`
--
ALTER TABLE `ec_product_categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;

--
-- AUTO_INCREMENT for table `ec_product_collections`
--
ALTER TABLE `ec_product_collections`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `ec_product_files`
--
ALTER TABLE `ec_product_files`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27;

--
-- AUTO_INCREMENT for table `ec_product_labels`
--
ALTER TABLE `ec_product_labels`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `ec_product_tags`
--
ALTER TABLE `ec_product_tags`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `ec_product_variations`
--
ALTER TABLE `ec_product_variations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=86;

--
-- AUTO_INCREMENT for table `ec_product_variation_items`
--
ALTER TABLE `ec_product_variation_items`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=171;

--
-- AUTO_INCREMENT for table `ec_product_views`
--
ALTER TABLE `ec_product_views`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `ec_reviews`
--
ALTER TABLE `ec_reviews`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1002;

--
-- AUTO_INCREMENT for table `ec_review_replies`
--
ALTER TABLE `ec_review_replies`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `ec_shared_wishlists`
--
ALTER TABLE `ec_shared_wishlists`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `ec_shipments`
--
ALTER TABLE `ec_shipments`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `ec_shipment_histories`
--
ALTER TABLE `ec_shipment_histories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `ec_shipping`
--
ALTER TABLE `ec_shipping`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `ec_shipping_rules`
--
ALTER TABLE `ec_shipping_rules`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `ec_shipping_rule_items`
--
ALTER TABLE `ec_shipping_rule_items`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ec_specification_attributes`
--
ALTER TABLE `ec_specification_attributes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `ec_specification_groups`
--
ALTER TABLE `ec_specification_groups`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `ec_specification_tables`
--
ALTER TABLE `ec_specification_tables`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `ec_store_locators`
--
ALTER TABLE `ec_store_locators`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `ec_taxes`
--
ALTER TABLE `ec_taxes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `ec_tax_rules`
--
ALTER TABLE `ec_tax_rules`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

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

--
-- AUTO_INCREMENT for table `faqs`
--
ALTER TABLE `faqs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `faq_categories`
--
ALTER TABLE `faq_categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `galleries`
--
ALTER TABLE `galleries`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `gallery_meta`
--
ALTER TABLE `gallery_meta`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

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

--
-- AUTO_INCREMENT for table `languages`
--
ALTER TABLE `languages`
  MODIFY `lang_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `language_meta`
--
ALTER TABLE `language_meta`
  MODIFY `lang_meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44;

--
-- AUTO_INCREMENT for table `media_files`
--
ALTER TABLE `media_files`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=152;

--
-- AUTO_INCREMENT for table `media_folders`
--
ALTER TABLE `media_folders`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;

--
-- AUTO_INCREMENT for table `media_settings`
--
ALTER TABLE `media_settings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `menus`
--
ALTER TABLE `menus`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `menu_locations`
--
ALTER TABLE `menu_locations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `menu_nodes`
--
ALTER TABLE `menu_nodes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;

--
-- AUTO_INCREMENT for table `meta_boxes`
--
ALTER TABLE `meta_boxes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=95;

--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=216;

--
-- AUTO_INCREMENT for table `mp_category_sale_commissions`
--
ALTER TABLE `mp_category_sale_commissions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `mp_customer_revenues`
--
ALTER TABLE `mp_customer_revenues`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `mp_customer_withdrawals`
--
ALTER TABLE `mp_customer_withdrawals`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `mp_messages`
--
ALTER TABLE `mp_messages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `mp_stores`
--
ALTER TABLE `mp_stores`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `mp_vendor_info`
--
ALTER TABLE `mp_vendor_info`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `newsletters`
--
ALTER TABLE `newsletters`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `pages`
--
ALTER TABLE `pages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;

--
-- AUTO_INCREMENT for table `payments`
--
ALTER TABLE `payments`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `payment_logs`
--
ALTER TABLE `payment_logs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `personal_access_tokens`
--
ALTER TABLE `personal_access_tokens`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `posts`
--
ALTER TABLE `posts`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- AUTO_INCREMENT for table `request_logs`
--
ALTER TABLE `request_logs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `revisions`
--
ALTER TABLE `revisions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `settings`
--
ALTER TABLE `settings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=198;

--
-- AUTO_INCREMENT for table `simple_sliders`
--
ALTER TABLE `simple_sliders`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `simple_slider_items`
--
ALTER TABLE `simple_slider_items`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `slugs`
--
ALTER TABLE `slugs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=197;

--
-- AUTO_INCREMENT for table `states`
--
ALTER TABLE `states`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37;

--
-- AUTO_INCREMENT for table `tags`
--
ALTER TABLE `tags`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `testimonials`
--
ALTER TABLE `testimonials`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `user_meta`
--
ALTER TABLE `user_meta`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `widgets`
--
ALTER TABLE `widgets`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=70;
COMMIT;

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