Server : LiteSpeed System : Linux in-mum-web837.main-hosting.eu 4.18.0-553.52.1.lve.el8.x86_64 #1 SMP Wed May 21 15:31:29 UTC 2025 x86_64 User : u495801573 ( 495801573) PHP Version : 8.3.30 Disable Function : NONE Directory : /home/u495801573/domains/rahmanhabib.com.bd/public_html/ |
-- MySQL dump 10.13 Distrib 8.0.33, for macos13 (arm64)
--
-- Host: 127.0.0.1 Database: archielite_iori
-- ------------------------------------------------------
-- Server version 8.0.33
/*!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 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `activations`
--
DROP TABLE IF EXISTS `activations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `activations` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL,
`code` varchar(120) COLLATE utf8mb4_unicode_ci 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,
PRIMARY KEY (`id`),
KEY `activations_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `activations`
--
LOCK TABLES `activations` WRITE;
/*!40000 ALTER TABLE `activations` DISABLE KEYS */;
INSERT INTO `activations` VALUES (1,1,'ypSqfe5lEjs28b8DtvKaRzNoNGciyKF1',1,'2025-10-26 20:13:21','2025-10-26 20:13:21','2025-10-26 20:13:21');
/*!40000 ALTER TABLE `activations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `admin_notifications`
--
DROP TABLE IF EXISTS `admin_notifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_notifications` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`action_label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`action_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`read_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`permission` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin_notifications`
--
LOCK TABLES `admin_notifications` WRITE;
/*!40000 ALTER TABLE `admin_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `admin_notifications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `announcements`
--
DROP TABLE IF EXISTS `announcements`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcements` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`has_action` tinyint(1) NOT NULL DEFAULT '0',
`action_label` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`action_url` varchar(400) COLLATE utf8mb4_unicode_ci 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,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `announcements`
--
LOCK TABLES `announcements` WRITE;
/*!40000 ALTER TABLE `announcements` DISABLE KEYS */;
INSERT INTO `announcements` VALUES (1,'Announcement 1','Cyber Monday: Save big on the Creative Cloud All Apps plan for individuals through 2 Dec',0,NULL,NULL,0,1,'2025-10-27 03:13:52',NULL,1,'2025-10-26 20:13:52','2025-10-26 20:13:52'),(2,'Announcement 2','Students and teachers save a massive 71% on Creative Cloud All Apps',0,NULL,NULL,0,1,'2025-10-27 03:13:52',NULL,1,'2025-10-26 20:13:52','2025-10-26 20:13:52'),(3,'Announcement 3','Black Friday and Cyber Monday 2023 Deals for Motion Designers, grab it now!',0,NULL,NULL,0,1,'2025-10-27 03:13:52',NULL,1,'2025-10-26 20:13:52','2025-10-26 20:13:52');
/*!40000 ALTER TABLE `announcements` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `announcements_translations`
--
DROP TABLE IF EXISTS `announcements_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcements_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`announcements_id` bigint unsigned NOT NULL,
`content` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`lang_code`,`announcements_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `announcements_translations`
--
LOCK TABLES `announcements_translations` WRITE;
/*!40000 ALTER TABLE `announcements_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `announcements_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `audit_histories`
--
DROP TABLE IF EXISTS `audit_histories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `audit_histories` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL,
`user_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'Botble\\ACL\\Models\\User',
`module` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`request` longtext COLLATE utf8mb4_unicode_ci,
`action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_agent` text COLLATE utf8mb4_unicode_ci,
`ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`actor_id` bigint unsigned NOT NULL,
`actor_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'Botble\\ACL\\Models\\User',
`reference_id` bigint unsigned NOT NULL,
`reference_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `audit_histories_user_id_index` (`user_id`),
KEY `audit_histories_module_index` (`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `audit_histories`
--
LOCK TABLES `audit_histories` WRITE;
/*!40000 ALTER TABLE `audit_histories` DISABLE KEYS */;
/*!40000 ALTER TABLE `audit_histories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bs_packages`
--
DROP TABLE IF EXISTS `bs_packages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `bs_packages` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`price` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`annual_price` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`duration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'monthly',
`features` text COLLATE utf8mb4_unicode_ci,
`status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`is_popular` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bs_packages`
--
LOCK TABLES `bs_packages` WRITE;
/*!40000 ALTER TABLE `bs_packages` DISABLE KEYS */;
INSERT INTO `bs_packages` VALUES (1,'Trial Plan','Protect for testing','<section class=\"package\">\n <h2>Comprehensive Growth Package</h2>\n <p class=\"description\">Experience unparalleled business growth with our Comprehensive Growth Package. This package is designed to elevate your business to new heights by providing a range of strategic and creative services.</p>\n\n <h3>Services Included:</h3>\n <ul>\n <li><strong>Custom Branding:</strong> Our team of experts will work closely with you to develop a unique and compelling brand identity that resonates with your target audience.</li>\n <li><strong>Website Overhaul:</strong> Your existing website will undergo a complete makeover to enhance user experience, improve functionality, and drive conversions.</li>\n <li><strong>Content Strategy:</strong> We will develop a content strategy that aligns with your business goals, creating engaging and relevant content to attract and retain customers.</li>\n <li><strong>Search Engine Optimization (SEO):</strong> Our SEO specialists will optimize your website to ensure it ranks high on search engine results pages, driving organic traffic.</li>\n <li><strong>Social Media Mastery:</strong> We\'ll manage your social media platforms, creating compelling posts, engaging with your audience, and running targeted ad campaigns.</li>\n <li><strong>Email Marketing Campaigns:</strong> We\'ll design and execute effective email marketing campaigns to nurture leads and keep your customers informed.</li>\n <li><strong>Performance Analytics:</strong> Gain insights into your business\'s performance through in-depth analytics, helping you make informed decisions.</li>\n </ul>\n\n <h3>Package Benefits:</h3>\n <ul>\n <li>Strategic business growth tailored to your unique needs.</li>\n <li>Increased brand visibility and recognition.</li>\n <li>Higher website traffic and improved user engagement.</li>\n <li>Effective customer engagement through various channels.</li>\n <li>Measurable results with data-driven insights.</li>\n </ul>\n</section>\n','FREE','FREE','monthly','+ Brand Awareness Ads\n+ Retargeting Ads\n+ Contextual, Demographic\n+ Facebook Advertising\n- Global Certificates\n- Snapchat Advertising\n- TikTok Advertising\n- Advanced List Building','published',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(2,'Standard','Advanced project','<section class=\"package\">\n <h2>Comprehensive Growth Package</h2>\n <p class=\"description\">Experience unparalleled business growth with our Comprehensive Growth Package. This package is designed to elevate your business to new heights by providing a range of strategic and creative services.</p>\n\n <h3>Services Included:</h3>\n <ul>\n <li><strong>Custom Branding:</strong> Our team of experts will work closely with you to develop a unique and compelling brand identity that resonates with your target audience.</li>\n <li><strong>Website Overhaul:</strong> Your existing website will undergo a complete makeover to enhance user experience, improve functionality, and drive conversions.</li>\n <li><strong>Content Strategy:</strong> We will develop a content strategy that aligns with your business goals, creating engaging and relevant content to attract and retain customers.</li>\n <li><strong>Search Engine Optimization (SEO):</strong> Our SEO specialists will optimize your website to ensure it ranks high on search engine results pages, driving organic traffic.</li>\n <li><strong>Social Media Mastery:</strong> We\'ll manage your social media platforms, creating compelling posts, engaging with your audience, and running targeted ad campaigns.</li>\n <li><strong>Email Marketing Campaigns:</strong> We\'ll design and execute effective email marketing campaigns to nurture leads and keep your customers informed.</li>\n <li><strong>Performance Analytics:</strong> Gain insights into your business\'s performance through in-depth analytics, helping you make informed decisions.</li>\n </ul>\n\n <h3>Package Benefits:</h3>\n <ul>\n <li>Strategic business growth tailored to your unique needs.</li>\n <li>Increased brand visibility and recognition.</li>\n <li>Higher website traffic and improved user engagement.</li>\n <li>Effective customer engagement through various channels.</li>\n <li>Measurable results with data-driven insights.</li>\n </ul>\n</section>\n','$29','$348','monthly','+ Brand Awareness Ads\n+ Retargeting Ads\n+ Contextual, Demographic\n+ Facebook Advertising\n+ Global Certificates\n- Snapchat Advertising\n- TikTok Advertising\n- Advanced List Building','published',1,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(3,'Business','Protect for testing','<section class=\"package\">\n <h2>Comprehensive Growth Package</h2>\n <p class=\"description\">Experience unparalleled business growth with our Comprehensive Growth Package. This package is designed to elevate your business to new heights by providing a range of strategic and creative services.</p>\n\n <h3>Services Included:</h3>\n <ul>\n <li><strong>Custom Branding:</strong> Our team of experts will work closely with you to develop a unique and compelling brand identity that resonates with your target audience.</li>\n <li><strong>Website Overhaul:</strong> Your existing website will undergo a complete makeover to enhance user experience, improve functionality, and drive conversions.</li>\n <li><strong>Content Strategy:</strong> We will develop a content strategy that aligns with your business goals, creating engaging and relevant content to attract and retain customers.</li>\n <li><strong>Search Engine Optimization (SEO):</strong> Our SEO specialists will optimize your website to ensure it ranks high on search engine results pages, driving organic traffic.</li>\n <li><strong>Social Media Mastery:</strong> We\'ll manage your social media platforms, creating compelling posts, engaging with your audience, and running targeted ad campaigns.</li>\n <li><strong>Email Marketing Campaigns:</strong> We\'ll design and execute effective email marketing campaigns to nurture leads and keep your customers informed.</li>\n <li><strong>Performance Analytics:</strong> Gain insights into your business\'s performance through in-depth analytics, helping you make informed decisions.</li>\n </ul>\n\n <h3>Package Benefits:</h3>\n <ul>\n <li>Strategic business growth tailored to your unique needs.</li>\n <li>Increased brand visibility and recognition.</li>\n <li>Higher website traffic and improved user engagement.</li>\n <li>Effective customer engagement through various channels.</li>\n <li>Measurable results with data-driven insights.</li>\n </ul>\n</section>\n','$99','$1,188','monthly','+ Brand Awareness Ads\n+ Retargeting Ads\n+ Contextual, Demographic\n+ Facebook Advertising\n+ Global Certificates\n+ Snapchat Advertising\n- TikTok Advertising\n- Advanced List Building','published',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(4,'Enterprise','Protect for testing','<section class=\"package\">\n <h2>Comprehensive Growth Package</h2>\n <p class=\"description\">Experience unparalleled business growth with our Comprehensive Growth Package. This package is designed to elevate your business to new heights by providing a range of strategic and creative services.</p>\n\n <h3>Services Included:</h3>\n <ul>\n <li><strong>Custom Branding:</strong> Our team of experts will work closely with you to develop a unique and compelling brand identity that resonates with your target audience.</li>\n <li><strong>Website Overhaul:</strong> Your existing website will undergo a complete makeover to enhance user experience, improve functionality, and drive conversions.</li>\n <li><strong>Content Strategy:</strong> We will develop a content strategy that aligns with your business goals, creating engaging and relevant content to attract and retain customers.</li>\n <li><strong>Search Engine Optimization (SEO):</strong> Our SEO specialists will optimize your website to ensure it ranks high on search engine results pages, driving organic traffic.</li>\n <li><strong>Social Media Mastery:</strong> We\'ll manage your social media platforms, creating compelling posts, engaging with your audience, and running targeted ad campaigns.</li>\n <li><strong>Email Marketing Campaigns:</strong> We\'ll design and execute effective email marketing campaigns to nurture leads and keep your customers informed.</li>\n <li><strong>Performance Analytics:</strong> Gain insights into your business\'s performance through in-depth analytics, helping you make informed decisions.</li>\n </ul>\n\n <h3>Package Benefits:</h3>\n <ul>\n <li>Strategic business growth tailored to your unique needs.</li>\n <li>Increased brand visibility and recognition.</li>\n <li>Higher website traffic and improved user engagement.</li>\n <li>Effective customer engagement through various channels.</li>\n <li>Measurable results with data-driven insights.</li>\n </ul>\n</section>\n','$299','$3,588','monthly','+ Brand Awareness Ads\n+ Retargeting Ads\n+ Contextual, Demographic\n+ Facebook Advertising\n+ Global Certificates\n+ Snapchat Advertising\n+ TikTok Advertising\n+ Advanced List Building','published',0,'2025-10-26 20:13:49','2025-10-26 20:13:49');
/*!40000 ALTER TABLE `bs_packages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bs_packages_translations`
--
DROP TABLE IF EXISTS `bs_packages_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `bs_packages_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`bs_packages_id` bigint unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci,
`price` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`annual_price` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`features` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`lang_code`,`bs_packages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bs_packages_translations`
--
LOCK TABLES `bs_packages_translations` WRITE;
/*!40000 ALTER TABLE `bs_packages_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `bs_packages_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bs_service_categories`
--
DROP TABLE IF EXISTS `bs_service_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `bs_service_categories` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`parent_id` bigint unsigned DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` tinyint NOT NULL DEFAULT '0',
`status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bs_service_categories_parent_id_index` (`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bs_service_categories`
--
LOCK TABLES `bs_service_categories` WRITE;
/*!40000 ALTER TABLE `bs_service_categories` DISABLE KEYS */;
INSERT INTO `bs_service_categories` VALUES (1,NULL,'Cross platform',NULL,NULL,1,'published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(2,NULL,'Digital marketing',NULL,NULL,2,'published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(3,NULL,'Social media',NULL,NULL,3,'published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(4,NULL,'Standard',NULL,NULL,4,'published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(5,NULL,'Creation',NULL,NULL,5,'published','2025-10-26 20:13:49','2025-10-26 20:13:49');
/*!40000 ALTER TABLE `bs_service_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bs_service_categories_translations`
--
DROP TABLE IF EXISTS `bs_service_categories_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `bs_service_categories_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`bs_service_categories_id` bigint unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`bs_service_categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bs_service_categories_translations`
--
LOCK TABLES `bs_service_categories_translations` WRITE;
/*!40000 ALTER TABLE `bs_service_categories_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `bs_service_categories_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bs_services`
--
DROP TABLE IF EXISTS `bs_services`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `bs_services` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`category_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci,
`is_featured` tinyint(1) NOT NULL DEFAULT '0',
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`images` text COLLATE utf8mb4_unicode_ci,
`views` int NOT NULL DEFAULT '0',
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bs_services_category_id_index` (`category_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bs_services`
--
LOCK TABLES `bs_services` WRITE;
/*!40000 ALTER TABLE `bs_services` DISABLE KEYS */;
INSERT INTO `bs_services` VALUES (1,4,'TechBoost Solutions','We offer specialized departments for continental transports.','<h3>Description:</h3>\n<p>Precision Financial Advisors is a trusted partner dedicated to optimizing your financial future. Our team of\n certified financial experts is committed to providing comprehensive and personalized financial planning and\n investment management services. With years of experience and a deep understanding of the financial landscape, we\n tailor strategies to align with your unique goals and aspirations.</p>\n\n<img src=\"http://localhost/storage/general/question1.png\" alt=\"Precision Financial Advisors\">\n\n<h3>Our Approach:</h3>\n<p>At Precision Financial Advisors, we believe that each individual\'s financial journey is unique. That\'s why we take\n a holistic approach, starting with an in-depth analysis of your current financial situation and understanding your\n long-term objectives. Our advisors will work closely with you to develop a customized roadmap that encompasses all\n aspects of wealth management.</p>\n\n<h3>Comprehensive Financial Planning:</h3>\n<p>Our comprehensive financial planning services cover a wide range of areas, including retirement planning, college\n funding, estate planning, tax strategies, and risk management. We focus on understanding your short-term needs and\n long-term aspirations to create a roadmap that will guide you through life\'s financial milestones.</p>\n\n<h3>Investment Management:</h3>\n<p>With access to an array of investment options, we design a tailored investment portfolio that aligns with your risk\n tolerance and financial goals. Our disciplined investment approach combines research, diversification, and ongoing\n monitoring to optimize your portfolio\'s performance.</p>\n\n<h3>Retirement Planning:</h3>\n<p>We understand the importance of a secure retirement. Our retirement planning services assess your current savings,\n estimate future retirement expenses, and strategize to build a retirement corpus that can sustain your desired\n lifestyle.</p>\n\n<h3>Tax Optimization:</h3>\n<p>Our tax experts work to minimize your tax liabilities while staying compliant with all relevant laws and\n regulations. We analyze your financial situation to identify opportunities for tax savings and implement strategies\n to optimize your tax efficiency.</p>\n\n<h3>Estate Planning:</h3>\n<p>Preserving and passing on your wealth efficiently is crucial. Our estate planning services ensure your assets are\n distributed according to your wishes, minimize estate taxes, and protect your legacy for future generations.</p>\n\n<h3>Risk Management:</h3>\n<p>Life is full of uncertainties, and we help you prepare for unexpected events. We assess your risk exposure and\n recommend insurance solutions, including life insurance, disability insurance, and long-term care insurance, to\n safeguard your financial well-being.</p>\n\n<h3>Ongoing Guidance and Support:</h3>\n<p>At Precision Financial Advisors, our commitment to your financial success doesn\'t end with a plan or an investment\n portfolio. We provide ongoing monitoring, regular reviews, and adjustments as needed to keep your financial strategy\n on track amidst changing circumstances.</p>\n\n<h3>Your Financial Partner:</h3>\n<p>As your dedicated financial partner, we prioritize transparency, integrity, and a client-centric approach. Our goal\n is to build a long-term relationship based on trust and confidence, helping you navigate through life\'s financial\n complexities and achieve your dreams.</p>\n\n<h3>Contact Us:</h3>\n<p>If you\'re ready to take control of your financial future, get in touch with us today. Our team of experienced\n financial advisors is here to guide you on your journey towards financial prosperity and security.</p>\n\n<img src=\"http://localhost/storage/general/question2.png\" alt=\"Financial Success\">\n',1,'general/banner-help-center-1.png','[\"general\\/banner-help-center-1.png\"]',605,'published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(2,1,'EcoGreen Landscaping','We offer specialized departments for continental transports.','<h3>Description:</h3>\n<p>Precision Financial Advisors is a trusted partner dedicated to optimizing your financial future. Our team of\n certified financial experts is committed to providing comprehensive and personalized financial planning and\n investment management services. With years of experience and a deep understanding of the financial landscape, we\n tailor strategies to align with your unique goals and aspirations.</p>\n\n<img src=\"http://localhost/storage/general/question1.png\" alt=\"Precision Financial Advisors\">\n\n<h3>Our Approach:</h3>\n<p>At Precision Financial Advisors, we believe that each individual\'s financial journey is unique. That\'s why we take\n a holistic approach, starting with an in-depth analysis of your current financial situation and understanding your\n long-term objectives. Our advisors will work closely with you to develop a customized roadmap that encompasses all\n aspects of wealth management.</p>\n\n<h3>Comprehensive Financial Planning:</h3>\n<p>Our comprehensive financial planning services cover a wide range of areas, including retirement planning, college\n funding, estate planning, tax strategies, and risk management. We focus on understanding your short-term needs and\n long-term aspirations to create a roadmap that will guide you through life\'s financial milestones.</p>\n\n<h3>Investment Management:</h3>\n<p>With access to an array of investment options, we design a tailored investment portfolio that aligns with your risk\n tolerance and financial goals. Our disciplined investment approach combines research, diversification, and ongoing\n monitoring to optimize your portfolio\'s performance.</p>\n\n<h3>Retirement Planning:</h3>\n<p>We understand the importance of a secure retirement. Our retirement planning services assess your current savings,\n estimate future retirement expenses, and strategize to build a retirement corpus that can sustain your desired\n lifestyle.</p>\n\n<h3>Tax Optimization:</h3>\n<p>Our tax experts work to minimize your tax liabilities while staying compliant with all relevant laws and\n regulations. We analyze your financial situation to identify opportunities for tax savings and implement strategies\n to optimize your tax efficiency.</p>\n\n<h3>Estate Planning:</h3>\n<p>Preserving and passing on your wealth efficiently is crucial. Our estate planning services ensure your assets are\n distributed according to your wishes, minimize estate taxes, and protect your legacy for future generations.</p>\n\n<h3>Risk Management:</h3>\n<p>Life is full of uncertainties, and we help you prepare for unexpected events. We assess your risk exposure and\n recommend insurance solutions, including life insurance, disability insurance, and long-term care insurance, to\n safeguard your financial well-being.</p>\n\n<h3>Ongoing Guidance and Support:</h3>\n<p>At Precision Financial Advisors, our commitment to your financial success doesn\'t end with a plan or an investment\n portfolio. We provide ongoing monitoring, regular reviews, and adjustments as needed to keep your financial strategy\n on track amidst changing circumstances.</p>\n\n<h3>Your Financial Partner:</h3>\n<p>As your dedicated financial partner, we prioritize transparency, integrity, and a client-centric approach. Our goal\n is to build a long-term relationship based on trust and confidence, helping you navigate through life\'s financial\n complexities and achieve your dreams.</p>\n\n<h3>Contact Us:</h3>\n<p>If you\'re ready to take control of your financial future, get in touch with us today. Our team of experienced\n financial advisors is here to guide you on your journey towards financial prosperity and security.</p>\n\n<img src=\"http://localhost/storage/general/question2.png\" alt=\"Financial Success\">\n',0,'general/banner-help-center-2.png','[\"general\\/banner-help-center-2.png\"]',4671,'published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(3,3,'Precision Financial Advisors','We offer specialized departments for continental transports.','<h3>Description:</h3>\n<p>Precision Financial Advisors is a trusted partner dedicated to optimizing your financial future. Our team of\n certified financial experts is committed to providing comprehensive and personalized financial planning and\n investment management services. With years of experience and a deep understanding of the financial landscape, we\n tailor strategies to align with your unique goals and aspirations.</p>\n\n<img src=\"http://localhost/storage/general/question1.png\" alt=\"Precision Financial Advisors\">\n\n<h3>Our Approach:</h3>\n<p>At Precision Financial Advisors, we believe that each individual\'s financial journey is unique. That\'s why we take\n a holistic approach, starting with an in-depth analysis of your current financial situation and understanding your\n long-term objectives. Our advisors will work closely with you to develop a customized roadmap that encompasses all\n aspects of wealth management.</p>\n\n<h3>Comprehensive Financial Planning:</h3>\n<p>Our comprehensive financial planning services cover a wide range of areas, including retirement planning, college\n funding, estate planning, tax strategies, and risk management. We focus on understanding your short-term needs and\n long-term aspirations to create a roadmap that will guide you through life\'s financial milestones.</p>\n\n<h3>Investment Management:</h3>\n<p>With access to an array of investment options, we design a tailored investment portfolio that aligns with your risk\n tolerance and financial goals. Our disciplined investment approach combines research, diversification, and ongoing\n monitoring to optimize your portfolio\'s performance.</p>\n\n<h3>Retirement Planning:</h3>\n<p>We understand the importance of a secure retirement. Our retirement planning services assess your current savings,\n estimate future retirement expenses, and strategize to build a retirement corpus that can sustain your desired\n lifestyle.</p>\n\n<h3>Tax Optimization:</h3>\n<p>Our tax experts work to minimize your tax liabilities while staying compliant with all relevant laws and\n regulations. We analyze your financial situation to identify opportunities for tax savings and implement strategies\n to optimize your tax efficiency.</p>\n\n<h3>Estate Planning:</h3>\n<p>Preserving and passing on your wealth efficiently is crucial. Our estate planning services ensure your assets are\n distributed according to your wishes, minimize estate taxes, and protect your legacy for future generations.</p>\n\n<h3>Risk Management:</h3>\n<p>Life is full of uncertainties, and we help you prepare for unexpected events. We assess your risk exposure and\n recommend insurance solutions, including life insurance, disability insurance, and long-term care insurance, to\n safeguard your financial well-being.</p>\n\n<h3>Ongoing Guidance and Support:</h3>\n<p>At Precision Financial Advisors, our commitment to your financial success doesn\'t end with a plan or an investment\n portfolio. We provide ongoing monitoring, regular reviews, and adjustments as needed to keep your financial strategy\n on track amidst changing circumstances.</p>\n\n<h3>Your Financial Partner:</h3>\n<p>As your dedicated financial partner, we prioritize transparency, integrity, and a client-centric approach. Our goal\n is to build a long-term relationship based on trust and confidence, helping you navigate through life\'s financial\n complexities and achieve your dreams.</p>\n\n<h3>Contact Us:</h3>\n<p>If you\'re ready to take control of your financial future, get in touch with us today. Our team of experienced\n financial advisors is here to guide you on your journey towards financial prosperity and security.</p>\n\n<img src=\"http://localhost/storage/general/question2.png\" alt=\"Financial Success\">\n',0,'general/box-image-1.png','[\"general\\/box-image-1.png\"]',8213,'published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(4,2,'HealthHub Wellness Programs','We offer specialized departments for continental transports.','<h3>Description:</h3>\n<p>Precision Financial Advisors is a trusted partner dedicated to optimizing your financial future. Our team of\n certified financial experts is committed to providing comprehensive and personalized financial planning and\n investment management services. With years of experience and a deep understanding of the financial landscape, we\n tailor strategies to align with your unique goals and aspirations.</p>\n\n<img src=\"http://localhost/storage/general/question1.png\" alt=\"Precision Financial Advisors\">\n\n<h3>Our Approach:</h3>\n<p>At Precision Financial Advisors, we believe that each individual\'s financial journey is unique. That\'s why we take\n a holistic approach, starting with an in-depth analysis of your current financial situation and understanding your\n long-term objectives. Our advisors will work closely with you to develop a customized roadmap that encompasses all\n aspects of wealth management.</p>\n\n<h3>Comprehensive Financial Planning:</h3>\n<p>Our comprehensive financial planning services cover a wide range of areas, including retirement planning, college\n funding, estate planning, tax strategies, and risk management. We focus on understanding your short-term needs and\n long-term aspirations to create a roadmap that will guide you through life\'s financial milestones.</p>\n\n<h3>Investment Management:</h3>\n<p>With access to an array of investment options, we design a tailored investment portfolio that aligns with your risk\n tolerance and financial goals. Our disciplined investment approach combines research, diversification, and ongoing\n monitoring to optimize your portfolio\'s performance.</p>\n\n<h3>Retirement Planning:</h3>\n<p>We understand the importance of a secure retirement. Our retirement planning services assess your current savings,\n estimate future retirement expenses, and strategize to build a retirement corpus that can sustain your desired\n lifestyle.</p>\n\n<h3>Tax Optimization:</h3>\n<p>Our tax experts work to minimize your tax liabilities while staying compliant with all relevant laws and\n regulations. We analyze your financial situation to identify opportunities for tax savings and implement strategies\n to optimize your tax efficiency.</p>\n\n<h3>Estate Planning:</h3>\n<p>Preserving and passing on your wealth efficiently is crucial. Our estate planning services ensure your assets are\n distributed according to your wishes, minimize estate taxes, and protect your legacy for future generations.</p>\n\n<h3>Risk Management:</h3>\n<p>Life is full of uncertainties, and we help you prepare for unexpected events. We assess your risk exposure and\n recommend insurance solutions, including life insurance, disability insurance, and long-term care insurance, to\n safeguard your financial well-being.</p>\n\n<h3>Ongoing Guidance and Support:</h3>\n<p>At Precision Financial Advisors, our commitment to your financial success doesn\'t end with a plan or an investment\n portfolio. We provide ongoing monitoring, regular reviews, and adjustments as needed to keep your financial strategy\n on track amidst changing circumstances.</p>\n\n<h3>Your Financial Partner:</h3>\n<p>As your dedicated financial partner, we prioritize transparency, integrity, and a client-centric approach. Our goal\n is to build a long-term relationship based on trust and confidence, helping you navigate through life\'s financial\n complexities and achieve your dreams.</p>\n\n<h3>Contact Us:</h3>\n<p>If you\'re ready to take control of your financial future, get in touch with us today. Our team of experienced\n financial advisors is here to guide you on your journey towards financial prosperity and security.</p>\n\n<img src=\"http://localhost/storage/general/question2.png\" alt=\"Financial Success\">\n',0,'general/box-image-2.png','[\"general\\/box-image-2.png\"]',4055,'published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(5,3,'SwiftDelivery Logistics','We offer specialized departments for continental transports.','<h3>Description:</h3>\n<p>Precision Financial Advisors is a trusted partner dedicated to optimizing your financial future. Our team of\n certified financial experts is committed to providing comprehensive and personalized financial planning and\n investment management services. With years of experience and a deep understanding of the financial landscape, we\n tailor strategies to align with your unique goals and aspirations.</p>\n\n<img src=\"http://localhost/storage/general/question1.png\" alt=\"Precision Financial Advisors\">\n\n<h3>Our Approach:</h3>\n<p>At Precision Financial Advisors, we believe that each individual\'s financial journey is unique. That\'s why we take\n a holistic approach, starting with an in-depth analysis of your current financial situation and understanding your\n long-term objectives. Our advisors will work closely with you to develop a customized roadmap that encompasses all\n aspects of wealth management.</p>\n\n<h3>Comprehensive Financial Planning:</h3>\n<p>Our comprehensive financial planning services cover a wide range of areas, including retirement planning, college\n funding, estate planning, tax strategies, and risk management. We focus on understanding your short-term needs and\n long-term aspirations to create a roadmap that will guide you through life\'s financial milestones.</p>\n\n<h3>Investment Management:</h3>\n<p>With access to an array of investment options, we design a tailored investment portfolio that aligns with your risk\n tolerance and financial goals. Our disciplined investment approach combines research, diversification, and ongoing\n monitoring to optimize your portfolio\'s performance.</p>\n\n<h3>Retirement Planning:</h3>\n<p>We understand the importance of a secure retirement. Our retirement planning services assess your current savings,\n estimate future retirement expenses, and strategize to build a retirement corpus that can sustain your desired\n lifestyle.</p>\n\n<h3>Tax Optimization:</h3>\n<p>Our tax experts work to minimize your tax liabilities while staying compliant with all relevant laws and\n regulations. We analyze your financial situation to identify opportunities for tax savings and implement strategies\n to optimize your tax efficiency.</p>\n\n<h3>Estate Planning:</h3>\n<p>Preserving and passing on your wealth efficiently is crucial. Our estate planning services ensure your assets are\n distributed according to your wishes, minimize estate taxes, and protect your legacy for future generations.</p>\n\n<h3>Risk Management:</h3>\n<p>Life is full of uncertainties, and we help you prepare for unexpected events. We assess your risk exposure and\n recommend insurance solutions, including life insurance, disability insurance, and long-term care insurance, to\n safeguard your financial well-being.</p>\n\n<h3>Ongoing Guidance and Support:</h3>\n<p>At Precision Financial Advisors, our commitment to your financial success doesn\'t end with a plan or an investment\n portfolio. We provide ongoing monitoring, regular reviews, and adjustments as needed to keep your financial strategy\n on track amidst changing circumstances.</p>\n\n<h3>Your Financial Partner:</h3>\n<p>As your dedicated financial partner, we prioritize transparency, integrity, and a client-centric approach. Our goal\n is to build a long-term relationship based on trust and confidence, helping you navigate through life\'s financial\n complexities and achieve your dreams.</p>\n\n<h3>Contact Us:</h3>\n<p>If you\'re ready to take control of your financial future, get in touch with us today. Our team of experienced\n financial advisors is here to guide you on your journey towards financial prosperity and security.</p>\n\n<img src=\"http://localhost/storage/general/question2.png\" alt=\"Financial Success\">\n',0,'general/branding-img-1.png','[\"general\\/branding-img-1.png\"]',7313,'published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(6,3,'In-house Logistics Services','We offer specialized departments for continental transports.','<h3>Description:</h3>\n<p>Precision Financial Advisors is a trusted partner dedicated to optimizing your financial future. Our team of\n certified financial experts is committed to providing comprehensive and personalized financial planning and\n investment management services. With years of experience and a deep understanding of the financial landscape, we\n tailor strategies to align with your unique goals and aspirations.</p>\n\n<img src=\"http://localhost/storage/general/question1.png\" alt=\"Precision Financial Advisors\">\n\n<h3>Our Approach:</h3>\n<p>At Precision Financial Advisors, we believe that each individual\'s financial journey is unique. That\'s why we take\n a holistic approach, starting with an in-depth analysis of your current financial situation and understanding your\n long-term objectives. Our advisors will work closely with you to develop a customized roadmap that encompasses all\n aspects of wealth management.</p>\n\n<h3>Comprehensive Financial Planning:</h3>\n<p>Our comprehensive financial planning services cover a wide range of areas, including retirement planning, college\n funding, estate planning, tax strategies, and risk management. We focus on understanding your short-term needs and\n long-term aspirations to create a roadmap that will guide you through life\'s financial milestones.</p>\n\n<h3>Investment Management:</h3>\n<p>With access to an array of investment options, we design a tailored investment portfolio that aligns with your risk\n tolerance and financial goals. Our disciplined investment approach combines research, diversification, and ongoing\n monitoring to optimize your portfolio\'s performance.</p>\n\n<h3>Retirement Planning:</h3>\n<p>We understand the importance of a secure retirement. Our retirement planning services assess your current savings,\n estimate future retirement expenses, and strategize to build a retirement corpus that can sustain your desired\n lifestyle.</p>\n\n<h3>Tax Optimization:</h3>\n<p>Our tax experts work to minimize your tax liabilities while staying compliant with all relevant laws and\n regulations. We analyze your financial situation to identify opportunities for tax savings and implement strategies\n to optimize your tax efficiency.</p>\n\n<h3>Estate Planning:</h3>\n<p>Preserving and passing on your wealth efficiently is crucial. Our estate planning services ensure your assets are\n distributed according to your wishes, minimize estate taxes, and protect your legacy for future generations.</p>\n\n<h3>Risk Management:</h3>\n<p>Life is full of uncertainties, and we help you prepare for unexpected events. We assess your risk exposure and\n recommend insurance solutions, including life insurance, disability insurance, and long-term care insurance, to\n safeguard your financial well-being.</p>\n\n<h3>Ongoing Guidance and Support:</h3>\n<p>At Precision Financial Advisors, our commitment to your financial success doesn\'t end with a plan or an investment\n portfolio. We provide ongoing monitoring, regular reviews, and adjustments as needed to keep your financial strategy\n on track amidst changing circumstances.</p>\n\n<h3>Your Financial Partner:</h3>\n<p>As your dedicated financial partner, we prioritize transparency, integrity, and a client-centric approach. Our goal\n is to build a long-term relationship based on trust and confidence, helping you navigate through life\'s financial\n complexities and achieve your dreams.</p>\n\n<h3>Contact Us:</h3>\n<p>If you\'re ready to take control of your financial future, get in touch with us today. Our team of experienced\n financial advisors is here to guide you on your journey towards financial prosperity and security.</p>\n\n<img src=\"http://localhost/storage/general/question2.png\" alt=\"Financial Success\">\n',0,'general/connect-with-us-1.png','[\"general\\/connect-with-us-1.png\"]',6161,'published','2025-10-26 20:13:49','2025-10-26 20:13:49');
/*!40000 ALTER TABLE `bs_services` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bs_services_translations`
--
DROP TABLE IF EXISTS `bs_services_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `bs_services_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`bs_services_id` bigint unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`lang_code`,`bs_services_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bs_services_translations`
--
LOCK TABLES `bs_services_translations` WRITE;
/*!40000 ALTER TABLE `bs_services_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `bs_services_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache`
--
DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache` (
`key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`expiration` int NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache`
--
LOCK TABLES `cache` WRITE;
/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache_locks`
--
DROP TABLE IF EXISTS `cache_locks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache_locks` (
`key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`owner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`expiration` int NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache_locks`
--
LOCK TABLES `cache_locks` WRITE;
/*!40000 ALTER TABLE `cache_locks` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_locks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `careers`
--
DROP TABLE IF EXISTS `careers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `careers` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`location` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`salary` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `careers`
--
LOCK TABLES `careers` WRITE;
/*!40000 ALTER TABLE `careers` DISABLE KEYS */;
INSERT INTO `careers` VALUES (1,'Senior Full Stack Engineer, Creator Success Full Time','Lake Aidenview, Niue','$1,601.00','Constantly changing work patterns and norms, and the need for organizational resiliency','<h4 class=\"color-brand-1\">Responsibilities</h4>\n<p>Product knowledge: Deeply understand the technology and features of the product area to which you are assigned.</p>\n<p>Research: Provide human and business impact and insights for products.</p>\n<p>Deliverables: Create deliverables for your product area (for example competitive analyses, user flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user problems through the user experience.</p>\n<p>Communication: Communicate the results of UX activities within your product area to the design team department, cross-functional partners within your product area, and other interested Superformula team members using clear language that simplifies complexity.</p>\n<h4 class=\"color-brand-1\">Requirements</h4>\n<ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n</ul>\n<h4 class=\"color-brand-1\">What\'s on Offer </h4>\n<ul>\n <li>Annual bonus and holidays, social welfare, and health checks.</li>\n <li>Training and attachment in Taiwan and other Greater China branches.</li>\n</ul>\n','published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(2,'Data Science Specialist, Analytics Division','East Abigaleburgh, Equatorial Guinea','$3,353.00','Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla','<h4 class=\"color-brand-1\">Responsibilities</h4>\n<p>Product knowledge: Deeply understand the technology and features of the product area to which you are assigned.</p>\n<p>Research: Provide human and business impact and insights for products.</p>\n<p>Deliverables: Create deliverables for your product area (for example competitive analyses, user flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user problems through the user experience.</p>\n<p>Communication: Communicate the results of UX activities within your product area to the design team department, cross-functional partners within your product area, and other interested Superformula team members using clear language that simplifies complexity.</p>\n<h4 class=\"color-brand-1\">Requirements</h4>\n<ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n</ul>\n<h4 class=\"color-brand-1\">What\'s on Offer </h4>\n<ul>\n <li>Annual bonus and holidays, social welfare, and health checks.</li>\n <li>Training and attachment in Taiwan and other Greater China branches.</li>\n</ul>\n','published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(3,'Product Marketing Manager, Growth Team','New Madie, Latvia','$3,538.00','Crafting compelling marketing strategies to drive user acquisition and retention','<h4 class=\"color-brand-1\">Responsibilities</h4>\n<p>Product knowledge: Deeply understand the technology and features of the product area to which you are assigned.</p>\n<p>Research: Provide human and business impact and insights for products.</p>\n<p>Deliverables: Create deliverables for your product area (for example competitive analyses, user flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user problems through the user experience.</p>\n<p>Communication: Communicate the results of UX activities within your product area to the design team department, cross-functional partners within your product area, and other interested Superformula team members using clear language that simplifies complexity.</p>\n<h4 class=\"color-brand-1\">Requirements</h4>\n<ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n</ul>\n<h4 class=\"color-brand-1\">What\'s on Offer </h4>\n<ul>\n <li>Annual bonus and holidays, social welfare, and health checks.</li>\n <li>Training and attachment in Taiwan and other Greater China branches.</li>\n</ul>\n','published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(4,'UX/UI Designer, User Experience Team','Elenorview, New Zealand','$5,715.00','Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.','<h4 class=\"color-brand-1\">Responsibilities</h4>\n<p>Product knowledge: Deeply understand the technology and features of the product area to which you are assigned.</p>\n<p>Research: Provide human and business impact and insights for products.</p>\n<p>Deliverables: Create deliverables for your product area (for example competitive analyses, user flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user problems through the user experience.</p>\n<p>Communication: Communicate the results of UX activities within your product area to the design team department, cross-functional partners within your product area, and other interested Superformula team members using clear language that simplifies complexity.</p>\n<h4 class=\"color-brand-1\">Requirements</h4>\n<ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n</ul>\n<h4 class=\"color-brand-1\">What\'s on Offer </h4>\n<ul>\n <li>Annual bonus and holidays, social welfare, and health checks.</li>\n <li>Training and attachment in Taiwan and other Greater China branches.</li>\n</ul>\n','published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(5,'Operations Manager, Supply Chain Division','Kamronton, Sweden','$1,977.00','Ensuring smooth and efficient supply chain operations for timely product delivery','<h4 class=\"color-brand-1\">Responsibilities</h4>\n<p>Product knowledge: Deeply understand the technology and features of the product area to which you are assigned.</p>\n<p>Research: Provide human and business impact and insights for products.</p>\n<p>Deliverables: Create deliverables for your product area (for example competitive analyses, user flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user problems through the user experience.</p>\n<p>Communication: Communicate the results of UX activities within your product area to the design team department, cross-functional partners within your product area, and other interested Superformula team members using clear language that simplifies complexity.</p>\n<h4 class=\"color-brand-1\">Requirements</h4>\n<ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n</ul>\n<h4 class=\"color-brand-1\">What\'s on Offer </h4>\n<ul>\n <li>Annual bonus and holidays, social welfare, and health checks.</li>\n <li>Training and attachment in Taiwan and other Greater China branches.</li>\n</ul>\n','published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(6,'Financial Analyst, Investment Group','New Berta, Rwanda','$3,567.00','Analyzing market trends and investment opportunities for optimal financial outcomes','<h4 class=\"color-brand-1\">Responsibilities</h4>\n<p>Product knowledge: Deeply understand the technology and features of the product area to which you are assigned.</p>\n<p>Research: Provide human and business impact and insights for products.</p>\n<p>Deliverables: Create deliverables for your product area (for example competitive analyses, user flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user problems through the user experience.</p>\n<p>Communication: Communicate the results of UX activities within your product area to the design team department, cross-functional partners within your product area, and other interested Superformula team members using clear language that simplifies complexity.</p>\n<h4 class=\"color-brand-1\">Requirements</h4>\n<ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n</ul>\n<h4 class=\"color-brand-1\">What\'s on Offer </h4>\n<ul>\n <li>Annual bonus and holidays, social welfare, and health checks.</li>\n <li>Training and attachment in Taiwan and other Greater China branches.</li>\n</ul>\n','published','2025-10-26 20:13:49','2025-10-26 20:13:49');
/*!40000 ALTER TABLE `careers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `careers_translations`
--
DROP TABLE IF EXISTS `careers_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `careers_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`careers_id` bigint unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`location` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`salary` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` longtext COLLATE utf8mb4_unicode_ci,
`content` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`lang_code`,`careers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `careers_translations`
--
LOCK TABLES `careers_translations` WRITE;
/*!40000 ALTER TABLE `careers_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `careers_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `categories`
--
DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`parent_id` bigint unsigned NOT NULL DEFAULT '0',
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`author_id` bigint unsigned DEFAULT NULL,
`author_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
`icon` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` int unsigned NOT NULL DEFAULT '0',
`is_featured` tinyint NOT NULL DEFAULT '0',
`is_default` tinyint unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `categories_parent_id_index` (`parent_id`),
KEY `categories_status_index` (`status`),
KEY `categories_created_at_index` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `categories`
--
LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES (1,'Design',0,'Maiores nostrum officia omnis mollitia et qui repellat. Accusantium veniam corrupti aliquid itaque natus. Delectus ut est beatae nam molestias. Voluptatibus ipsa blanditiis sit et labore.','published',1,'Botble\\ACL\\Models\\User',NULL,0,0,1,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(2,'Lifestyle',0,'Assumenda et doloribus occaecati ut. Hic eum ea dolor et id dignissimos soluta. Quam ad quisquam a necessitatibus quia.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(3,'Travel Tips',2,'Laborum voluptates et at quasi rerum repellendus nihil. Quam aut aspernatur quisquam nostrum nihil sed. Non impedit sapiente quod tenetur et illum asperiores animi.','published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(4,'Healthy',0,'Officia sequi recusandae voluptatem aut excepturi dolorem. Id consequatur velit reiciendis molestias. Velit quo sed itaque velit reiciendis. Vel nihil aut eum quas nulla ipsam.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(5,'Travel Tips',4,'Maxime molestias ad nulla illo dicta eum fugit. Ratione molestias maiores iure non illum in quia. Aut eum provident nisi qui nulla. Minima non labore aut.','published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(6,'Hotel',0,'Quia nisi explicabo qui blanditiis nihil sit cum. Molestiae dolorem fugiat aliquid autem.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(7,'Nature',6,'Voluptatem eum praesentium velit voluptas aut. Aut rerum explicabo qui. Dolor aliquid provident at inventore et qui aut et.','published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2025-10-26 20:13:48','2025-10-26 20:13:48');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `categories_translations`
--
DROP TABLE IF EXISTS `categories_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`categories_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `categories_translations`
--
LOCK TABLES `categories_translations` WRITE;
/*!40000 ALTER TABLE `categories_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `categories_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cities`
--
DROP TABLE IF EXISTS `cities`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cities` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`state_id` bigint unsigned DEFAULT NULL,
`country_id` bigint unsigned DEFAULT NULL,
`record_id` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` tinyint NOT NULL DEFAULT '0',
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_default` tinyint unsigned NOT NULL DEFAULT '0',
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `cities_slug_unique` (`slug`),
KEY `idx_cities_name` (`name`),
KEY `idx_cities_state_status` (`state_id`,`status`),
KEY `idx_cities_status` (`status`),
KEY `idx_cities_state_id` (`state_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cities`
--
LOCK TABLES `cities` WRITE;
/*!40000 ALTER TABLE `cities` DISABLE KEYS */;
/*!40000 ALTER TABLE `cities` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cities_translations`
--
DROP TABLE IF EXISTS `cities_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cities_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`cities_id` bigint unsigned NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`cities_id`),
KEY `idx_cities_trans_city_lang` (`cities_id`,`lang_code`),
KEY `idx_cities_trans_name` (`name`),
KEY `idx_cities_trans_cities_id` (`cities_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cities_translations`
--
LOCK TABLES `cities_translations` WRITE;
/*!40000 ALTER TABLE `cities_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `cities_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact_custom_field_options`
--
DROP TABLE IF EXISTS `contact_custom_field_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_custom_field_options` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`custom_field_id` bigint unsigned NOT NULL,
`label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`value` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`order` int NOT NULL DEFAULT '999',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contact_custom_field_options`
--
LOCK TABLES `contact_custom_field_options` WRITE;
/*!40000 ALTER TABLE `contact_custom_field_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_custom_field_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact_custom_field_options_translations`
--
DROP TABLE IF EXISTS `contact_custom_field_options_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_custom_field_options_translations` (
`contact_custom_field_options_id` bigint unsigned NOT NULL,
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`contact_custom_field_options_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contact_custom_field_options_translations`
--
LOCK TABLES `contact_custom_field_options_translations` WRITE;
/*!40000 ALTER TABLE `contact_custom_field_options_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_custom_field_options_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact_custom_fields`
--
DROP TABLE IF EXISTS `contact_custom_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_custom_fields` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`required` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`placeholder` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` int NOT NULL DEFAULT '999',
`status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contact_custom_fields`
--
LOCK TABLES `contact_custom_fields` WRITE;
/*!40000 ALTER TABLE `contact_custom_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_custom_fields` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact_custom_fields_translations`
--
DROP TABLE IF EXISTS `contact_custom_fields_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_custom_fields_translations` (
`contact_custom_fields_id` bigint unsigned NOT NULL,
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`placeholder` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`contact_custom_fields_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contact_custom_fields_translations`
--
LOCK TABLES `contact_custom_fields_translations` WRITE;
/*!40000 ALTER TABLE `contact_custom_fields_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_custom_fields_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact_replies`
--
DROP TABLE IF EXISTS `contact_replies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_replies` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`contact_id` bigint unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contact_replies`
--
LOCK TABLES `contact_replies` WRITE;
/*!40000 ALTER TABLE `contact_replies` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_replies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contacts`
--
DROP TABLE IF EXISTS `contacts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contacts` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`phone` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`subject` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`custom_fields` text COLLATE utf8mb4_unicode_ci,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contacts`
--
LOCK TABLES `contacts` WRITE;
/*!40000 ALTER TABLE `contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `countries`
--
DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`nationality` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` tinyint NOT NULL DEFAULT '0',
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_default` tinyint unsigned NOT NULL DEFAULT '0',
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`code` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_countries_name` (`name`),
KEY `idx_countries_status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `countries`
--
LOCK TABLES `countries` WRITE;
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `countries_translations`
--
DROP TABLE IF EXISTS `countries_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`countries_id` bigint unsigned NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`nationality` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`countries_id`),
KEY `idx_countries_trans_country_lang` (`countries_id`,`lang_code`),
KEY `idx_countries_trans_name` (`name`),
KEY `idx_countries_trans_countries_id` (`countries_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `countries_translations`
--
LOCK TABLES `countries_translations` WRITE;
/*!40000 ALTER TABLE `countries_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `countries_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `dashboard_widget_settings`
--
DROP TABLE IF EXISTS `dashboard_widget_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dashboard_widget_settings` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`settings` text COLLATE utf8mb4_unicode_ci,
`user_id` bigint unsigned NOT NULL,
`widget_id` bigint unsigned NOT NULL,
`order` tinyint unsigned NOT NULL DEFAULT '0',
`status` tinyint unsigned NOT NULL DEFAULT '1',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `dashboard_widget_settings_user_id_index` (`user_id`),
KEY `dashboard_widget_settings_widget_id_index` (`widget_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `dashboard_widget_settings`
--
LOCK TABLES `dashboard_widget_settings` WRITE;
/*!40000 ALTER TABLE `dashboard_widget_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `dashboard_widget_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `dashboard_widgets`
--
DROP TABLE IF EXISTS `dashboard_widgets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dashboard_widgets` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `dashboard_widgets`
--
LOCK TABLES `dashboard_widgets` WRITE;
/*!40000 ALTER TABLE `dashboard_widgets` DISABLE KEYS */;
/*!40000 ALTER TABLE `dashboard_widgets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `device_tokens`
--
DROP TABLE IF EXISTS `device_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `device_tokens` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`platform` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`app_version` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`device_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` bigint unsigned DEFAULT NULL,
`is_active` tinyint(1) NOT NULL DEFAULT '1',
`last_used_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `device_tokens_token_unique` (`token`),
KEY `device_tokens_user_type_user_id_index` (`user_type`,`user_id`),
KEY `device_tokens_platform_is_active_index` (`platform`,`is_active`),
KEY `device_tokens_is_active_index` (`is_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `device_tokens`
--
LOCK TABLES `device_tokens` WRITE;
/*!40000 ALTER TABLE `device_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `device_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_abandoned_carts`
--
DROP TABLE IF EXISTS `ec_abandoned_carts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_abandoned_carts` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`customer_id` bigint unsigned DEFAULT NULL,
`session_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`cart_data` json NOT NULL,
`total_amount` decimal(15,2) NOT NULL DEFAULT '0.00',
`items_count` int NOT NULL DEFAULT '0',
`email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`abandoned_at` timestamp NULL DEFAULT NULL,
`reminder_sent_at` timestamp NULL DEFAULT NULL,
`reminders_sent` int NOT NULL DEFAULT '0',
`is_recovered` tinyint(1) NOT NULL DEFAULT '0',
`recovered_at` timestamp NULL DEFAULT NULL,
`recovered_order_id` bigint unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ec_abandoned_carts_abandoned_at_is_recovered_index` (`abandoned_at`,`is_recovered`),
KEY `ec_abandoned_carts_created_at_is_recovered_index` (`created_at`,`is_recovered`),
KEY `ec_abandoned_carts_customer_id_index` (`customer_id`),
KEY `ec_abandoned_carts_session_id_index` (`session_id`),
KEY `ec_abandoned_carts_email_index` (`email`),
KEY `ec_abandoned_carts_recovered_order_id_index` (`recovered_order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_abandoned_carts`
--
LOCK TABLES `ec_abandoned_carts` WRITE;
/*!40000 ALTER TABLE `ec_abandoned_carts` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_abandoned_carts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_brands`
--
DROP TABLE IF EXISTS `ec_brands`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_brands` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` mediumtext COLLATE utf8mb4_unicode_ci,
`website` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`order` tinyint unsigned NOT NULL DEFAULT '0',
`is_featured` tinyint unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_brands`
--
LOCK TABLES `ec_brands` WRITE;
/*!40000 ALTER TABLE `ec_brands` DISABLE KEYS */;
INSERT INTO `ec_brands` VALUES (1,'FoodPound','New Snacks Release',NULL,'brands/1.png','published',0,1,'2025-10-26 20:13:31','2025-10-26 20:13:31'),(2,'iTea JSC','Happy Tea 100% Organic. From $29.9',NULL,'brands/2.png','published',1,1,'2025-10-26 20:13:31','2025-10-26 20:13:31'),(3,'Soda Brand','Soda is a brand that lets your inner-dive out through creative makeup and cool makeup tips! Whichever product you choose, you will see that it is a perfect ...',NULL,'brands/3.png','published',2,1,'2025-10-26 20:13:31','2025-10-26 20:13:31'),(4,'Farmart','Fresh Meat Sausage. BUY 2 GET 1!',NULL,'brands/4.png','published',3,1,'2025-10-26 20:13:31','2025-10-26 20:13:31');
/*!40000 ALTER TABLE `ec_brands` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_brands_translations`
--
DROP TABLE IF EXISTS `ec_brands_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_brands_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_brands_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` mediumtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`lang_code`,`ec_brands_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_brands_translations`
--
LOCK TABLES `ec_brands_translations` WRITE;
/*!40000 ALTER TABLE `ec_brands_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_brands_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_cart`
--
DROP TABLE IF EXISTS `ec_cart`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_cart` (
`identifier` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`instance` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`identifier`,`instance`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_cart`
--
LOCK TABLES `ec_cart` WRITE;
/*!40000 ALTER TABLE `ec_cart` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_cart` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_currencies`
--
DROP TABLE IF EXISTS `ec_currencies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_currencies` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`symbol` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`is_prefix_symbol` tinyint unsigned NOT NULL DEFAULT '0',
`decimals` tinyint unsigned DEFAULT '0',
`number_format_style` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'western',
`space_between_price_and_currency` tinyint(1) NOT NULL DEFAULT '0',
`order` int unsigned DEFAULT '0',
`is_default` tinyint NOT NULL DEFAULT '0',
`exchange_rate` double NOT NULL DEFAULT '1',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_currencies`
--
LOCK TABLES `ec_currencies` WRITE;
/*!40000 ALTER TABLE `ec_currencies` DISABLE KEYS */;
INSERT INTO `ec_currencies` VALUES (1,'USD','$',1,2,'western',0,0,1,1,'2025-10-26 20:13:30','2025-10-26 20:13:30'),(2,'EUR','€',0,2,'western',0,1,0,0.84,'2025-10-26 20:13:30','2025-10-26 20:13:30'),(3,'VND','₫',0,0,'western',0,2,0,23203,'2025-10-26 20:13:30','2025-10-26 20:13:30'),(4,'NGN','₦',1,2,'western',0,2,0,895.52,'2025-10-26 20:13:30','2025-10-26 20:13:30');
/*!40000 ALTER TABLE `ec_currencies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_customer_addresses`
--
DROP TABLE IF EXISTS `ec_customer_addresses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customer_addresses` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_id` bigint unsigned NOT NULL,
`is_default` tinyint unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_customer_addresses`
--
LOCK TABLES `ec_customer_addresses` WRITE;
/*!40000 ALTER TABLE `ec_customer_addresses` DISABLE KEYS */;
INSERT INTO `ec_customer_addresses` VALUES (1,'Cordia Weimann','customer@archielite.com','+17268988404','CD','South Carolina','Schummport','357 Kihn Stream Suite 331',1,1,'2025-10-26 20:13:50','2025-10-26 20:13:50','29713'),(2,'Cordia Weimann','customer@archielite.com','+16287274006','KI','Rhode Island','South Jackberg','99933 Colton Drives',1,0,'2025-10-26 20:13:50','2025-10-26 20:13:50','74193-5945'),(3,'Bernhard Murphy I','wwhite@example.com','+18307232451','AU','New York','Kaylibury','47478 Strosin Port Apt. 047',2,1,'2025-10-26 20:13:50','2025-10-26 20:13:50','51930'),(4,'Audrey Wisozk','ikozey@example.org','+17478941559','DK','Kansas','Lubowitzberg','90620 Ciara Flat Suite 575',3,1,'2025-10-26 20:13:50','2025-10-26 20:13:50','96512-5852'),(5,'Mrs. Clarabelle Stokes','feest.amaya@example.org','+17432492367','SK','Iowa','Karliville','1176 Schiller Shoals Suite 933',4,1,'2025-10-26 20:13:51','2025-10-26 20:13:51','81054-9687'),(6,'Heber Cormier V','miller.velda@example.net','+17704958768','LU','North Dakota','Gustaveshire','179 Patrick Plains',5,1,'2025-10-26 20:13:51','2025-10-26 20:13:51','94474-2529'),(7,'Prof. Richard Pfeffer','davonte71@example.net','+17853863041','SE','Arizona','East Daisy','8148 Lemke Stream Apt. 604',6,1,'2025-10-26 20:13:51','2025-10-26 20:13:51','53227'),(8,'Eileen Breitenberg MD','doyle.kale@example.net','+18633247042','CR','Wisconsin','Brandimouth','4091 Block Highway Apt. 243',7,1,'2025-10-26 20:13:51','2025-10-26 20:13:51','09349-4088'),(9,'Aubrey Schulist','gaston43@example.com','+12022961359','AI','Mississippi','New Zackery','8790 Green Shoal Apt. 800',8,1,'2025-10-26 20:13:51','2025-10-26 20:13:51','22897'),(10,'Dr. Rex Cormier IV','ronaldo74@example.com','+19722747802','AQ','Alabama','Robertachester','40813 Keeling Highway',9,1,'2025-10-26 20:13:52','2025-10-26 20:13:52','99998');
/*!40000 ALTER TABLE `ec_customer_addresses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_customer_deletion_requests`
--
DROP TABLE IF EXISTS `ec_customer_deletion_requests`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customer_deletion_requests` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`customer_id` bigint unsigned NOT NULL,
`customer_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`verification_code` varchar(6) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`code_expires_at` timestamp NULL DEFAULT NULL,
`status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'waiting_for_confirmation',
`reason` text COLLATE utf8mb4_unicode_ci,
`confirmed_at` datetime DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ec_customer_deletion_requests_token_unique` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_customer_deletion_requests`
--
LOCK TABLES `ec_customer_deletion_requests` WRITE;
/*!40000 ALTER TABLE `ec_customer_deletion_requests` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_customer_deletion_requests` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_customer_password_resets`
--
DROP TABLE IF EXISTS `ec_customer_password_resets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customer_password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
KEY `ec_customer_password_resets_email_index` (`email`),
KEY `ec_customer_password_resets_token_index` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_customer_password_resets`
--
LOCK TABLES `ec_customer_password_resets` WRITE;
/*!40000 ALTER TABLE `ec_customer_password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_customer_password_resets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_customer_recently_viewed_products`
--
DROP TABLE IF EXISTS `ec_customer_recently_viewed_products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customer_recently_viewed_products` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`customer_id` bigint unsigned NOT NULL,
`product_id` bigint unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_customer_recently_viewed_products`
--
LOCK TABLES `ec_customer_recently_viewed_products` WRITE;
/*!40000 ALTER TABLE `ec_customer_recently_viewed_products` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_customer_recently_viewed_products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_customer_used_coupons`
--
DROP TABLE IF EXISTS `ec_customer_used_coupons`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customer_used_coupons` (
`discount_id` bigint unsigned NOT NULL,
`customer_id` bigint unsigned NOT NULL,
PRIMARY KEY (`discount_id`,`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_customer_used_coupons`
--
LOCK TABLES `ec_customer_used_coupons` WRITE;
/*!40000 ALTER TABLE `ec_customer_used_coupons` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_customer_used_coupons` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_customers`
--
DROP TABLE IF EXISTS `ec_customers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customers` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`avatar` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`dob` date DEFAULT NULL,
`phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`confirmed_at` datetime DEFAULT NULL,
`email_verify_token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activated',
`private_notes` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_customers`
--
LOCK TABLES `ec_customers` WRITE;
/*!40000 ALTER TABLE `ec_customers` DISABLE KEYS */;
INSERT INTO `ec_customers` VALUES (1,'Cordia Weimann','customer@archielite.com','$2y$12$LlbaBinz86bMyCyuzht5WOetHdVe2RvKdjeXDS7ePT3eSaGSTNOF2','customers/10.jpg','1977-10-20','+18208828144',NULL,'2025-10-26 20:13:50','2025-10-26 20:13:50','2025-10-27 03:13:50',NULL,'activated',NULL),(2,'Bernhard Murphy I','wwhite@example.com','$2y$12$rE.Ph5RFZ5uouAM7V2Jr9O/gNJIhiQev7hEm44M7h4zxObiBdwVFm','customers/1.jpg','1987-10-25','+15414542434',NULL,'2025-10-26 20:13:50','2025-10-26 20:13:50','2025-10-27 03:13:50',NULL,'activated',NULL),(3,'Audrey Wisozk','ikozey@example.org','$2y$12$3GaXRx1boooV7tCf23Ir/.2TkzrekVurpyNCafZ/7WU7YLe9YmMGi','customers/2.jpg','2003-10-20','+17605812190',NULL,'2025-10-26 20:13:50','2025-10-26 20:13:50','2025-10-27 03:13:50',NULL,'activated',NULL),(4,'Mrs. Clarabelle Stokes','feest.amaya@example.org','$2y$12$.hXOkxbD.V52FUxQuIpOyO/LFmBjS8raVIEkJCiVSvYDyWwa4Fmt2','customers/3.jpg','1975-10-10','+18474895495',NULL,'2025-10-26 20:13:51','2025-10-26 20:13:51','2025-10-27 03:13:50',NULL,'activated',NULL),(5,'Heber Cormier V','miller.velda@example.net','$2y$12$PlzTQMPoGNmOHgf3li8WyuzDnUPWBvO9mHICyKiCZsaWOoiTTzKgW','customers/4.jpg','2004-09-29','+19524248467',NULL,'2025-10-26 20:13:51','2025-10-26 20:13:51','2025-10-27 03:13:50',NULL,'activated',NULL),(6,'Prof. Richard Pfeffer','davonte71@example.net','$2y$12$vYVUeyrT2HB8vGiwalZJEuhdg0ZQ94pdQLktDnZFpWlf/vqvpKS8m','customers/5.jpg','2005-10-13','+16573953164',NULL,'2025-10-26 20:13:51','2025-10-26 20:13:51','2025-10-27 03:13:50',NULL,'activated',NULL),(7,'Eileen Breitenberg MD','doyle.kale@example.net','$2y$12$cPLbQ8uIJjTa.xx8Fl02z./muSLSIE25kLE00SArz0Z9ZpoLq06vi','customers/6.jpg','1983-10-12','+19518344210',NULL,'2025-10-26 20:13:51','2025-10-26 20:13:51','2025-10-27 03:13:50',NULL,'activated',NULL),(8,'Aubrey Schulist','gaston43@example.com','$2y$12$EigsGAn1QHrqeZCXlw0pCu0VW4qnwpHGV5d6ufkD1HwAxWWBcd7uG','customers/7.jpg','1980-10-23','+19014952404',NULL,'2025-10-26 20:13:51','2025-10-26 20:13:51','2025-10-27 03:13:50',NULL,'activated',NULL),(9,'Dr. Rex Cormier IV','ronaldo74@example.com','$2y$12$leIdxhJISUDCM252JXyUve2YI0NFmOGNLavMbVbVvWZF0Mv60kIJK','customers/8.jpg','2000-10-20','+16674605150',NULL,'2025-10-26 20:13:52','2025-10-26 20:13:52','2025-10-27 03:13:50',NULL,'activated',NULL);
/*!40000 ALTER TABLE `ec_customers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_discount_customers`
--
DROP TABLE IF EXISTS `ec_discount_customers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_discount_customers` (
`discount_id` bigint unsigned NOT NULL,
`customer_id` bigint unsigned NOT NULL,
PRIMARY KEY (`discount_id`,`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_discount_customers`
--
LOCK TABLES `ec_discount_customers` WRITE;
/*!40000 ALTER TABLE `ec_discount_customers` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_discount_customers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_discount_product_categories`
--
DROP TABLE IF EXISTS `ec_discount_product_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_discount_product_categories` (
`discount_id` bigint unsigned NOT NULL,
`product_category_id` bigint unsigned NOT NULL,
PRIMARY KEY (`discount_id`,`product_category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_discount_product_categories`
--
LOCK TABLES `ec_discount_product_categories` WRITE;
/*!40000 ALTER TABLE `ec_discount_product_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_discount_product_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_discount_product_collections`
--
DROP TABLE IF EXISTS `ec_discount_product_collections`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_discount_product_collections` (
`discount_id` bigint unsigned NOT NULL,
`product_collection_id` bigint unsigned NOT NULL,
PRIMARY KEY (`discount_id`,`product_collection_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_discount_product_collections`
--
LOCK TABLES `ec_discount_product_collections` WRITE;
/*!40000 ALTER TABLE `ec_discount_product_collections` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_discount_product_collections` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_discount_products`
--
DROP TABLE IF EXISTS `ec_discount_products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_discount_products` (
`discount_id` bigint unsigned NOT NULL,
`product_id` bigint unsigned NOT NULL,
PRIMARY KEY (`discount_id`,`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_discount_products`
--
LOCK TABLES `ec_discount_products` WRITE;
/*!40000 ALTER TABLE `ec_discount_products` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_discount_products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_discounts`
--
DROP TABLE IF EXISTS `ec_discounts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_discounts` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`start_date` datetime DEFAULT NULL,
`end_date` datetime DEFAULT NULL,
`quantity` int DEFAULT NULL,
`total_used` int unsigned NOT NULL DEFAULT '0',
`value` double DEFAULT NULL,
`type` varchar(60) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`product_quantity` int unsigned DEFAULT NULL,
`type_option` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount',
`target` varchar(100) COLLATE utf8mb4_unicode_ci 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,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ec_discounts_code_unique` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_discounts`
--
LOCK TABLES `ec_discounts` WRITE;
/*!40000 ALTER TABLE `ec_discounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_discounts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_flash_sale_products`
--
DROP TABLE IF EXISTS `ec_flash_sale_products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_flash_sale_products` (
`flash_sale_id` bigint unsigned NOT NULL,
`product_id` bigint unsigned NOT NULL,
`price` double unsigned DEFAULT NULL,
`quantity` int unsigned DEFAULT NULL,
`sold` int unsigned NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_flash_sale_products`
--
LOCK TABLES `ec_flash_sale_products` WRITE;
/*!40000 ALTER TABLE `ec_flash_sale_products` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_flash_sale_products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_flash_sales`
--
DROP TABLE IF EXISTS `ec_flash_sales`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_flash_sales` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`end_date` datetime NOT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_flash_sales`
--
LOCK TABLES `ec_flash_sales` WRITE;
/*!40000 ALTER TABLE `ec_flash_sales` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_flash_sales` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_flash_sales_translations`
--
DROP TABLE IF EXISTS `ec_flash_sales_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_flash_sales_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_flash_sales_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_flash_sales_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_flash_sales_translations`
--
LOCK TABLES `ec_flash_sales_translations` WRITE;
/*!40000 ALTER TABLE `ec_flash_sales_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_flash_sales_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_global_option_value`
--
DROP TABLE IF EXISTS `ec_global_option_value`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_global_option_value` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`option_id` bigint unsigned NOT NULL COMMENT 'option id',
`option_value` tinytext COLLATE utf8mb4_unicode_ci COMMENT 'option value',
`affect_price` double DEFAULT NULL COMMENT 'value of price of this option affect',
`order` int NOT NULL DEFAULT '9999',
`affect_type` tinyint NOT NULL DEFAULT '0' COMMENT '0. fixed 1. percent',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_global_option_value`
--
LOCK TABLES `ec_global_option_value` WRITE;
/*!40000 ALTER TABLE `ec_global_option_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_global_option_value` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_global_option_value_translations`
--
DROP TABLE IF EXISTS `ec_global_option_value_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_global_option_value_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_global_option_value_id` bigint unsigned NOT NULL,
`option_value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_global_option_value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_global_option_value_translations`
--
LOCK TABLES `ec_global_option_value_translations` WRITE;
/*!40000 ALTER TABLE `ec_global_option_value_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_global_option_value_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_global_options`
--
DROP TABLE IF EXISTS `ec_global_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_global_options` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of options',
`option_type` varchar(191) COLLATE utf8mb4_unicode_ci 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,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_global_options`
--
LOCK TABLES `ec_global_options` WRITE;
/*!40000 ALTER TABLE `ec_global_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_global_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_global_options_translations`
--
DROP TABLE IF EXISTS `ec_global_options_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_global_options_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_global_options_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_global_options_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_global_options_translations`
--
LOCK TABLES `ec_global_options_translations` WRITE;
/*!40000 ALTER TABLE `ec_global_options_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_global_options_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_grouped_products`
--
DROP TABLE IF EXISTS `ec_grouped_products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_grouped_products` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`parent_product_id` bigint unsigned NOT NULL,
`product_id` bigint unsigned NOT NULL,
`fixed_qty` int NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_grouped_products`
--
LOCK TABLES `ec_grouped_products` WRITE;
/*!40000 ALTER TABLE `ec_grouped_products` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_grouped_products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_invoice_items`
--
DROP TABLE IF EXISTS `ec_invoice_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_invoice_items` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`invoice_id` bigint unsigned NOT NULL,
`reference_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`reference_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`qty` int 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 COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ec_invoice_items_reference_type_reference_id_index` (`reference_type`,`reference_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_invoice_items`
--
LOCK TABLES `ec_invoice_items` WRITE;
/*!40000 ALTER TABLE `ec_invoice_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_invoice_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_invoices`
--
DROP TABLE IF EXISTS `ec_invoices`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_invoices` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`reference_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`reference_id` bigint unsigned NOT NULL,
`code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`customer_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`company_logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_zip_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_address_line` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_tax_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`sub_total` decimal(15,2) unsigned NOT NULL,
`tax_amount` decimal(15,2) DEFAULT '0.00',
`shipping_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00',
`payment_fee` decimal(15,2) DEFAULT '0.00',
`discount_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00',
`shipping_option` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`shipping_method` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default',
`coupon_code` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`discount_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`amount` decimal(15,2) unsigned NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`payment_id` bigint unsigned DEFAULT NULL,
`status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
`paid_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ec_invoices_code_unique` (`code`),
KEY `ec_invoices_reference_type_reference_id_index` (`reference_type`,`reference_id`),
KEY `ec_invoices_payment_id_index` (`payment_id`),
KEY `ec_invoices_status_index` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_invoices`
--
LOCK TABLES `ec_invoices` WRITE;
/*!40000 ALTER TABLE `ec_invoices` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_invoices` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_option_value`
--
DROP TABLE IF EXISTS `ec_option_value`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_option_value` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`option_id` bigint unsigned NOT NULL COMMENT 'option id',
`option_value` tinytext COLLATE utf8mb4_unicode_ci COMMENT 'option value',
`affect_price` double DEFAULT NULL COMMENT 'value of price of this option affect',
`order` int NOT NULL DEFAULT '9999',
`affect_type` tinyint NOT NULL DEFAULT '0' COMMENT '0. fixed 1. percent',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_option_value`
--
LOCK TABLES `ec_option_value` WRITE;
/*!40000 ALTER TABLE `ec_option_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_option_value` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_option_value_translations`
--
DROP TABLE IF EXISTS `ec_option_value_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_option_value_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_option_value_id` bigint unsigned NOT NULL,
`option_value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_option_value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_option_value_translations`
--
LOCK TABLES `ec_option_value_translations` WRITE;
/*!40000 ALTER TABLE `ec_option_value_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_option_value_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_options`
--
DROP TABLE IF EXISTS `ec_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_options` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of options',
`option_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'option type',
`product_id` bigint unsigned NOT NULL DEFAULT '0',
`order` int 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,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_options`
--
LOCK TABLES `ec_options` WRITE;
/*!40000 ALTER TABLE `ec_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_options_translations`
--
DROP TABLE IF EXISTS `ec_options_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_options_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_options_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_options_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_options_translations`
--
LOCK TABLES `ec_options_translations` WRITE;
/*!40000 ALTER TABLE `ec_options_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_options_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_order_addresses`
--
DROP TABLE IF EXISTS `ec_order_addresses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_order_addresses` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order_id` bigint unsigned NOT NULL,
`zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`type` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'shipping_address',
PRIMARY KEY (`id`),
UNIQUE KEY `ec_order_addresses_order_id_type_unique` (`order_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_order_addresses`
--
LOCK TABLES `ec_order_addresses` WRITE;
/*!40000 ALTER TABLE `ec_order_addresses` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_order_addresses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_order_histories`
--
DROP TABLE IF EXISTS `ec_order_histories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_order_histories` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` bigint unsigned DEFAULT NULL,
`order_id` bigint unsigned NOT NULL,
`extras` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_order_histories`
--
LOCK TABLES `ec_order_histories` WRITE;
/*!40000 ALTER TABLE `ec_order_histories` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_order_histories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_order_product`
--
DROP TABLE IF EXISTS `ec_order_product`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_order_product` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`order_id` bigint unsigned NOT NULL,
`qty` int NOT NULL,
`price` decimal(15,2) NOT NULL,
`tax_amount` decimal(15,2) DEFAULT '0.00',
`options` text COLLATE utf8mb4_unicode_ci,
`product_options` text COLLATE utf8mb4_unicode_ci COMMENT 'product option data',
`product_id` bigint unsigned DEFAULT NULL,
`product_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`product_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`weight` double DEFAULT '0',
`restock_quantity` int unsigned DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`product_type` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical',
`times_downloaded` int NOT NULL DEFAULT '0',
`license_code` text COLLATE utf8mb4_unicode_ci,
`downloaded_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_order_product`
--
LOCK TABLES `ec_order_product` WRITE;
/*!40000 ALTER TABLE `ec_order_product` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_order_product` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_order_referrals`
--
DROP TABLE IF EXISTS `ec_order_referrals`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_order_referrals` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`ip` varchar(39) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`landing_domain` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`landing_page` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`landing_params` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`referral` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`gclid` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`fclid` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`utm_source` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`utm_campaign` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`utm_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`utm_term` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`utm_content` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`referrer_url` text COLLATE utf8mb4_unicode_ci,
`referrer_domain` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order_id` bigint unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ec_order_referrals_order_id_index` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_order_referrals`
--
LOCK TABLES `ec_order_referrals` WRITE;
/*!40000 ALTER TABLE `ec_order_referrals` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_order_referrals` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_order_return_histories`
--
DROP TABLE IF EXISTS `ec_order_return_histories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_order_return_histories` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned DEFAULT NULL,
`order_return_id` bigint unsigned NOT NULL,
`action` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`reason` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_order_return_histories`
--
LOCK TABLES `ec_order_return_histories` WRITE;
/*!40000 ALTER TABLE `ec_order_return_histories` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_order_return_histories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_order_return_items`
--
DROP TABLE IF EXISTS `ec_order_return_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_order_return_items` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`order_return_id` bigint unsigned NOT NULL COMMENT 'Order return id',
`order_product_id` bigint unsigned NOT NULL COMMENT 'Order product id',
`product_id` bigint unsigned NOT NULL COMMENT 'Product id',
`product_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`product_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`qty` int NOT NULL COMMENT 'Quantity return',
`price` decimal(15,2) NOT NULL COMMENT 'Price Product',
`reason` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`refund_amount` decimal(12,2) DEFAULT '0.00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_order_return_items`
--
LOCK TABLES `ec_order_return_items` WRITE;
/*!40000 ALTER TABLE `ec_order_return_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_order_return_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_order_returns`
--
DROP TABLE IF EXISTS `ec_order_returns`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_order_returns` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order_id` bigint unsigned NOT NULL COMMENT 'Order ID',
`store_id` bigint unsigned DEFAULT NULL COMMENT 'Store ID',
`user_id` bigint unsigned NOT NULL COMMENT 'Customer ID',
`reason` text COLLATE utf8mb4_unicode_ci COMMENT 'Reason return order',
`order_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Order current status',
`return_status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Return status',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ec_order_returns_code_unique` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_order_returns`
--
LOCK TABLES `ec_order_returns` WRITE;
/*!40000 ALTER TABLE `ec_order_returns` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_order_returns` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_order_tax_information`
--
DROP TABLE IF EXISTS `ec_order_tax_information`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_order_tax_information` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`order_id` bigint unsigned NOT NULL,
`company_name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`company_address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`company_tax_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`company_email` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ec_order_tax_information_order_id_index` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_order_tax_information`
--
LOCK TABLES `ec_order_tax_information` WRITE;
/*!40000 ALTER TABLE `ec_order_tax_information` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_order_tax_information` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_orders`
--
DROP TABLE IF EXISTS `ec_orders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_orders` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` bigint unsigned DEFAULT NULL,
`shipping_option` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`shipping_method` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default',
`status` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
`amount` decimal(15,2) NOT NULL,
`tax_amount` decimal(15,2) DEFAULT '0.00',
`shipping_amount` decimal(15,2) DEFAULT NULL,
`payment_fee` decimal(15,2) DEFAULT '0.00',
`description` text COLLATE utf8mb4_unicode_ci,
`coupon_code` varchar(120) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_finished` tinyint(1) DEFAULT '0',
`cancellation_reason` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`cancellation_reason_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`completed_at` timestamp NULL DEFAULT NULL,
`token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`payment_id` bigint unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`proof_file` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`private_notes` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
UNIQUE KEY `ec_orders_code_unique` (`code`),
KEY `ec_orders_user_id_status_created_at_index` (`user_id`,`status`,`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_orders`
--
LOCK TABLES `ec_orders` WRITE;
/*!40000 ALTER TABLE `ec_orders` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_orders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_attribute_sets`
--
DROP TABLE IF EXISTS `ec_product_attribute_sets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_attribute_sets` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`display_layout` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'dropdown',
`is_searchable` tinyint unsigned NOT NULL DEFAULT '1',
`is_comparable` tinyint unsigned NOT NULL DEFAULT '1',
`is_use_in_product_listing` tinyint unsigned NOT NULL DEFAULT '0',
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`order` tinyint unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`use_image_from_product_variation` tinyint unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `idx_order_id` (`order`,`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_attribute_sets`
--
LOCK TABLES `ec_product_attribute_sets` WRITE;
/*!40000 ALTER TABLE `ec_product_attribute_sets` DISABLE KEYS */;
INSERT INTO `ec_product_attribute_sets` VALUES (1,'Color','color','visual',1,1,1,'published',0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0),(2,'Size','size','text',1,1,1,'published',1,'2025-10-26 20:13:47','2025-10-26 20:13:47',0),(3,'Weight','weight','text',1,1,1,'published',0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0),(4,'Boxes','boxes','text',1,1,1,'published',1,'2025-10-26 20:13:47','2025-10-26 20:13:47',0);
/*!40000 ALTER TABLE `ec_product_attribute_sets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_attribute_sets_translations`
--
DROP TABLE IF EXISTS `ec_product_attribute_sets_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_attribute_sets_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_product_attribute_sets_id` bigint unsigned NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_product_attribute_sets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_attribute_sets_translations`
--
LOCK TABLES `ec_product_attribute_sets_translations` WRITE;
/*!40000 ALTER TABLE `ec_product_attribute_sets_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_attribute_sets_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_attributes`
--
DROP TABLE IF EXISTS `ec_product_attributes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_attributes` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`attribute_set_id` bigint unsigned NOT NULL,
`title` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`color` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_default` tinyint unsigned NOT NULL DEFAULT '0',
`order` tinyint unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `attribute_set_status_index` (`attribute_set_id`),
KEY `idx_attribute_set_id` (`attribute_set_id`),
KEY `idx_attribute_set_order_id` (`attribute_set_id`,`order`,`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_attributes`
--
LOCK TABLES `ec_product_attributes` WRITE;
/*!40000 ALTER TABLE `ec_product_attributes` DISABLE KEYS */;
INSERT INTO `ec_product_attributes` VALUES (1,1,'Green','green','#5FB7D4',NULL,1,1,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(2,1,'Blue','blue','#333333',NULL,0,2,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(3,1,'Red','red','#DA323F',NULL,0,3,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(4,1,'Black','black','#2F366C',NULL,0,4,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(5,1,'Brown','brown','#87554B',NULL,0,5,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(6,2,'S','s',NULL,NULL,1,1,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(7,2,'M','m',NULL,NULL,0,2,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(8,2,'L','l',NULL,NULL,0,3,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(9,2,'XL','xl',NULL,NULL,0,4,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(10,2,'XXL','xxl',NULL,NULL,0,5,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(11,3,'1KG','1kg',NULL,NULL,1,1,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(12,3,'2KG','2kg',NULL,NULL,0,2,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(13,3,'3KG','3kg',NULL,NULL,0,3,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(14,3,'4KG','4kg',NULL,NULL,0,4,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(15,3,'5KG','5kg',NULL,NULL,0,5,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(16,4,'1 Box','1-box',NULL,NULL,1,1,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(17,4,'2 Boxes','2-boxes',NULL,NULL,0,2,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(18,4,'3 Boxes','3-boxes',NULL,NULL,0,3,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(19,4,'4 Boxes','4-boxes',NULL,NULL,0,4,'2025-10-26 20:13:47','2025-10-26 20:13:47'),(20,4,'5 Boxes','5-boxes',NULL,NULL,0,5,'2025-10-26 20:13:47','2025-10-26 20:13:47');
/*!40000 ALTER TABLE `ec_product_attributes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_attributes_translations`
--
DROP TABLE IF EXISTS `ec_product_attributes_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_attributes_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_product_attributes_id` bigint unsigned NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_product_attributes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_attributes_translations`
--
LOCK TABLES `ec_product_attributes_translations` WRITE;
/*!40000 ALTER TABLE `ec_product_attributes_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_attributes_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_categories`
--
DROP TABLE IF EXISTS `ec_product_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_categories` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`parent_id` bigint unsigned NOT NULL DEFAULT '0',
`description` mediumtext COLLATE utf8mb4_unicode_ci,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`order` int unsigned NOT NULL DEFAULT '0',
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_featured` tinyint unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`icon` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`icon_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ec_product_categories_parent_id_status_created_at_index` (`parent_id`,`status`,`created_at`),
KEY `ec_product_categories_parent_id_status_index` (`parent_id`,`status`),
KEY `idx_categories_status_order` (`status`,`order`),
KEY `idx_categories_order` (`order`),
KEY `ec_product_categories_slug_index` (`slug`),
KEY `idx_ec_product_categories_status` (`status`),
KEY `idx_ec_product_categories_parent_id` (`parent_id`),
KEY `idx_ec_product_categories_status_parent_order` (`status`,`parent_id`,`order`),
KEY `idx_ec_product_categories_is_featured` (`is_featured`),
KEY `idx_ec_product_categories_name` (`name`),
KEY `idx_ec_product_categories_slug` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_categories`
--
LOCK TABLES `ec_product_categories` WRITE;
/*!40000 ALTER TABLE `ec_product_categories` DISABLE KEYS */;
INSERT INTO `ec_product_categories` VALUES (1,'Desktop PC',NULL,0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',1,'product-categories/1.png',1,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,NULL),(2,'Headphone',NULL,0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',2,'product-categories/2.png',1,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,NULL),(3,'Laptop',NULL,0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',3,'product-categories/3.png',1,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,NULL),(4,'Mobile Phone',NULL,0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',4,'product-categories/4.png',1,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,NULL),(5,'Printer',NULL,0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',5,'product-categories/5.png',1,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,NULL),(6,'Books',NULL,0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',6,'product-categories/6.png',1,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,NULL),(7,'Tablet',NULL,0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',7,'product-categories/7.png',1,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,NULL),(8,'USB Flash',NULL,0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',8,'product-categories/8.png',1,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,NULL),(9,'Game Mouse',NULL,0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',9,'product-categories/9.png',1,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,NULL),(10,'Security',NULL,0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',10,'product-categories/10.png',1,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,NULL),(11,'Watch',NULL,0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',11,'product-categories/11.png',1,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,NULL),(12,'Scanner',NULL,0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',12,'product-categories/12.png',1,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,NULL);
/*!40000 ALTER TABLE `ec_product_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_categories_translations`
--
DROP TABLE IF EXISTS `ec_product_categories_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_categories_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_product_categories_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` mediumtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`lang_code`,`ec_product_categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_categories_translations`
--
LOCK TABLES `ec_product_categories_translations` WRITE;
/*!40000 ALTER TABLE `ec_product_categories_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_categories_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_categorizables`
--
DROP TABLE IF EXISTS `ec_product_categorizables`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_categorizables` (
`category_id` bigint unsigned NOT NULL,
`reference_id` bigint unsigned NOT NULL,
`reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`category_id`,`reference_id`,`reference_type`),
KEY `ec_product_categorizables_category_id_index` (`category_id`),
KEY `ec_product_categorizables_reference_id_index` (`reference_id`),
KEY `ec_product_categorizables_reference_type_index` (`reference_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_categorizables`
--
LOCK TABLES `ec_product_categorizables` WRITE;
/*!40000 ALTER TABLE `ec_product_categorizables` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_categorizables` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_category_product`
--
DROP TABLE IF EXISTS `ec_product_category_product`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_category_product` (
`category_id` bigint unsigned NOT NULL,
`product_id` bigint unsigned NOT NULL,
PRIMARY KEY (`product_id`,`category_id`),
KEY `ec_product_category_product_category_id_index` (`category_id`),
KEY `ec_product_category_product_product_id_index` (`product_id`),
KEY `idx_product_category` (`product_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_category_product`
--
LOCK TABLES `ec_product_category_product` WRITE;
/*!40000 ALTER TABLE `ec_product_category_product` DISABLE KEYS */;
INSERT INTO `ec_product_category_product` VALUES (1,2),(1,22),(1,34),(1,40),(1,51),(1,53),(2,8),(2,20),(2,23),(2,31),(2,36),(3,38),(3,41),(4,7),(4,8),(4,37),(5,4),(5,9),(5,22),(6,29),(6,46),(6,50),(6,54),(6,61),(7,12),(7,14),(7,17),(7,21),(7,37),(7,44),(7,52),(7,63),(8,19),(8,27),(8,45),(8,49),(8,56),(9,3),(10,3),(10,27),(10,46),(10,51),(10,59),(10,62),(11,7),(11,16),(11,17),(11,47),(11,50),(11,58),(11,62),(12,2),(12,13),(12,34),(12,63),(13,5),(13,6),(13,10),(14,9),(14,11),(14,36),(14,48),(15,11),(15,12),(15,14),(15,15),(15,18),(15,36),(15,42),(16,4),(16,5),(16,7),(16,16),(16,21),(16,23),(16,24),(16,28),(16,32),(16,40),(16,57),(16,61),(16,64),(17,5),(17,19),(17,20),(17,41),(17,42),(17,49),(17,57),(17,59),(17,60),(18,2),(18,10),(18,14),(18,16),(18,25),(18,32),(18,44),(18,46),(19,1),(19,6),(19,18),(19,25),(19,30),(19,33),(19,35),(19,37),(19,43),(19,53),(19,63),(19,65),(20,11),(20,17),(20,27),(20,33),(20,35),(20,46),(20,52),(20,54),(20,55),(20,62),(21,12),(21,19),(21,25),(21,31),(21,43),(21,54),(21,55),(21,58),(21,59),(21,62),(21,63),(22,38),(22,45),(22,61),(23,48),(23,51),(24,4),(24,15),(24,18),(24,20),(24,29),(24,31),(24,34),(24,36),(24,41),(24,47),(24,49),(24,64),(25,1),(25,5),(25,10),(25,13),(25,15),(25,22),(25,27),(25,31),(25,35),(25,42),(25,54),(25,56),(25,57),(26,9),(26,11),(26,20),(26,25),(26,26),(26,35),(26,40),(26,47),(26,50),(26,60),(27,28),(27,29),(27,55),(27,59),(28,15),(28,30),(28,34),(28,44),(29,1),(29,6),(29,13),(29,30),(29,44),(29,45),(29,53),(29,58),(29,60),(29,65),(30,3),(30,7),(30,19),(30,21),(30,22),(30,23),(30,30),(30,38),(30,45),(30,49),(30,57),(30,60),(31,1),(31,10),(31,26),(31,28),(31,33),(31,39),(31,43),(31,48),(31,50),(32,3),(32,8),(32,21),(32,24),(32,39),(32,43),(32,52),(32,58),(33,12),(33,13),(33,17),(33,37),(33,42),(33,55),(33,64),(34,2),(34,9),(34,14),(34,24),(34,28),(34,29),(34,53),(35,16),(35,26),(35,32),(35,51),(35,52),(35,56),(36,4),(36,6),(36,8),(36,24),(36,32),(36,33),(36,39),(37,18),(37,26),(37,40),(37,41),(37,47),(37,61),(37,64),(37,65);
/*!40000 ALTER TABLE `ec_product_category_product` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_collection_products`
--
DROP TABLE IF EXISTS `ec_product_collection_products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_collection_products` (
`product_collection_id` bigint unsigned NOT NULL,
`product_id` bigint unsigned NOT NULL,
PRIMARY KEY (`product_id`,`product_collection_id`),
KEY `ec_product_collection_products_product_collection_id_index` (`product_collection_id`),
KEY `ec_product_collection_products_product_id_index` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_collection_products`
--
LOCK TABLES `ec_product_collection_products` WRITE;
/*!40000 ALTER TABLE `ec_product_collection_products` DISABLE KEYS */;
INSERT INTO `ec_product_collection_products` VALUES (1,2),(1,5),(1,14),(1,18),(1,22),(1,30),(1,35),(1,36),(1,39),(1,40),(1,41),(1,49),(1,50),(1,51),(1,55),(1,57),(1,58),(1,59),(1,60),(1,61),(1,63),(2,3),(2,4),(2,6),(2,8),(2,11),(2,15),(2,16),(2,17),(2,19),(2,23),(2,24),(2,25),(2,26),(2,27),(2,28),(2,29),(2,31),(2,33),(2,43),(2,44),(2,46),(2,54),(2,56),(2,62),(3,1),(3,7),(3,9),(3,10),(3,12),(3,13),(3,20),(3,21),(3,32),(3,34),(3,37),(3,38),(3,42),(3,45),(3,47),(3,48),(3,52),(3,53),(3,64),(3,65);
/*!40000 ALTER TABLE `ec_product_collection_products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_collections`
--
DROP TABLE IF EXISTS `ec_product_collections`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_collections` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`is_featured` tinyint unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_collections`
--
LOCK TABLES `ec_product_collections` WRITE;
/*!40000 ALTER TABLE `ec_product_collections` DISABLE KEYS */;
INSERT INTO `ec_product_collections` VALUES (1,'New Arrival','new-arrival',NULL,NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30',0),(2,'Best Sellers','best-sellers',NULL,NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30',0),(3,'Special Offer','special-offer',NULL,NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30',0);
/*!40000 ALTER TABLE `ec_product_collections` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_collections_translations`
--
DROP TABLE IF EXISTS `ec_product_collections_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_collections_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_product_collections_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_product_collections_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_collections_translations`
--
LOCK TABLES `ec_product_collections_translations` WRITE;
/*!40000 ALTER TABLE `ec_product_collections_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_collections_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_cross_sale_relations`
--
DROP TABLE IF EXISTS `ec_product_cross_sale_relations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_cross_sale_relations` (
`from_product_id` bigint unsigned NOT NULL,
`to_product_id` bigint unsigned NOT NULL,
`is_variant` tinyint(1) NOT NULL DEFAULT '0',
`price` decimal(15,2) DEFAULT '0.00',
`price_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'fixed',
`apply_to_all_variations` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`from_product_id`,`to_product_id`),
KEY `ec_product_cross_sale_relations_from_product_id_index` (`from_product_id`),
KEY `ec_product_cross_sale_relations_to_product_id_index` (`to_product_id`),
KEY `idx_product_cross_sale` (`from_product_id`,`to_product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_cross_sale_relations`
--
LOCK TABLES `ec_product_cross_sale_relations` WRITE;
/*!40000 ALTER TABLE `ec_product_cross_sale_relations` DISABLE KEYS */;
INSERT INTO `ec_product_cross_sale_relations` VALUES (1,3,0,0.00,'fixed',1),(1,5,0,0.00,'fixed',1),(1,7,0,0.00,'fixed',1),(1,8,0,0.00,'fixed',1),(1,10,0,0.00,'fixed',1),(1,19,0,0.00,'fixed',1),(1,20,0,0.00,'fixed',1),(2,5,0,0.00,'fixed',1),(2,6,0,0.00,'fixed',1),(2,7,0,0.00,'fixed',1),(2,8,0,0.00,'fixed',1),(2,16,0,0.00,'fixed',1),(2,18,0,0.00,'fixed',1),(3,5,0,0.00,'fixed',1),(3,6,0,0.00,'fixed',1),(3,10,0,0.00,'fixed',1),(3,11,0,0.00,'fixed',1),(3,12,0,0.00,'fixed',1),(3,17,0,0.00,'fixed',1),(4,5,0,0.00,'fixed',1),(4,9,0,0.00,'fixed',1),(4,10,0,0.00,'fixed',1),(4,12,0,0.00,'fixed',1),(4,13,0,0.00,'fixed',1),(4,14,0,0.00,'fixed',1),(4,18,0,0.00,'fixed',1),(5,4,0,0.00,'fixed',1),(5,9,0,0.00,'fixed',1),(5,12,0,0.00,'fixed',1),(5,14,0,0.00,'fixed',1),(5,17,0,0.00,'fixed',1),(5,20,0,0.00,'fixed',1),(6,1,0,0.00,'fixed',1),(6,2,0,0.00,'fixed',1),(6,7,0,0.00,'fixed',1),(6,12,0,0.00,'fixed',1),(6,15,0,0.00,'fixed',1),(6,17,0,0.00,'fixed',1),(7,1,0,0.00,'fixed',1),(7,3,0,0.00,'fixed',1),(7,14,0,0.00,'fixed',1),(7,16,0,0.00,'fixed',1),(7,19,0,0.00,'fixed',1),(8,3,0,0.00,'fixed',1),(8,5,0,0.00,'fixed',1),(8,11,0,0.00,'fixed',1),(8,15,0,0.00,'fixed',1),(8,17,0,0.00,'fixed',1),(8,20,0,0.00,'fixed',1),(9,3,0,0.00,'fixed',1),(9,6,0,0.00,'fixed',1),(9,7,0,0.00,'fixed',1),(9,8,0,0.00,'fixed',1),(9,11,0,0.00,'fixed',1),(9,18,0,0.00,'fixed',1),(9,20,0,0.00,'fixed',1),(10,1,0,0.00,'fixed',1),(10,4,0,0.00,'fixed',1),(10,5,0,0.00,'fixed',1),(10,8,0,0.00,'fixed',1),(10,12,0,0.00,'fixed',1),(10,13,0,0.00,'fixed',1),(10,19,0,0.00,'fixed',1),(11,3,0,0.00,'fixed',1),(11,4,0,0.00,'fixed',1),(11,10,0,0.00,'fixed',1),(11,15,0,0.00,'fixed',1),(11,18,0,0.00,'fixed',1),(11,19,0,0.00,'fixed',1),(12,1,0,0.00,'fixed',1),(12,6,0,0.00,'fixed',1),(12,7,0,0.00,'fixed',1),(12,8,0,0.00,'fixed',1),(12,11,0,0.00,'fixed',1),(12,17,0,0.00,'fixed',1),(13,4,0,0.00,'fixed',1),(13,6,0,0.00,'fixed',1),(13,8,0,0.00,'fixed',1),(13,10,0,0.00,'fixed',1),(13,14,0,0.00,'fixed',1),(13,16,0,0.00,'fixed',1),(13,20,0,0.00,'fixed',1),(14,1,0,0.00,'fixed',1),(14,8,0,0.00,'fixed',1),(14,9,0,0.00,'fixed',1),(14,12,0,0.00,'fixed',1),(14,17,0,0.00,'fixed',1),(14,18,0,0.00,'fixed',1),(14,20,0,0.00,'fixed',1),(15,3,0,0.00,'fixed',1),(15,12,0,0.00,'fixed',1),(15,13,0,0.00,'fixed',1),(15,14,0,0.00,'fixed',1),(15,19,0,0.00,'fixed',1),(15,20,0,0.00,'fixed',1),(16,1,0,0.00,'fixed',1),(16,3,0,0.00,'fixed',1),(16,6,0,0.00,'fixed',1),(16,8,0,0.00,'fixed',1),(16,9,0,0.00,'fixed',1),(17,2,0,0.00,'fixed',1),(17,4,0,0.00,'fixed',1),(17,7,0,0.00,'fixed',1),(17,13,0,0.00,'fixed',1),(17,15,0,0.00,'fixed',1),(17,16,0,0.00,'fixed',1),(18,2,0,0.00,'fixed',1),(18,3,0,0.00,'fixed',1),(18,4,0,0.00,'fixed',1),(18,7,0,0.00,'fixed',1),(18,10,0,0.00,'fixed',1),(18,11,0,0.00,'fixed',1),(19,2,0,0.00,'fixed',1),(19,5,0,0.00,'fixed',1),(19,8,0,0.00,'fixed',1),(19,9,0,0.00,'fixed',1),(19,14,0,0.00,'fixed',1),(19,15,0,0.00,'fixed',1),(20,2,0,0.00,'fixed',1),(20,4,0,0.00,'fixed',1),(20,6,0,0.00,'fixed',1),(20,11,0,0.00,'fixed',1),(20,17,0,0.00,'fixed',1),(20,18,0,0.00,'fixed',1),(21,3,0,0.00,'fixed',1),(21,7,0,0.00,'fixed',1),(21,8,0,0.00,'fixed',1),(21,9,0,0.00,'fixed',1),(21,16,0,0.00,'fixed',1),(22,2,0,0.00,'fixed',1),(22,3,0,0.00,'fixed',1),(22,7,0,0.00,'fixed',1),(22,15,0,0.00,'fixed',1),(23,5,0,0.00,'fixed',1),(23,6,0,0.00,'fixed',1),(23,8,0,0.00,'fixed',1),(23,9,0,0.00,'fixed',1),(23,10,0,0.00,'fixed',1),(23,11,0,0.00,'fixed',1),(23,17,0,0.00,'fixed',1),(24,2,0,0.00,'fixed',1),(24,4,0,0.00,'fixed',1),(24,6,0,0.00,'fixed',1),(24,13,0,0.00,'fixed',1),(24,16,0,0.00,'fixed',1),(25,1,0,0.00,'fixed',1),(25,5,0,0.00,'fixed',1),(25,7,0,0.00,'fixed',1),(25,12,0,0.00,'fixed',1),(25,18,0,0.00,'fixed',1),(26,3,0,0.00,'fixed',1),(26,6,0,0.00,'fixed',1),(26,9,0,0.00,'fixed',1),(26,13,0,0.00,'fixed',1),(26,16,0,0.00,'fixed',1),(26,17,0,0.00,'fixed',1),(26,18,0,0.00,'fixed',1),(27,2,0,0.00,'fixed',1),(27,4,0,0.00,'fixed',1),(27,8,0,0.00,'fixed',1),(27,11,0,0.00,'fixed',1),(27,13,0,0.00,'fixed',1),(27,14,0,0.00,'fixed',1),(27,16,0,0.00,'fixed',1),(28,3,0,0.00,'fixed',1),(28,8,0,0.00,'fixed',1),(28,10,0,0.00,'fixed',1),(28,12,0,0.00,'fixed',1),(28,16,0,0.00,'fixed',1),(29,2,0,0.00,'fixed',1),(29,6,0,0.00,'fixed',1),(29,8,0,0.00,'fixed',1),(29,11,0,0.00,'fixed',1),(29,13,0,0.00,'fixed',1),(29,15,0,0.00,'fixed',1),(30,4,0,0.00,'fixed',1),(30,5,0,0.00,'fixed',1),(30,6,0,0.00,'fixed',1),(30,7,0,0.00,'fixed',1),(30,9,0,0.00,'fixed',1),(30,13,0,0.00,'fixed',1),(31,3,0,0.00,'fixed',1),(31,4,0,0.00,'fixed',1),(31,7,0,0.00,'fixed',1),(31,9,0,0.00,'fixed',1),(31,11,0,0.00,'fixed',1),(31,14,0,0.00,'fixed',1),(31,17,0,0.00,'fixed',1),(32,1,0,0.00,'fixed',1),(32,6,0,0.00,'fixed',1),(32,8,0,0.00,'fixed',1),(32,9,0,0.00,'fixed',1),(32,19,0,0.00,'fixed',1),(33,1,0,0.00,'fixed',1),(33,2,0,0.00,'fixed',1),(33,6,0,0.00,'fixed',1),(33,11,0,0.00,'fixed',1),(33,12,0,0.00,'fixed',1),(33,13,0,0.00,'fixed',1),(33,15,0,0.00,'fixed',1),(34,4,0,0.00,'fixed',1),(34,7,0,0.00,'fixed',1),(34,10,0,0.00,'fixed',1),(34,12,0,0.00,'fixed',1),(34,13,0,0.00,'fixed',1),(34,17,0,0.00,'fixed',1),(34,19,0,0.00,'fixed',1),(35,3,0,0.00,'fixed',1),(35,5,0,0.00,'fixed',1),(35,11,0,0.00,'fixed',1),(35,14,0,0.00,'fixed',1),(35,15,0,0.00,'fixed',1),(35,19,0,0.00,'fixed',1),(36,1,0,0.00,'fixed',1),(36,9,0,0.00,'fixed',1),(36,16,0,0.00,'fixed',1),(36,18,0,0.00,'fixed',1),(36,19,0,0.00,'fixed',1),(37,5,0,0.00,'fixed',1),(37,6,0,0.00,'fixed',1),(37,7,0,0.00,'fixed',1),(37,9,0,0.00,'fixed',1),(37,12,0,0.00,'fixed',1),(37,13,0,0.00,'fixed',1),(38,10,0,0.00,'fixed',1),(38,13,0,0.00,'fixed',1),(38,14,0,0.00,'fixed',1),(38,15,0,0.00,'fixed',1),(38,19,0,0.00,'fixed',1),(39,4,0,0.00,'fixed',1),(39,7,0,0.00,'fixed',1),(39,8,0,0.00,'fixed',1),(39,9,0,0.00,'fixed',1),(39,18,0,0.00,'fixed',1),(39,19,0,0.00,'fixed',1),(40,6,0,0.00,'fixed',1),(40,7,0,0.00,'fixed',1),(40,12,0,0.00,'fixed',1),(40,15,0,0.00,'fixed',1),(40,16,0,0.00,'fixed',1),(40,17,0,0.00,'fixed',1),(40,18,0,0.00,'fixed',1),(41,1,0,0.00,'fixed',1),(41,7,0,0.00,'fixed',1),(41,10,0,0.00,'fixed',1),(41,13,0,0.00,'fixed',1),(41,14,0,0.00,'fixed',1),(42,3,0,0.00,'fixed',1),(42,4,0,0.00,'fixed',1),(42,5,0,0.00,'fixed',1),(42,10,0,0.00,'fixed',1),(42,11,0,0.00,'fixed',1),(42,19,0,0.00,'fixed',1),(43,1,0,0.00,'fixed',1),(43,10,0,0.00,'fixed',1),(43,11,0,0.00,'fixed',1),(43,13,0,0.00,'fixed',1),(43,18,0,0.00,'fixed',1),(44,4,0,0.00,'fixed',1),(44,5,0,0.00,'fixed',1),(44,7,0,0.00,'fixed',1),(44,8,0,0.00,'fixed',1),(44,9,0,0.00,'fixed',1),(44,15,0,0.00,'fixed',1),(44,16,0,0.00,'fixed',1),(45,2,0,0.00,'fixed',1),(45,5,0,0.00,'fixed',1),(45,6,0,0.00,'fixed',1),(45,12,0,0.00,'fixed',1),(45,15,0,0.00,'fixed',1),(45,16,0,0.00,'fixed',1),(46,4,0,0.00,'fixed',1),(46,6,0,0.00,'fixed',1),(46,12,0,0.00,'fixed',1),(46,16,0,0.00,'fixed',1),(46,18,0,0.00,'fixed',1),(46,19,0,0.00,'fixed',1),(47,1,0,0.00,'fixed',1),(47,7,0,0.00,'fixed',1),(47,16,0,0.00,'fixed',1),(47,17,0,0.00,'fixed',1),(47,18,0,0.00,'fixed',1),(48,3,0,0.00,'fixed',1),(48,4,0,0.00,'fixed',1),(48,5,0,0.00,'fixed',1),(48,12,0,0.00,'fixed',1),(48,13,0,0.00,'fixed',1),(48,18,0,0.00,'fixed',1),(48,19,0,0.00,'fixed',1),(49,1,0,0.00,'fixed',1),(49,4,0,0.00,'fixed',1),(49,6,0,0.00,'fixed',1),(49,10,0,0.00,'fixed',1),(49,15,0,0.00,'fixed',1),(49,16,0,0.00,'fixed',1),(49,19,0,0.00,'fixed',1),(50,6,0,0.00,'fixed',1),(50,8,0,0.00,'fixed',1),(50,9,0,0.00,'fixed',1),(50,13,0,0.00,'fixed',1),(50,16,0,0.00,'fixed',1),(50,18,0,0.00,'fixed',1),(51,1,0,0.00,'fixed',1),(51,2,0,0.00,'fixed',1),(51,3,0,0.00,'fixed',1),(51,4,0,0.00,'fixed',1),(51,10,0,0.00,'fixed',1),(51,11,0,0.00,'fixed',1),(51,15,0,0.00,'fixed',1),(52,5,0,0.00,'fixed',1),(52,6,0,0.00,'fixed',1),(52,7,0,0.00,'fixed',1),(52,9,0,0.00,'fixed',1),(52,13,0,0.00,'fixed',1),(52,19,0,0.00,'fixed',1),(53,6,0,0.00,'fixed',1),(53,7,0,0.00,'fixed',1),(53,14,0,0.00,'fixed',1),(53,15,0,0.00,'fixed',1),(54,1,0,0.00,'fixed',1),(54,7,0,0.00,'fixed',1),(54,13,0,0.00,'fixed',1),(54,15,0,0.00,'fixed',1),(54,16,0,0.00,'fixed',1),(54,19,0,0.00,'fixed',1),(55,2,0,0.00,'fixed',1),(55,11,0,0.00,'fixed',1),(55,13,0,0.00,'fixed',1),(55,14,0,0.00,'fixed',1),(55,17,0,0.00,'fixed',1),(55,19,0,0.00,'fixed',1),(56,1,0,0.00,'fixed',1),(56,10,0,0.00,'fixed',1),(56,11,0,0.00,'fixed',1),(56,14,0,0.00,'fixed',1),(56,15,0,0.00,'fixed',1),(56,16,0,0.00,'fixed',1),(57,1,0,0.00,'fixed',1),(57,5,0,0.00,'fixed',1),(57,8,0,0.00,'fixed',1),(57,10,0,0.00,'fixed',1),(57,12,0,0.00,'fixed',1),(57,13,0,0.00,'fixed',1),(57,19,0,0.00,'fixed',1),(58,2,0,0.00,'fixed',1),(58,6,0,0.00,'fixed',1),(58,10,0,0.00,'fixed',1),(58,11,0,0.00,'fixed',1),(58,13,0,0.00,'fixed',1),(58,18,0,0.00,'fixed',1),(58,19,0,0.00,'fixed',1),(59,7,0,0.00,'fixed',1),(59,8,0,0.00,'fixed',1),(59,10,0,0.00,'fixed',1),(59,11,0,0.00,'fixed',1),(59,13,0,0.00,'fixed',1),(59,15,0,0.00,'fixed',1),(60,1,0,0.00,'fixed',1),(60,10,0,0.00,'fixed',1),(60,13,0,0.00,'fixed',1),(60,15,0,0.00,'fixed',1),(60,18,0,0.00,'fixed',1),(60,19,0,0.00,'fixed',1),(61,2,0,0.00,'fixed',1),(61,3,0,0.00,'fixed',1),(61,5,0,0.00,'fixed',1),(61,8,0,0.00,'fixed',1),(61,9,0,0.00,'fixed',1),(61,11,0,0.00,'fixed',1),(62,2,0,0.00,'fixed',1),(62,3,0,0.00,'fixed',1),(62,7,0,0.00,'fixed',1),(62,9,0,0.00,'fixed',1),(62,15,0,0.00,'fixed',1),(62,18,0,0.00,'fixed',1),(63,1,0,0.00,'fixed',1),(63,6,0,0.00,'fixed',1),(63,7,0,0.00,'fixed',1),(63,8,0,0.00,'fixed',1),(63,15,0,0.00,'fixed',1),(63,16,0,0.00,'fixed',1),(63,17,0,0.00,'fixed',1),(64,6,0,0.00,'fixed',1),(64,10,0,0.00,'fixed',1),(64,11,0,0.00,'fixed',1),(64,13,0,0.00,'fixed',1),(64,16,0,0.00,'fixed',1),(64,18,0,0.00,'fixed',1),(65,1,0,0.00,'fixed',1),(65,4,0,0.00,'fixed',1),(65,6,0,0.00,'fixed',1),(65,13,0,0.00,'fixed',1),(65,18,0,0.00,'fixed',1),(65,19,0,0.00,'fixed',1);
/*!40000 ALTER TABLE `ec_product_cross_sale_relations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_files`
--
DROP TABLE IF EXISTS `ec_product_files`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_files` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`product_id` bigint unsigned DEFAULT NULL,
`url` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`extras` mediumtext COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ec_product_files_product_id_index` (`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=122 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_files`
--
LOCK TABLES `ec_product_files` WRITE;
/*!40000 ALTER TABLE `ec_product_files` DISABLE KEYS */;
INSERT INTO `ec_product_files` VALUES (1,66,'ecommerce/digital-product-files/1.jpg','{\"filename\":\"1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:40\",\"name\":\"1\",\"extension\":\"jpg\"}','2025-10-26 20:13:40','2025-10-26 20:13:40'),(2,72,'ecommerce/digital-product-files/5.jpg','{\"filename\":\"5.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"5\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(3,72,'ecommerce/digital-product-files/5-1.jpg','{\"filename\":\"5-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"5-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(4,72,'ecommerce/digital-product-files/5-2.jpg','{\"filename\":\"5-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"5-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(5,72,'ecommerce/digital-product-files/5-3.jpg','{\"filename\":\"5-3.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"5-3\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(6,73,'ecommerce/digital-product-files/5.jpg','{\"filename\":\"5.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"5\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(7,73,'ecommerce/digital-product-files/5-1.jpg','{\"filename\":\"5-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"5-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(8,73,'ecommerce/digital-product-files/5-2.jpg','{\"filename\":\"5-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"5-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(9,73,'ecommerce/digital-product-files/5-3.jpg','{\"filename\":\"5-3.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"5-3\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(10,74,'ecommerce/digital-product-files/5.jpg','{\"filename\":\"5.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"5\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(11,74,'ecommerce/digital-product-files/5-1.jpg','{\"filename\":\"5-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"5-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(12,74,'ecommerce/digital-product-files/5-2.jpg','{\"filename\":\"5-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"5-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(13,74,'ecommerce/digital-product-files/5-3.jpg','{\"filename\":\"5-3.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"5-3\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(14,85,'ecommerce/digital-product-files/9.jpg','{\"filename\":\"9.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/9.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"9\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(15,85,'ecommerce/digital-product-files/9-1.jpg','{\"filename\":\"9-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/9-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"9-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(16,85,'ecommerce/digital-product-files/9-2.jpg','{\"filename\":\"9-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/9-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:41\",\"name\":\"9-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:41','2025-10-26 20:13:41'),(17,96,'ecommerce/digital-product-files/13.jpg','{\"filename\":\"13.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/13.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:42\",\"name\":\"13\",\"extension\":\"jpg\"}','2025-10-26 20:13:42','2025-10-26 20:13:42'),(18,96,'ecommerce/digital-product-files/13-1.jpg','{\"filename\":\"13-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/13-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:42\",\"name\":\"13-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:42','2025-10-26 20:13:42'),(19,97,'ecommerce/digital-product-files/13.jpg','{\"filename\":\"13.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/13.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:42\",\"name\":\"13\",\"extension\":\"jpg\"}','2025-10-26 20:13:42','2025-10-26 20:13:42'),(20,97,'ecommerce/digital-product-files/13-1.jpg','{\"filename\":\"13-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/13-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:42\",\"name\":\"13-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:42','2025-10-26 20:13:42'),(21,98,'ecommerce/digital-product-files/13.jpg','{\"filename\":\"13.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/13.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:42\",\"name\":\"13\",\"extension\":\"jpg\"}','2025-10-26 20:13:42','2025-10-26 20:13:42'),(22,98,'ecommerce/digital-product-files/13-1.jpg','{\"filename\":\"13-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/13-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:42\",\"name\":\"13-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:42','2025-10-26 20:13:42'),(23,107,'ecommerce/digital-product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(24,107,'ecommerce/digital-product-files/17-1.jpg','{\"filename\":\"17-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(25,107,'ecommerce/digital-product-files/17-2.jpg','{\"filename\":\"17-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(26,107,'ecommerce/digital-product-files/17-3.jpg','{\"filename\":\"17-3.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17-3\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(27,108,'ecommerce/digital-product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(28,108,'ecommerce/digital-product-files/17-1.jpg','{\"filename\":\"17-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(29,108,'ecommerce/digital-product-files/17-2.jpg','{\"filename\":\"17-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(30,108,'ecommerce/digital-product-files/17-3.jpg','{\"filename\":\"17-3.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17-3\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(31,109,'ecommerce/digital-product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(32,109,'ecommerce/digital-product-files/17-1.jpg','{\"filename\":\"17-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(33,109,'ecommerce/digital-product-files/17-2.jpg','{\"filename\":\"17-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(34,109,'ecommerce/digital-product-files/17-3.jpg','{\"filename\":\"17-3.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17-3\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(35,110,'ecommerce/digital-product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(36,110,'ecommerce/digital-product-files/17-1.jpg','{\"filename\":\"17-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(37,110,'ecommerce/digital-product-files/17-2.jpg','{\"filename\":\"17-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(38,110,'ecommerce/digital-product-files/17-3.jpg','{\"filename\":\"17-3.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"17-3\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(39,118,'ecommerce/digital-product-files/21.jpg','{\"filename\":\"21.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/21.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"21\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(40,118,'ecommerce/digital-product-files/21-1.jpg','{\"filename\":\"21-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/21-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"21-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(41,118,'ecommerce/digital-product-files/21-2.jpg','{\"filename\":\"21-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/21-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"21-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(42,119,'ecommerce/digital-product-files/21.jpg','{\"filename\":\"21.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/21.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"21\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(43,119,'ecommerce/digital-product-files/21-1.jpg','{\"filename\":\"21-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/21-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"21-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(44,119,'ecommerce/digital-product-files/21-2.jpg','{\"filename\":\"21-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/21-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:43\",\"name\":\"21-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:43','2025-10-26 20:13:43'),(45,125,'ecommerce/digital-product-files/25.jpg','{\"filename\":\"25.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"25\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(46,125,'ecommerce/digital-product-files/25-1.jpg','{\"filename\":\"25-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"25-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(47,125,'ecommerce/digital-product-files/25-2.jpg','{\"filename\":\"25-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"25-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(48,126,'ecommerce/digital-product-files/25.jpg','{\"filename\":\"25.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"25\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(49,126,'ecommerce/digital-product-files/25-1.jpg','{\"filename\":\"25-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"25-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(50,126,'ecommerce/digital-product-files/25-2.jpg','{\"filename\":\"25-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"25-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(51,127,'ecommerce/digital-product-files/25.jpg','{\"filename\":\"25.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"25\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(52,127,'ecommerce/digital-product-files/25-1.jpg','{\"filename\":\"25-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"25-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(53,127,'ecommerce/digital-product-files/25-2.jpg','{\"filename\":\"25-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"25-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(54,128,'ecommerce/digital-product-files/25.jpg','{\"filename\":\"25.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"25\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(55,128,'ecommerce/digital-product-files/25-1.jpg','{\"filename\":\"25-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"25-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(56,128,'ecommerce/digital-product-files/25-2.jpg','{\"filename\":\"25-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"25-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(57,138,'ecommerce/digital-product-files/29.jpg','{\"filename\":\"29.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/29.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"29\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(58,138,'ecommerce/digital-product-files/29-1.jpg','{\"filename\":\"29-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/29-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"29-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(59,138,'ecommerce/digital-product-files/29-2.jpg','{\"filename\":\"29-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/29-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"29-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(60,139,'ecommerce/digital-product-files/29.jpg','{\"filename\":\"29.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/29.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"29\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(61,139,'ecommerce/digital-product-files/29-1.jpg','{\"filename\":\"29-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/29-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"29-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(62,139,'ecommerce/digital-product-files/29-2.jpg','{\"filename\":\"29-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/29-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"29-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(63,146,'ecommerce/digital-product-files/33.jpg','{\"filename\":\"33.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"33\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(64,146,'ecommerce/digital-product-files/33-1.jpg','{\"filename\":\"33-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"33-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(65,146,'ecommerce/digital-product-files/33-2.jpg','{\"filename\":\"33-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"33-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(66,147,'ecommerce/digital-product-files/33.jpg','{\"filename\":\"33.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"33\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(67,147,'ecommerce/digital-product-files/33-1.jpg','{\"filename\":\"33-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"33-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(68,147,'ecommerce/digital-product-files/33-2.jpg','{\"filename\":\"33-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:44\",\"name\":\"33-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:44','2025-10-26 20:13:44'),(69,156,'ecommerce/digital-product-files/37.jpg','{\"filename\":\"37.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"37\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(70,156,'ecommerce/digital-product-files/37-1.jpg','{\"filename\":\"37-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"37-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(71,156,'ecommerce/digital-product-files/37-2.jpg','{\"filename\":\"37-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"37-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(72,157,'ecommerce/digital-product-files/37.jpg','{\"filename\":\"37.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"37\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(73,157,'ecommerce/digital-product-files/37-1.jpg','{\"filename\":\"37-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"37-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(74,157,'ecommerce/digital-product-files/37-2.jpg','{\"filename\":\"37-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"37-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(75,158,'ecommerce/digital-product-files/37.jpg','{\"filename\":\"37.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"37\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(76,158,'ecommerce/digital-product-files/37-1.jpg','{\"filename\":\"37-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"37-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(77,158,'ecommerce/digital-product-files/37-2.jpg','{\"filename\":\"37-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"37-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(78,166,'ecommerce/digital-product-files/41.jpg','{\"filename\":\"41.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"41\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(79,166,'ecommerce/digital-product-files/41-1.jpg','{\"filename\":\"41-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"41-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(80,166,'ecommerce/digital-product-files/41-2.jpg','{\"filename\":\"41-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"41-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(81,167,'ecommerce/digital-product-files/41.jpg','{\"filename\":\"41.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"41\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(82,167,'ecommerce/digital-product-files/41-1.jpg','{\"filename\":\"41-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"41-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(83,167,'ecommerce/digital-product-files/41-2.jpg','{\"filename\":\"41-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"41-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(84,176,'ecommerce/digital-product-files/45.jpg','{\"filename\":\"45.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"45\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(85,176,'ecommerce/digital-product-files/45-1.jpg','{\"filename\":\"45-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"45-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(86,177,'ecommerce/digital-product-files/45.jpg','{\"filename\":\"45.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"45\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(87,177,'ecommerce/digital-product-files/45-1.jpg','{\"filename\":\"45-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"45-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(88,178,'ecommerce/digital-product-files/45.jpg','{\"filename\":\"45.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"45\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(89,178,'ecommerce/digital-product-files/45-1.jpg','{\"filename\":\"45-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"45-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(90,179,'ecommerce/digital-product-files/45.jpg','{\"filename\":\"45.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"45\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(91,179,'ecommerce/digital-product-files/45-1.jpg','{\"filename\":\"45-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:45\",\"name\":\"45-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:45','2025-10-26 20:13:45'),(92,187,'ecommerce/digital-product-files/49.jpg','{\"filename\":\"49.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:46\",\"name\":\"49\",\"extension\":\"jpg\"}','2025-10-26 20:13:46','2025-10-26 20:13:46'),(93,187,'ecommerce/digital-product-files/49-1.jpg','{\"filename\":\"49-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:46\",\"name\":\"49-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:46','2025-10-26 20:13:46'),(94,187,'ecommerce/digital-product-files/49-2.jpg','{\"filename\":\"49-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:46\",\"name\":\"49-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:46','2025-10-26 20:13:46'),(95,188,'ecommerce/digital-product-files/49.jpg','{\"filename\":\"49.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:46\",\"name\":\"49\",\"extension\":\"jpg\"}','2025-10-26 20:13:46','2025-10-26 20:13:46'),(96,188,'ecommerce/digital-product-files/49-1.jpg','{\"filename\":\"49-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:46\",\"name\":\"49-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:46','2025-10-26 20:13:46'),(97,188,'ecommerce/digital-product-files/49-2.jpg','{\"filename\":\"49-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:46\",\"name\":\"49-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:46','2025-10-26 20:13:46'),(98,197,'ecommerce/digital-product-files/53.jpg','{\"filename\":\"53.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/53.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:46\",\"name\":\"53\",\"extension\":\"jpg\"}','2025-10-26 20:13:46','2025-10-26 20:13:46'),(99,197,'ecommerce/digital-product-files/53-1.jpg','{\"filename\":\"53-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/53-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:46\",\"name\":\"53-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:46','2025-10-26 20:13:46'),(100,198,'ecommerce/digital-product-files/53.jpg','{\"filename\":\"53.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/53.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:46\",\"name\":\"53\",\"extension\":\"jpg\"}','2025-10-26 20:13:46','2025-10-26 20:13:46'),(101,198,'ecommerce/digital-product-files/53-1.jpg','{\"filename\":\"53-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/53-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:46\",\"name\":\"53-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:46','2025-10-26 20:13:46'),(102,206,'ecommerce/digital-product-files/57.jpg','{\"filename\":\"57.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/57.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:46\",\"name\":\"57\",\"extension\":\"jpg\"}','2025-10-26 20:13:46','2025-10-26 20:13:46'),(103,206,'ecommerce/digital-product-files/57-1.jpg','{\"filename\":\"57-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/57-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:46\",\"name\":\"57-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:46','2025-10-26 20:13:46'),(104,217,'ecommerce/digital-product-files/61.jpg','{\"filename\":\"61.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/61.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"61\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(105,217,'ecommerce/digital-product-files/61-1.jpg','{\"filename\":\"61-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/61-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"61-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(106,218,'ecommerce/digital-product-files/61.jpg','{\"filename\":\"61.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/61.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"61\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(107,218,'ecommerce/digital-product-files/61-1.jpg','{\"filename\":\"61-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/61-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"61-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(108,219,'ecommerce/digital-product-files/61.jpg','{\"filename\":\"61.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/61.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"61\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(109,219,'ecommerce/digital-product-files/61-1.jpg','{\"filename\":\"61-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/61-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"61-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(110,230,'ecommerce/digital-product-files/65.jpg','{\"filename\":\"65.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"65\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(111,230,'ecommerce/digital-product-files/65-1.jpg','{\"filename\":\"65-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"65-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(112,230,'ecommerce/digital-product-files/65-2.jpg','{\"filename\":\"65-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"65-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(113,231,'ecommerce/digital-product-files/65.jpg','{\"filename\":\"65.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"65\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(114,231,'ecommerce/digital-product-files/65-1.jpg','{\"filename\":\"65-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"65-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(115,231,'ecommerce/digital-product-files/65-2.jpg','{\"filename\":\"65-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"65-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(116,232,'ecommerce/digital-product-files/65.jpg','{\"filename\":\"65.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"65\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(117,232,'ecommerce/digital-product-files/65-1.jpg','{\"filename\":\"65-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"65-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(118,232,'ecommerce/digital-product-files/65-2.jpg','{\"filename\":\"65-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"65-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(119,233,'ecommerce/digital-product-files/65.jpg','{\"filename\":\"65.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"65\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(120,233,'ecommerce/digital-product-files/65-1.jpg','{\"filename\":\"65-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"65-1\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47'),(121,233,'ecommerce/digital-product-files/65-2.jpg','{\"filename\":\"65-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":9730,\"modified\":\"2025-10-27 03:13:47\",\"name\":\"65-2\",\"extension\":\"jpg\"}','2025-10-26 20:13:47','2025-10-26 20:13:47');
/*!40000 ALTER TABLE `ec_product_files` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_label_products`
--
DROP TABLE IF EXISTS `ec_product_label_products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_label_products` (
`product_label_id` bigint unsigned NOT NULL,
`product_id` bigint unsigned NOT NULL,
PRIMARY KEY (`product_label_id`,`product_id`),
KEY `ec_product_label_products_product_label_id_index` (`product_label_id`),
KEY `ec_product_label_products_product_id_index` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_label_products`
--
LOCK TABLES `ec_product_label_products` WRITE;
/*!40000 ALTER TABLE `ec_product_label_products` DISABLE KEYS */;
INSERT INTO `ec_product_label_products` VALUES (1,3),(1,15),(1,21),(1,24),(1,45),(1,51),(1,54),(2,9),(2,12),(2,18),(2,30),(2,36),(2,39),(2,42),(2,57),(2,63),(3,6),(3,27),(3,33),(3,48),(3,60);
/*!40000 ALTER TABLE `ec_product_label_products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_labels`
--
DROP TABLE IF EXISTS `ec_product_labels`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_labels` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`color` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`text_color` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_labels`
--
LOCK TABLES `ec_product_labels` WRITE;
/*!40000 ALTER TABLE `ec_product_labels` DISABLE KEYS */;
INSERT INTO `ec_product_labels` VALUES (1,'Hot','#d71e2d','published','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL),(2,'New','#02856e','published','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL),(3,'Sale','#fe9931','published','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL);
/*!40000 ALTER TABLE `ec_product_labels` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_labels_translations`
--
DROP TABLE IF EXISTS `ec_product_labels_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_labels_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_product_labels_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_product_labels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_labels_translations`
--
LOCK TABLES `ec_product_labels_translations` WRITE;
/*!40000 ALTER TABLE `ec_product_labels_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_labels_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_license_codes`
--
DROP TABLE IF EXISTS `ec_product_license_codes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_license_codes` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`product_id` bigint unsigned NOT NULL,
`license_code` text COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'available',
`assigned_order_product_id` bigint unsigned DEFAULT NULL,
`assigned_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ec_product_license_codes_product_id_status_index` (`product_id`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_license_codes`
--
LOCK TABLES `ec_product_license_codes` WRITE;
/*!40000 ALTER TABLE `ec_product_license_codes` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_license_codes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_related_relations`
--
DROP TABLE IF EXISTS `ec_product_related_relations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_related_relations` (
`from_product_id` bigint unsigned NOT NULL,
`to_product_id` bigint unsigned NOT NULL,
PRIMARY KEY (`from_product_id`,`to_product_id`),
KEY `ec_product_related_relations_from_product_id_index` (`from_product_id`),
KEY `ec_product_related_relations_to_product_id_index` (`to_product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_related_relations`
--
LOCK TABLES `ec_product_related_relations` WRITE;
/*!40000 ALTER TABLE `ec_product_related_relations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_related_relations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_specification_attribute`
--
DROP TABLE IF EXISTS `ec_product_specification_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_specification_attribute` (
`product_id` bigint unsigned NOT NULL,
`attribute_id` bigint unsigned NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci,
`hidden` tinyint(1) NOT NULL DEFAULT '0',
`order` tinyint NOT NULL DEFAULT '0',
PRIMARY KEY (`product_id`,`attribute_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_specification_attribute`
--
LOCK TABLES `ec_product_specification_attribute` WRITE;
/*!40000 ALTER TABLE `ec_product_specification_attribute` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_specification_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_specification_attribute_translations`
--
DROP TABLE IF EXISTS `ec_product_specification_attribute_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_specification_attribute_translations` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`product_id` bigint unsigned NOT NULL,
`attribute_id` bigint unsigned NOT NULL,
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `psat_unique` (`product_id`,`attribute_id`,`lang_code`),
KEY `psat_product_attribute_index` (`product_id`,`attribute_id`),
KEY `psat_product_id_index` (`product_id`),
KEY `psat_attribute_id_index` (`attribute_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_specification_attribute_translations`
--
LOCK TABLES `ec_product_specification_attribute_translations` WRITE;
/*!40000 ALTER TABLE `ec_product_specification_attribute_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_specification_attribute_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_tag_product`
--
DROP TABLE IF EXISTS `ec_product_tag_product`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_tag_product` (
`product_id` bigint unsigned NOT NULL,
`tag_id` bigint unsigned NOT NULL,
PRIMARY KEY (`product_id`,`tag_id`),
KEY `ec_product_tag_product_product_id_index` (`product_id`),
KEY `ec_product_tag_product_tag_id_index` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_tag_product`
--
LOCK TABLES `ec_product_tag_product` WRITE;
/*!40000 ALTER TABLE `ec_product_tag_product` DISABLE KEYS */;
INSERT INTO `ec_product_tag_product` VALUES (1,3),(1,5),(2,2),(2,4),(2,5),(3,1),(3,2),(3,3),(4,1),(4,2),(4,6),(5,2),(5,3),(6,1),(6,6),(7,2),(7,5),(8,2),(9,1),(10,2),(10,5),(11,4),(11,5),(12,2),(12,5),(12,6),(13,2),(13,3),(14,3),(14,4),(14,5),(15,1),(15,4),(16,2),(16,4),(17,1),(17,4),(17,5),(18,1),(18,5),(19,1),(19,3),(19,5),(20,3),(20,4),(20,5),(21,1),(21,2),(21,5),(22,2),(22,3),(22,5),(23,1),(23,3),(23,5),(24,4),(24,6),(25,1),(25,4),(25,6),(26,2),(26,5),(26,6),(27,2),(27,3),(27,4),(28,1),(28,4),(29,4),(29,5),(30,1),(30,2),(30,5),(31,1),(31,2),(31,4),(32,2),(32,3),(32,4),(33,3),(33,5),(33,6),(34,3),(34,4),(34,5),(35,2),(35,5),(35,6),(36,3),(36,4),(36,6),(37,2),(37,4),(37,5),(38,5),(38,6),(39,2),(39,3),(39,5),(40,1),(40,3),(40,4),(41,1),(41,3),(42,2),(42,4),(42,5),(43,1),(43,2),(43,6),(44,2),(44,5),(45,1),(45,4),(45,5),(46,1),(46,3),(46,6),(47,3),(47,5),(48,1),(48,6),(49,1),(49,2),(49,6),(50,1),(50,2),(51,1),(51,6),(52,3),(52,6),(53,3),(53,5),(53,6),(54,3),(54,4),(54,6),(55,1),(55,3),(55,5),(56,5),(56,6),(57,1),(57,4),(57,5),(58,1),(58,2),(58,4),(59,2),(59,5),(59,6),(60,2),(60,3),(60,6),(61,4),(61,5),(61,6),(62,1),(62,6),(63,4),(63,5),(64,3),(64,4),(64,6),(65,1),(65,4),(65,6);
/*!40000 ALTER TABLE `ec_product_tag_product` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_tags`
--
DROP TABLE IF EXISTS `ec_product_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_tags` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_tags`
--
LOCK TABLES `ec_product_tags` WRITE;
/*!40000 ALTER TABLE `ec_product_tags` DISABLE KEYS */;
INSERT INTO `ec_product_tags` VALUES (1,'Electronic',NULL,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(2,'Mobile',NULL,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(3,'Iphone',NULL,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(4,'Printer',NULL,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(5,'Office',NULL,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(6,'IT',NULL,'published','2025-10-26 20:13:47','2025-10-26 20:13:47');
/*!40000 ALTER TABLE `ec_product_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_tags_translations`
--
DROP TABLE IF EXISTS `ec_product_tags_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_tags_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_product_tags_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_product_tags_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_tags_translations`
--
LOCK TABLES `ec_product_tags_translations` WRITE;
/*!40000 ALTER TABLE `ec_product_tags_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_tags_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_up_sale_relations`
--
DROP TABLE IF EXISTS `ec_product_up_sale_relations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_up_sale_relations` (
`from_product_id` bigint unsigned NOT NULL,
`to_product_id` bigint unsigned NOT NULL,
PRIMARY KEY (`from_product_id`,`to_product_id`),
KEY `ec_product_up_sale_relations_from_product_id_index` (`from_product_id`),
KEY `ec_product_up_sale_relations_to_product_id_index` (`to_product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_up_sale_relations`
--
LOCK TABLES `ec_product_up_sale_relations` WRITE;
/*!40000 ALTER TABLE `ec_product_up_sale_relations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_up_sale_relations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_variation_items`
--
DROP TABLE IF EXISTS `ec_product_variation_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_variation_items` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`attribute_id` bigint unsigned NOT NULL,
`variation_id` bigint unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ec_product_variation_items_attribute_id_variation_id_unique` (`attribute_id`,`variation_id`),
KEY `attribute_variation_index` (`attribute_id`,`variation_id`),
KEY `idx_variation_id` (`variation_id`),
KEY `idx_variation_attribute_covering` (`variation_id`,`attribute_id`)
) ENGINE=InnoDB AUTO_INCREMENT=337 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_variation_items`
--
LOCK TABLES `ec_product_variation_items` WRITE;
/*!40000 ALTER TABLE `ec_product_variation_items` DISABLE KEYS */;
INSERT INTO `ec_product_variation_items` VALUES (1,1,1),(9,1,5),(21,1,11),(29,1,15),(33,1,17),(37,1,19),(49,1,25),(67,1,34),(89,1,45),(111,1,56),(31,2,16),(41,2,21),(61,2,31),(81,2,41),(87,2,44),(5,3,3),(23,3,12),(27,3,14),(43,3,22),(45,3,23),(47,3,24),(55,3,28),(57,3,29),(59,3,30),(75,3,38),(85,3,43),(99,3,50),(107,3,54),(109,3,55),(13,4,7),(15,4,8),(19,4,10),(39,4,20),(71,4,36),(73,4,37),(83,4,42),(95,4,48),(103,4,52),(3,5,2),(7,5,4),(11,5,6),(17,5,9),(25,5,13),(35,5,18),(51,5,26),(53,5,27),(63,5,32),(65,5,33),(69,5,35),(77,5,39),(79,5,40),(91,5,46),(93,5,47),(97,5,49),(101,5,51),(105,5,53),(4,6,2),(10,6,5),(20,6,10),(48,6,24),(54,6,27),(56,6,28),(58,6,29),(64,6,32),(68,6,34),(70,6,35),(76,6,38),(84,6,42),(88,6,44),(100,6,50),(112,6,56),(26,7,13),(40,7,20),(44,7,22),(46,7,23),(52,7,26),(74,7,37),(106,7,53),(2,8,1),(12,8,6),(18,8,9),(24,8,12),(28,8,14),(36,8,18),(42,8,21),(94,8,47),(110,8,55),(14,9,7),(30,9,15),(34,9,17),(60,9,30),(72,9,36),(78,9,39),(80,9,40),(90,9,45),(92,9,46),(98,9,49),(102,9,51),(104,9,52),(6,10,3),(8,10,4),(16,10,8),(22,10,11),(32,10,16),(38,10,19),(50,10,25),(62,10,31),(66,10,33),(82,10,41),(86,10,43),(96,10,48),(108,10,54),(119,11,60),(139,11,70),(155,11,78),(161,11,81),(177,11,89),(183,11,92),(187,11,94),(193,11,97),(199,11,100),(229,11,115),(237,11,119),(241,11,121),(275,11,138),(297,11,149),(305,11,153),(309,11,155),(315,11,158),(317,11,159),(327,11,164),(113,12,57),(129,12,65),(143,12,72),(147,12,74),(159,12,80),(169,12,85),(173,12,87),(185,12,93),(191,12,96),(201,12,101),(235,12,118),(239,12,120),(245,12,123),(249,12,125),(251,12,126),(257,12,129),(259,12,130),(269,12,135),(273,12,137),(323,12,162),(325,12,163),(333,12,167),(115,13,58),(117,13,59),(121,13,61),(123,13,62),(133,13,67),(141,13,71),(179,13,90),(181,13,91),(195,13,98),(197,13,99),(205,13,103),(207,13,104),(213,13,107),(219,13,110),(227,13,114),(247,13,124),(253,13,127),(255,13,128),(289,13,145),(295,13,148),(307,13,154),(329,13,165),(125,14,63),(131,14,66),(135,14,68),(137,14,69),(151,14,76),(153,14,77),(157,14,79),(163,14,82),(175,14,88),(189,14,95),(217,14,109),(233,14,117),(243,14,122),(263,14,132),(267,14,134),(279,14,140),(285,14,143),(293,14,147),(299,14,150),(303,14,152),(321,14,161),(335,14,168),(127,15,64),(145,15,73),(149,15,75),(165,15,83),(167,15,84),(171,15,86),(203,15,102),(209,15,105),(211,15,106),(215,15,108),(221,15,111),(223,15,112),(225,15,113),(231,15,116),(261,15,131),(265,15,133),(271,15,136),(277,15,139),(281,15,141),(283,15,142),(287,15,144),(291,15,146),(301,15,151),(311,15,156),(313,15,157),(319,15,160),(331,15,166),(128,16,64),(150,16,75),(152,16,76),(162,16,81),(178,16,89),(186,16,93),(188,16,94),(190,16,95),(208,16,104),(210,16,105),(216,16,108),(228,16,114),(252,16,126),(260,16,130),(262,16,131),(264,16,132),(266,16,133),(270,16,135),(286,16,143),(290,16,145),(306,16,153),(314,16,157),(324,16,162),(326,16,163),(332,16,166),(336,16,168),(114,17,57),(120,17,60),(126,17,63),(130,17,65),(134,17,67),(136,17,68),(144,17,72),(170,17,85),(174,17,87),(176,17,88),(204,17,102),(206,17,103),(214,17,107),(246,17,123),(248,17,124),(254,17,127),(258,17,129),(274,17,137),(276,17,138),(292,17,146),(296,17,148),(298,17,149),(310,17,155),(316,17,158),(328,17,164),(330,17,165),(334,17,167),(122,18,61),(124,18,62),(132,18,66),(138,18,69),(140,18,70),(146,18,73),(158,18,79),(172,18,86),(184,18,92),(212,18,106),(250,18,125),(256,18,128),(268,18,134),(282,18,141),(284,18,142),(302,18,151),(308,18,154),(312,18,156),(320,18,160),(116,19,58),(154,19,77),(160,19,80),(164,19,82),(168,19,84),(180,19,90),(192,19,96),(194,19,97),(198,19,99),(200,19,100),(202,19,101),(218,19,109),(220,19,110),(222,19,111),(226,19,113),(230,19,115),(232,19,116),(234,19,117),(236,19,118),(238,19,119),(240,19,120),(242,19,121),(280,19,140),(288,19,144),(304,19,152),(118,20,59),(142,20,71),(148,20,74),(156,20,78),(166,20,83),(182,20,91),(196,20,98),(224,20,112),(244,20,122),(272,20,136),(278,20,139),(294,20,147),(300,20,150),(318,20,159),(322,20,161);
/*!40000 ALTER TABLE `ec_product_variation_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_variations`
--
DROP TABLE IF EXISTS `ec_product_variations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_variations` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`product_id` bigint unsigned DEFAULT NULL,
`configurable_product_id` bigint unsigned NOT NULL,
`is_default` tinyint NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `ec_product_variations_product_id_configurable_product_id_unique` (`product_id`,`configurable_product_id`),
KEY `configurable_product_index` (`product_id`,`configurable_product_id`),
KEY `idx_configurable_product_id` (`configurable_product_id`),
KEY `idx_product_variations_config` (`configurable_product_id`,`is_default`)
) ENGINE=InnoDB AUTO_INCREMENT=169 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_variations`
--
LOCK TABLES `ec_product_variations` WRITE;
/*!40000 ALTER TABLE `ec_product_variations` DISABLE KEYS */;
INSERT INTO `ec_product_variations` VALUES (1,66,1,1),(2,67,2,1),(3,68,2,0),(4,69,2,0),(5,70,3,1),(6,71,4,1),(7,72,5,1),(8,73,5,0),(9,74,5,0),(10,75,6,1),(11,76,6,0),(12,77,6,0),(13,78,7,1),(14,79,7,0),(15,80,7,0),(16,81,7,0),(17,82,8,1),(18,83,8,0),(19,84,8,0),(20,85,9,1),(21,86,10,1),(22,87,10,0),(23,88,10,0),(24,89,10,0),(25,90,11,1),(26,91,11,0),(27,92,12,1),(28,93,12,0),(29,94,12,0),(30,95,12,0),(31,96,13,1),(32,97,13,0),(33,98,13,0),(34,99,14,1),(35,100,14,0),(36,101,14,0),(37,102,14,0),(38,103,15,1),(39,104,16,1),(40,105,16,0),(41,106,16,0),(42,107,17,1),(43,108,17,0),(44,109,17,0),(45,110,17,0),(46,111,18,1),(47,112,19,1),(48,113,19,0),(49,114,19,0),(50,115,20,1),(51,116,20,0),(52,117,20,0),(53,118,21,1),(54,119,21,0),(55,120,22,1),(56,121,23,1),(57,122,24,1),(58,123,24,0),(59,124,24,0),(60,125,25,1),(61,126,25,0),(62,127,25,0),(63,128,25,0),(64,129,26,1),(65,130,26,0),(66,131,26,0),(67,132,26,0),(68,133,27,1),(69,134,27,0),(70,135,27,0),(71,136,28,1),(72,137,28,0),(73,138,29,1),(74,139,29,0),(75,140,30,1),(76,141,30,0),(77,142,30,0),(78,143,31,1),(79,144,32,1),(80,145,32,0),(81,146,33,1),(82,147,33,0),(83,148,34,1),(84,149,34,0),(85,150,34,0),(86,151,34,0),(87,152,35,1),(88,153,36,1),(89,154,36,0),(90,155,36,0),(91,156,37,1),(92,157,37,0),(93,158,37,0),(94,159,38,1),(95,160,38,0),(96,161,38,0),(97,162,39,1),(98,163,40,1),(99,164,40,0),(100,165,40,0),(101,166,41,1),(102,167,41,0),(103,168,42,1),(104,169,42,0),(105,170,43,1),(106,171,43,0),(107,172,43,0),(108,173,43,0),(109,174,44,1),(110,175,44,0),(111,176,45,1),(112,177,45,0),(113,178,45,0),(114,179,45,0),(115,180,46,1),(116,181,47,1),(117,182,47,0),(118,183,48,1),(119,184,48,0),(120,185,48,0),(121,186,48,0),(122,187,49,1),(123,188,49,0),(124,189,50,1),(125,190,51,1),(126,191,51,0),(127,192,51,0),(128,193,52,1),(129,194,52,0),(130,195,52,0),(131,196,52,0),(132,197,53,1),(133,198,53,0),(134,199,54,1),(135,200,54,0),(136,201,55,1),(137,202,55,0),(138,203,55,0),(139,204,55,0),(140,205,56,1),(141,206,57,1),(142,207,58,1),(143,208,58,0),(144,209,58,0),(145,210,59,1),(146,211,59,0),(147,212,60,1),(148,213,60,0),(149,214,60,0),(150,215,60,0),(151,216,60,0),(152,217,61,1),(153,218,61,0),(154,219,61,0),(155,220,62,1),(156,221,62,0),(157,222,62,0),(158,223,63,1),(159,224,63,0),(160,225,63,0),(161,226,63,0),(162,227,64,1),(163,228,64,0),(164,229,64,0),(165,230,65,1),(166,231,65,0),(167,232,65,0),(168,233,65,0);
/*!40000 ALTER TABLE `ec_product_variations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_views`
--
DROP TABLE IF EXISTS `ec_product_views`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_views` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`product_id` bigint unsigned NOT NULL,
`views` int NOT NULL DEFAULT '1',
`date` date NOT NULL DEFAULT '2025-10-27',
PRIMARY KEY (`id`),
UNIQUE KEY `ec_product_views_product_id_date_unique` (`product_id`,`date`),
KEY `ec_product_views_product_id_index` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_views`
--
LOCK TABLES `ec_product_views` WRITE;
/*!40000 ALTER TABLE `ec_product_views` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_product_views` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_product_with_attribute_set`
--
DROP TABLE IF EXISTS `ec_product_with_attribute_set`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_product_with_attribute_set` (
`attribute_set_id` bigint unsigned NOT NULL,
`product_id` bigint unsigned NOT NULL,
`order` tinyint unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`product_id`,`attribute_set_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_product_with_attribute_set`
--
LOCK TABLES `ec_product_with_attribute_set` WRITE;
/*!40000 ALTER TABLE `ec_product_with_attribute_set` DISABLE KEYS */;
INSERT INTO `ec_product_with_attribute_set` VALUES (1,1,0),(2,1,0),(1,2,0),(2,2,0),(1,3,0),(2,3,0),(1,4,0),(2,4,0),(1,5,0),(2,5,0),(1,6,0),(2,6,0),(1,7,0),(2,7,0),(1,8,0),(2,8,0),(1,9,0),(2,9,0),(1,10,0),(2,10,0),(1,11,0),(2,11,0),(1,12,0),(2,12,0),(1,13,0),(2,13,0),(1,14,0),(2,14,0),(1,15,0),(2,15,0),(1,16,0),(2,16,0),(1,17,0),(2,17,0),(1,18,0),(2,18,0),(1,19,0),(2,19,0),(1,20,0),(2,20,0),(1,21,0),(2,21,0),(1,22,0),(2,22,0),(1,23,0),(2,23,0),(3,24,0),(4,24,0),(3,25,0),(4,25,0),(3,26,0),(4,26,0),(3,27,0),(4,27,0),(3,28,0),(4,28,0),(3,29,0),(4,29,0),(3,30,0),(4,30,0),(3,31,0),(4,31,0),(3,32,0),(4,32,0),(3,33,0),(4,33,0),(3,34,0),(4,34,0),(3,35,0),(4,35,0),(3,36,0),(4,36,0),(3,37,0),(4,37,0),(3,38,0),(4,38,0),(3,39,0),(4,39,0),(3,40,0),(4,40,0),(3,41,0),(4,41,0),(3,42,0),(4,42,0),(3,43,0),(4,43,0),(3,44,0),(4,44,0),(3,45,0),(4,45,0),(3,46,0),(4,46,0),(3,47,0),(4,47,0),(3,48,0),(4,48,0),(3,49,0),(4,49,0),(3,50,0),(4,50,0),(3,51,0),(4,51,0),(3,52,0),(4,52,0),(3,53,0),(4,53,0),(3,54,0),(4,54,0),(3,55,0),(4,55,0),(3,56,0),(4,56,0),(3,57,0),(4,57,0),(3,58,0),(4,58,0),(3,59,0),(4,59,0),(3,60,0),(4,60,0),(3,61,0),(4,61,0),(3,62,0),(4,62,0),(3,63,0),(4,63,0),(3,64,0),(4,64,0),(3,65,0),(4,65,0);
/*!40000 ALTER TABLE `ec_product_with_attribute_set` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_products`
--
DROP TABLE IF EXISTS `ec_products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_products` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`content` longtext COLLATE utf8mb4_unicode_ci,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`images` text COLLATE utf8mb4_unicode_ci,
`video_media` text COLLATE utf8mb4_unicode_ci,
`sku` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` int unsigned NOT NULL DEFAULT '0',
`quantity` int unsigned DEFAULT NULL,
`allow_checkout_when_out_of_stock` tinyint unsigned NOT NULL DEFAULT '0',
`with_storehouse_management` tinyint unsigned NOT NULL DEFAULT '0',
`stock_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'in_stock',
`is_featured` tinyint unsigned NOT NULL DEFAULT '0',
`brand_id` bigint unsigned DEFAULT NULL,
`is_variation` tinyint NOT NULL DEFAULT '0',
`variations_count` int unsigned NOT NULL DEFAULT '0',
`reviews_count` int unsigned NOT NULL DEFAULT '0',
`reviews_avg` decimal(3,2) NOT NULL DEFAULT '0.00',
`sale_type` tinyint 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 DEFAULT NULL,
`wide` double DEFAULT NULL,
`height` double DEFAULT NULL,
`weight` double DEFAULT NULL,
`tax_id` bigint unsigned DEFAULT NULL,
`views` bigint NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`created_by_id` bigint unsigned DEFAULT '0',
`created_by_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`product_type` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'physical',
`barcode` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`cost_per_item` double DEFAULT NULL,
`price_includes_tax` tinyint(1) NOT NULL DEFAULT '0',
`generate_license_code` tinyint(1) NOT NULL DEFAULT '0',
`license_code_type` enum('auto_generate','pick_from_list') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'auto_generate',
`minimum_order_quantity` int unsigned DEFAULT '0',
`maximum_order_quantity` int unsigned DEFAULT '0',
`notify_attachment_updated` tinyint(1) NOT NULL DEFAULT '0',
`specification_table_id` bigint unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ec_products_brand_id_status_is_variation_created_at_index` (`brand_id`,`status`,`is_variation`,`created_at`),
KEY `sale_type_index` (`sale_type`),
KEY `start_date_index` (`start_date`),
KEY `end_date_index` (`end_date`),
KEY `sale_price_index` (`sale_price`),
KEY `is_variation_index` (`is_variation`),
KEY `ec_products_sku_index` (`sku`),
KEY `idx_products_export` (`id`,`is_variation`),
KEY `idx_variation_name_id` (`is_variation`,`name`,`id`),
KEY `ec_products_variations_count_index` (`variations_count`),
KEY `ec_products_slug_index` (`slug`),
KEY `idx_products_status_variation` (`status`,`is_variation`,`id`),
KEY `idx_products_price_sale` (`sale_type`,`sale_price`,`price`),
KEY `idx_products_order_created` (`order`,`created_at`),
KEY `idx_products_stock` (`with_storehouse_management`,`stock_status`,`quantity`),
KEY `ec_products_reviews_count_index` (`reviews_count`),
KEY `ec_products_reviews_avg_index` (`reviews_avg`)
) ENGINE=InnoDB AUTO_INCREMENT=234 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_products`
--
LOCK TABLES `ec_products` WRITE;
/*!40000 ALTER TABLE `ec_products` DISABLE KEYS */;
INSERT INTO `ec_products` VALUES (1,'Dual Camera 20MP (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/1.jpg\"]',NULL,'SW-167-A0',0,13,0,1,'in_stock',1,5,0,1,8,4.13,0,80.25,NULL,NULL,NULL,19,20,19,761,NULL,118280,'2025-10-26 20:13:39','2025-10-26 20:13:40',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(2,'Smart Watches',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/2.jpg\",\"products\\/2-1.jpg\",\"products\\/2-2.jpg\",\"products\\/2-3.jpg\"]',NULL,'SW-105-A0',0,12,0,1,'in_stock',1,1,0,3,7,3.14,0,40.5,NULL,NULL,NULL,15,18,16,762,NULL,58285,'2025-10-26 20:13:39','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(3,'Beat Headphone',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/3.jpg\"]',NULL,'SW-123-A0',0,19,0,1,'in_stock',1,5,0,1,9,3.67,0,20,NULL,NULL,NULL,20,10,14,739,NULL,142764,'2025-10-26 20:13:39','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(4,'Red & Black Headphone',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/4.jpg\",\"products\\/4-1.jpg\",\"products\\/4-2.jpg\",\"products\\/4-3.jpg\"]',NULL,'SW-195-A0',0,18,0,1,'in_stock',1,3,0,1,6,1.83,0,587,493.08,NULL,NULL,12,15,11,732,NULL,63753,'2025-10-26 20:13:39','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(5,'Smart Watch External (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/5.jpg\",\"products\\/5-1.jpg\",\"products\\/5-2.jpg\",\"products\\/5-3.jpg\"]',NULL,'SW-156-A0',0,12,0,1,'in_stock',1,3,0,3,7,3.43,0,894,NULL,NULL,NULL,15,13,18,503,NULL,82756,'2025-10-26 20:13:39','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(6,'Nikon HD camera',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/6.jpg\"]',NULL,'SW-167-A0',0,11,0,1,'in_stock',1,2,0,3,9,2.89,0,426,NULL,NULL,NULL,11,11,17,870,NULL,172358,'2025-10-26 20:13:39','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(7,'Audio Equipment',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/7.jpg\"]',NULL,'SW-132-A0',0,13,0,1,'in_stock',1,5,0,4,6,4.50,0,585,NULL,NULL,NULL,17,20,11,687,NULL,12435,'2025-10-26 20:13:39','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(8,'Smart Televisions',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/8.jpg\",\"products\\/8-1.jpg\",\"products\\/8-2.jpg\",\"products\\/8-3.jpg\"]',NULL,'SW-191-A0',0,13,0,1,'in_stock',1,1,0,3,8,3.25,0,1170,936,NULL,NULL,17,11,13,757,NULL,75324,'2025-10-26 20:13:39','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(9,'Samsung Smart Phone (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/9.jpg\",\"products\\/9-1.jpg\",\"products\\/9-2.jpg\"]',NULL,'SW-185-A0',0,10,0,1,'in_stock',1,4,0,1,8,3.13,0,586,NULL,NULL,NULL,12,16,15,604,NULL,79635,'2025-10-26 20:13:39','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(10,'Herschel Leather Duffle Bag In Brown Color',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/10.jpg\",\"products\\/10-1.jpg\",\"products\\/10-2.jpg\"]',NULL,'SW-165-A0',0,19,0,1,'in_stock',0,2,0,4,8,3.75,0,1227,NULL,NULL,NULL,13,18,11,567,NULL,152185,'2025-10-26 20:13:39','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(11,'Xbox One Wireless Controller Black Color',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/11.jpg\",\"products\\/11-1.jpg\",\"products\\/11-2.jpg\",\"products\\/11-3.jpg\"]',NULL,'SW-128-A0',0,15,0,1,'in_stock',0,5,0,2,7,3.14,0,1196,NULL,NULL,NULL,15,16,11,798,NULL,75462,'2025-10-26 20:13:39','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(12,'EPSION Plaster Printer',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/12.jpg\",\"products\\/12-1.jpg\",\"products\\/12-2.jpg\",\"products\\/12-3.jpg\"]',NULL,'SW-157-A0',0,10,0,1,'in_stock',0,5,0,4,8,3.00,0,513,379.62,NULL,NULL,12,19,13,802,NULL,113425,'2025-10-26 20:13:39','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(13,'Sound Intone I65 Earphone White Version (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/13.jpg\",\"products\\/13-1.jpg\"]',NULL,'SW-121-A0',0,20,0,1,'in_stock',0,3,0,3,6,3.67,0,536,NULL,NULL,NULL,19,17,11,820,NULL,78382,'2025-10-26 20:13:39','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(14,'B&O Play Mini Bluetooth Speaker',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/14.jpg\"]',NULL,'SW-158-A0',0,14,0,1,'in_stock',0,2,0,4,7,3.43,0,555,NULL,NULL,NULL,18,14,15,544,NULL,123943,'2025-10-26 20:13:39','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(15,'Apple MacBook Air Retina 13.3-Inch Laptop',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/15.jpg\",\"products\\/15-1.jpg\"]',NULL,'SW-120-A0',0,16,0,1,'in_stock',0,2,0,1,8,4.63,0,580,NULL,NULL,NULL,12,19,18,717,NULL,173901,'2025-10-26 20:13:39','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(16,'Apple MacBook Air Retina 12-Inch Laptop',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/16.jpg\"]',NULL,'SW-179-A0',0,20,0,1,'in_stock',0,3,0,3,8,3.13,0,555,405.15,NULL,NULL,16,11,11,827,NULL,174751,'2025-10-26 20:13:39','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(17,'Samsung Gear VR Virtual Reality Headset (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/17.jpg\",\"products\\/17-1.jpg\",\"products\\/17-2.jpg\",\"products\\/17-3.jpg\"]',NULL,'SW-196-A0',0,17,0,1,'in_stock',0,2,0,4,7,3.29,0,582,NULL,NULL,NULL,14,12,16,604,NULL,175946,'2025-10-26 20:13:39','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(18,'Aveeno Moisturizing Body Shower 450ml',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/18.jpg\",\"products\\/18-1.jpg\",\"products\\/18-2.jpg\",\"products\\/18-3.jpg\"]',NULL,'SW-191-A0',0,17,0,1,'in_stock',0,5,0,1,9,3.33,0,1182,NULL,NULL,NULL,12,13,19,731,NULL,166894,'2025-10-26 20:13:39','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(19,'NYX Beauty Couton Pallete Makeup 12',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/19.jpg\",\"products\\/19-1.jpg\",\"products\\/19-2.jpg\",\"products\\/19-3.jpg\"]',NULL,'SW-110-A0',0,15,0,1,'in_stock',0,1,0,3,7,2.43,0,994,NULL,NULL,NULL,17,19,20,504,NULL,35687,'2025-10-26 20:13:39','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(20,'NYX Beauty Couton Pallete Makeup 12',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/20.jpg\",\"products\\/20-1.jpg\",\"products\\/20-2.jpg\",\"products\\/20-3.jpg\"]',NULL,'SW-189-A0',0,19,0,1,'in_stock',0,3,0,3,6,3.50,0,989,702.19,NULL,NULL,11,17,15,674,NULL,132261,'2025-10-26 20:13:39','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(21,'MVMTH Classical Leather Watch In Black (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/21.jpg\",\"products\\/21-1.jpg\",\"products\\/21-2.jpg\"]',NULL,'SW-112-A0',0,20,0,1,'in_stock',0,3,0,2,6,3.17,0,792,NULL,NULL,NULL,12,13,10,675,NULL,76687,'2025-10-26 20:13:39','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(22,'Baxter Care Hair Kit For Bearded Mens',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/22.jpg\",\"products\\/22-1.jpg\",\"products\\/22-2.jpg\",\"products\\/22-3.jpg\"]',NULL,'SW-173-A0',0,11,0,1,'in_stock',0,5,0,1,8,3.25,0,640,NULL,NULL,NULL,11,16,12,702,NULL,43861,'2025-10-26 20:13:40','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(23,'Ciate Palemore Lipstick Bold Red Color',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/23.jpg\",\"products\\/23-1.jpg\",\"products\\/23-2.jpg\",\"products\\/23-3.jpg\"]',NULL,'SW-151-A0',0,11,0,1,'in_stock',0,3,0,1,6,2.83,0,1023,NULL,NULL,NULL,13,17,12,546,NULL,109376,'2025-10-26 20:13:40','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(24,'Vimto Squash Remix Apple 1.5 Litres',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/24.jpg\",\"products\\/24-1.jpg\",\"products\\/24-2.jpg\"]',NULL,'SW-157-A0',0,14,0,1,'in_stock',0,3,0,3,7,3.00,0,1210,1089,NULL,NULL,19,19,17,844,NULL,124626,'2025-10-26 20:13:40','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(25,'Crock Pot Slow Cooker (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/25.jpg\",\"products\\/25-1.jpg\",\"products\\/25-2.jpg\"]',NULL,'SW-143-A0',0,16,0,1,'in_stock',0,4,0,4,7,3.57,0,1065,NULL,NULL,NULL,20,17,14,576,NULL,82289,'2025-10-26 20:13:40','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(26,'Taylors of Harrogate Yorkshire Coffee',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/26.jpg\",\"products\\/26-1.jpg\"]',NULL,'SW-172-A0',0,18,0,1,'in_stock',0,5,0,4,6,2.83,0,817,NULL,NULL,NULL,14,14,10,868,NULL,128405,'2025-10-26 20:13:40','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(27,'Soft Mochi & Galeto Ice Cream',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/27.jpg\",\"products\\/27-1.jpg\"]',NULL,'SW-169-A0',0,16,0,1,'in_stock',0,2,0,3,8,3.13,0,1145,NULL,NULL,NULL,18,13,11,713,NULL,6984,'2025-10-26 20:13:40','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(28,'Naked Noodle Egg Noodles Singapore',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/28.jpg\",\"products\\/28-1.jpg\",\"products\\/28-2.jpg\"]',NULL,'SW-140-A0',0,16,0,1,'in_stock',0,3,0,2,8,3.25,0,550,401.5,NULL,NULL,16,19,11,540,NULL,193138,'2025-10-26 20:13:40','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(29,'Saute Pan Silver (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/29.jpg\",\"products\\/29-1.jpg\",\"products\\/29-2.jpg\"]',NULL,'SW-137-A0',0,14,0,1,'in_stock',0,5,0,2,6,3.50,0,912,NULL,NULL,NULL,12,19,13,521,NULL,78872,'2025-10-26 20:13:40','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(30,'Bar S – Classic Bun Length Franks',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/30.jpg\",\"products\\/30-1.jpg\",\"products\\/30-2.jpg\"]',NULL,'SW-176-A0',0,17,0,1,'in_stock',0,5,0,3,6,2.83,0,1240,NULL,NULL,NULL,20,12,18,629,NULL,167257,'2025-10-26 20:13:40','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(31,'Broccoli Crowns',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/31.jpg\",\"products\\/31-1.jpg\"]',NULL,'SW-196-A0',0,16,0,1,'in_stock',0,5,0,1,7,2.57,0,567,NULL,NULL,NULL,19,20,11,829,NULL,2912,'2025-10-26 20:13:40','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(32,'Slimming World Vegan Mac Greens',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/32.jpg\",\"products\\/32-1.jpg\",\"products\\/32-2.jpg\"]',NULL,'SW-170-A0',0,16,0,1,'in_stock',0,3,0,2,8,2.25,0,1244,1119.6,NULL,NULL,17,13,10,567,NULL,9091,'2025-10-26 20:13:40','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(33,'Häagen-Dazs Salted Caramel (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/33.jpg\",\"products\\/33-1.jpg\",\"products\\/33-2.jpg\"]',NULL,'SW-189-A0',0,13,0,1,'in_stock',0,1,0,2,8,2.63,0,615,NULL,NULL,NULL,16,11,12,550,NULL,3742,'2025-10-26 20:13:40','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(34,'Iceland 3 Solo Exotic Burst',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/34.jpg\",\"products\\/34-1.jpg\"]',NULL,'SW-184-A0',0,10,0,1,'in_stock',0,4,0,4,9,2.89,0,1060,NULL,NULL,NULL,11,16,20,559,NULL,6614,'2025-10-26 20:13:40','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(35,'Extreme Budweiser Light Can',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/35.jpg\",\"products\\/35-1.jpg\"]',NULL,'SW-166-A0',0,16,0,1,'in_stock',0,3,0,1,9,3.56,0,1182,NULL,NULL,NULL,13,17,15,884,NULL,22866,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(36,'Iceland Macaroni Cheese Traybake',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/36.jpg\",\"products\\/36-1.jpg\",\"products\\/36-2.jpg\"]',NULL,'SW-126-A0',0,12,0,1,'in_stock',0,4,0,3,8,2.50,0,683,560.06,NULL,NULL,14,20,20,532,NULL,166290,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(37,'Dolmio Bolognese Pasta Sauce (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/37.jpg\",\"products\\/37-1.jpg\",\"products\\/37-2.jpg\"]',NULL,'SW-142-A0',0,19,0,1,'in_stock',0,2,0,3,8,2.88,0,1000,NULL,NULL,NULL,15,20,13,690,NULL,91982,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(38,'Sitema BakeIT Plastic Box',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/38.jpg\",\"products\\/38-1.jpg\",\"products\\/38-2.jpg\",\"products\\/38-3.jpg\"]',NULL,'SW-185-A0',0,15,0,1,'in_stock',0,1,0,3,5,2.80,0,810,NULL,NULL,NULL,13,17,11,808,NULL,38340,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(39,'Wayfair Basics Dinner Plate Storage',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/39.jpg\",\"products\\/39-1.jpg\",\"products\\/39-2.jpg\"]',NULL,'SW-153-A0',0,19,0,1,'in_stock',0,2,0,1,9,3.22,0,1013,NULL,NULL,NULL,11,18,20,677,NULL,188183,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(40,'Miko The Panda Water Bottle',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/40.jpg\",\"products\\/40-1.jpg\"]',NULL,'SW-121-A0',0,18,0,1,'in_stock',0,1,0,3,7,3.00,0,505,444.4,NULL,NULL,10,12,12,731,NULL,182943,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(41,'Sesame Seed Bread (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/41.jpg\",\"products\\/41-1.jpg\",\"products\\/41-2.jpg\"]',NULL,'SW-129-A0',0,16,0,1,'in_stock',0,2,0,2,7,2.43,0,722,NULL,NULL,NULL,20,11,17,598,NULL,43577,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(42,'Morrisons The Best Beef',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/42.jpg\",\"products\\/42-1.jpg\",\"products\\/42-2.jpg\"]',NULL,'SW-171-A0',0,19,0,1,'in_stock',0,2,0,2,8,2.50,0,729,NULL,NULL,NULL,11,17,11,537,NULL,34717,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(43,'Avocado, Hass Large',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/43.jpg\",\"products\\/43-1.jpg\",\"products\\/43-2.jpg\"]',NULL,'SW-128-A0',0,13,0,1,'in_stock',0,4,0,4,9,3.22,0,864,NULL,NULL,NULL,18,12,10,815,NULL,50593,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(44,'Italia Beef Lasagne',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/44.jpg\",\"products\\/44-1.jpg\",\"products\\/44-2.jpg\"]',NULL,'SW-115-A0',0,15,0,1,'in_stock',0,2,0,2,6,2.83,0,784,556.64,NULL,NULL,14,12,11,625,NULL,104797,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(45,'Maxwell House Classic Roast Mocha (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/45.jpg\",\"products\\/45-1.jpg\"]',NULL,'SW-100-A0',0,15,0,1,'in_stock',0,1,0,4,7,3.00,0,763,NULL,NULL,NULL,15,18,10,827,NULL,155095,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(46,'Bottled Pure Water 500ml',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/46.jpg\",\"products\\/46-1.jpg\"]',NULL,'SW-160-A0',0,15,0,1,'in_stock',0,2,0,1,7,2.86,0,616,NULL,NULL,NULL,17,11,12,606,NULL,183371,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(47,'Famart Farmhouse Soft White',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/47.jpg\",\"products\\/47-1.jpg\"]',NULL,'SW-193-A0',0,15,0,1,'in_stock',0,1,0,2,7,3.14,0,961,NULL,NULL,NULL,15,12,13,577,NULL,86199,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(48,'Coca-Cola Original Taste',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/48.jpg\",\"products\\/48-1.jpg\",\"products\\/48-2.jpg\"]',NULL,'SW-133-A0',0,15,0,1,'in_stock',0,1,0,4,9,3.44,0,630,535.5,NULL,NULL,17,17,11,514,NULL,196830,'2025-10-26 20:13:40','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(49,'Casillero Diablo Cabernet Sauvignon (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/49.jpg\",\"products\\/49-1.jpg\",\"products\\/49-2.jpg\"]',NULL,'SW-137-A0',0,11,0,1,'in_stock',0,3,0,2,9,2.56,0,896,NULL,NULL,NULL,13,16,20,614,NULL,97360,'2025-10-26 20:13:40','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(50,'Arla Organic Free Range Milk',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/50.jpg\",\"products\\/50-1.jpg\"]',NULL,'SW-163-A0',0,16,0,1,'in_stock',0,4,0,1,9,3.56,0,785,NULL,NULL,NULL,12,14,10,829,NULL,194058,'2025-10-26 20:13:40','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(51,'Aptamil Follow On Baby Milk',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/51.jpg\"]',NULL,'SW-112-A0',0,16,0,1,'in_stock',0,2,0,3,8,2.88,0,721,NULL,NULL,NULL,14,11,12,832,NULL,195210,'2025-10-26 20:13:40','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(52,'Cuisinart Chef’S Classic Hard-Anodized',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/52.jpg\",\"products\\/52-1.jpg\",\"products\\/52-2.jpg\"]',NULL,'SW-200-A0',0,17,0,1,'in_stock',0,2,0,4,7,2.71,0,840,756,NULL,NULL,13,17,17,653,NULL,112805,'2025-10-26 20:13:40','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(53,'Corn, Yellow Sweet (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/53.jpg\",\"products\\/53-1.jpg\"]',NULL,'SW-100-A0',0,16,0,1,'in_stock',0,2,0,2,6,3.17,0,1248,NULL,NULL,NULL,15,12,20,611,NULL,8815,'2025-10-26 20:13:40','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(54,'Hobnobs The Nobbly Biscuit',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/54.jpg\",\"products\\/54-1.jpg\"]',NULL,'SW-161-A0',0,14,0,1,'in_stock',0,2,0,2,5,3.80,0,865,NULL,NULL,NULL,16,20,11,715,NULL,117398,'2025-10-26 20:13:40','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(55,'Honest Organic Still Lemonade',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/55.jpg\",\"products\\/55-1.jpg\",\"products\\/55-2.jpg\"]',NULL,'SW-146-A0',0,11,0,1,'in_stock',0,3,0,4,7,3.00,0,517,NULL,NULL,NULL,11,12,13,720,NULL,30072,'2025-10-26 20:13:40','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(56,'Ice Beck’s Beer 350ml x 24 Pieces',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/56.jpg\",\"products\\/56-1.jpg\",\"products\\/56-2.jpg\"]',NULL,'SW-181-A0',0,15,0,1,'in_stock',0,5,0,1,8,3.63,0,673,551.86,NULL,NULL,14,11,20,555,NULL,168213,'2025-10-26 20:13:40','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(57,'Iceland 6 Hot Cross Buns (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/57.jpg\",\"products\\/57-1.jpg\"]',NULL,'SW-146-A0',0,16,0,1,'in_stock',0,3,0,1,8,2.50,0,759,NULL,NULL,NULL,12,14,15,873,NULL,98366,'2025-10-26 20:13:40','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(58,'Iceland Luxury 4 Panini Rolls',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/58.jpg\",\"products\\/58-1.jpg\",\"products\\/58-2.jpg\"]',NULL,'SW-110-A0',0,16,0,1,'in_stock',0,2,0,3,7,2.86,0,831,NULL,NULL,NULL,14,14,14,596,NULL,39943,'2025-10-26 20:13:40','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(59,'Iceland Soft Scoop Vanilla',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/59.jpg\",\"products\\/59-1.jpg\",\"products\\/59-2.jpg\",\"products\\/59-3.jpg\"]',NULL,'SW-200-A0',0,13,0,1,'in_stock',0,5,0,2,9,3.22,0,606,NULL,NULL,NULL,15,17,20,706,NULL,165489,'2025-10-26 20:13:40','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(60,'Iceland Spaghetti Bolognese',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/60.jpg\",\"products\\/60-1.jpg\",\"products\\/60-2.jpg\"]',NULL,'SW-134-A0',0,14,0,1,'in_stock',0,5,0,5,5,2.60,0,1108,941.8,NULL,NULL,20,11,12,587,NULL,60629,'2025-10-26 20:13:40','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(61,'Kellogg’s Coco Pops Cereal (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/61.jpg\",\"products\\/61-1.jpg\"]',NULL,'SW-150-A0',0,16,0,1,'in_stock',0,4,0,3,9,2.78,0,1011,NULL,NULL,NULL,15,17,12,562,NULL,180906,'2025-10-26 20:13:40','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(62,'Kit Kat Chunky Milk Chocolate',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/62.jpg\",\"products\\/62-1.jpg\"]',NULL,'SW-128-A0',0,18,0,1,'in_stock',0,4,0,3,8,3.75,0,1245,NULL,NULL,NULL,17,10,12,659,NULL,33465,'2025-10-26 20:13:40','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(63,'Large Green Bell Pepper',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/63.jpg\",\"products\\/63-1.jpg\"]',NULL,'SW-105-A0',0,15,0,1,'in_stock',0,5,0,4,4,3.00,0,856,NULL,NULL,NULL,14,17,12,856,NULL,87277,'2025-10-26 20:13:40','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(64,'Pice 94w Beasley Journal',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/64.jpg\",\"products\\/64-1.jpg\"]',NULL,'SW-143-A0',0,20,0,1,'in_stock',0,5,0,3,8,3.13,0,622,491.38,NULL,NULL,10,17,16,548,NULL,114643,'2025-10-26 20:13:40','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(65,'Province Piece Glass Drinking Glass (Digital)',NULL,'<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p><div>[get-in-touch title=\"Beautiful Pictures For All\" description=\"You don’t need to be a photographer to know a great photo when you see one. And you don’t need to be a photographer to take a great photo—you just need the D3500. It s as easy to use as a point-and-shoot, but it takes beautiful DSLR photos and videos that get noticed. It feels outstanding in your hands, sturdy and balanced with controls where you want them\" image=\"general/banner-product-1.png\" button_primary_label=\"View collections\" button_primary_url=\"products\" button_secondary_label=\"Learn more\" button_secondary_url=\"/products\"][/get-in-touch]</div><div>[about-product title=\"Easy. Portable. Amazing\" description=\"Take more memorable images. The photos you take with the D3500 capture more than the moment—they capture the feeling of the moment, a feeling that can be shared immediately with your friends and family and then relived for a lifetime.\" image=\"general/product-feature.png\" quantity=\"6\" title_1=\"Less thinking. More shooting\" title_2=\"Picture after amazing picture\" title_3=\"The day tripper\" title_4=\"Newbies welcome\" title_5=\"Colors that pop in any light\" title_6=\"Fast, accurate focusing\"][/about-product]</div><div>[intro-video title=\"Your camera’s bridge to your world\" subtitle=\"The D3500 Two Lens Kit includes two matched lenses to help you cover all the angles. The AF-P DX NIKKOR 18-55mm f/3.5-5.6G VR lens is great for portraits, landscapes, videos and other wide perspective shots. The AF-P DX NIKKOR 70-300mm f/4.5-6.3G ED is a versatile telephoto zoom lens that’s great for sports, concerts, nature and more.\" image=\"general/intro-video-product.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=HZ3XumHDDwA\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"367\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"19\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"604\" unit_3=\"K+\" title_4=\"Global branch\" data_4=\"96\"][/site-statistics]</div>','published','[\"products\\/65.jpg\",\"products\\/65-1.jpg\",\"products\\/65-2.jpg\"]',NULL,'SW-117-A0',0,13,0,1,'in_stock',0,4,0,4,6,3.33,0,1265,NULL,NULL,NULL,12,12,10,777,NULL,175585,'2025-10-26 20:13:40','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(66,'Dual Camera 20MP (Digital)',NULL,NULL,NULL,'published','[\"products\\/1.jpg\"]',NULL,'SW-167-A0',0,13,0,1,'in_stock',0,5,1,0,0,0.00,0,80.25,NULL,NULL,NULL,19,20,19,761,NULL,0,'2025-10-26 20:13:40','2025-10-26 20:13:40',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(67,'Smart Watches',NULL,NULL,NULL,'published','[\"products\\/2.jpg\"]',NULL,'SW-105-A0',0,12,0,1,'in_stock',0,1,1,0,0,0.00,0,40.5,NULL,NULL,NULL,15,18,16,762,NULL,0,'2025-10-26 20:13:40','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(68,'Smart Watches',NULL,NULL,NULL,'published','[\"products\\/2-1.jpg\"]',NULL,'SW-105-A0-A1',0,12,0,1,'in_stock',0,1,1,0,0,0.00,0,40.5,NULL,NULL,NULL,15,18,16,762,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(69,'Smart Watches',NULL,NULL,NULL,'published','[\"products\\/2-2.jpg\"]',NULL,'SW-105-A0-A2',0,12,0,1,'in_stock',0,1,1,0,0,0.00,0,40.5,NULL,NULL,NULL,15,18,16,762,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(70,'Beat Headphone',NULL,NULL,NULL,'published','[\"products\\/3.jpg\"]',NULL,'SW-123-A0',0,19,0,1,'in_stock',0,5,1,0,0,0.00,0,20,NULL,NULL,NULL,20,10,14,739,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(71,'Red & Black Headphone',NULL,NULL,NULL,'published','[\"products\\/4.jpg\"]',NULL,'SW-195-A0',0,18,0,1,'in_stock',0,3,1,0,0,0.00,0,587,493.08,NULL,NULL,12,15,11,732,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(72,'Smart Watch External (Digital)',NULL,NULL,NULL,'published','[\"products\\/5.jpg\"]',NULL,'SW-156-A0',0,12,0,1,'in_stock',0,3,1,0,0,0.00,0,894,NULL,NULL,NULL,15,13,18,503,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(73,'Smart Watch External (Digital)',NULL,NULL,NULL,'published','[\"products\\/5-1.jpg\"]',NULL,'SW-156-A0-A1',0,12,0,1,'in_stock',0,3,1,0,0,0.00,0,894,NULL,NULL,NULL,15,13,18,503,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(74,'Smart Watch External (Digital)',NULL,NULL,NULL,'published','[\"products\\/5-2.jpg\"]',NULL,'SW-156-A0-A2',0,12,0,1,'in_stock',0,3,1,0,0,0.00,0,894,NULL,NULL,NULL,15,13,18,503,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(75,'Nikon HD camera',NULL,NULL,NULL,'published','[\"products\\/6.jpg\"]',NULL,'SW-167-A0',0,11,0,1,'in_stock',0,2,1,0,0,0.00,0,426,NULL,NULL,NULL,11,11,17,870,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(76,'Nikon HD camera',NULL,NULL,NULL,'published','[\"products\\/6.jpg\"]',NULL,'SW-167-A0-A1',0,11,0,1,'in_stock',0,2,1,0,0,0.00,0,426,NULL,NULL,NULL,11,11,17,870,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(77,'Nikon HD camera',NULL,NULL,NULL,'published','[\"products\\/6.jpg\"]',NULL,'SW-167-A0-A2',0,11,0,1,'in_stock',0,2,1,0,0,0.00,0,426,NULL,NULL,NULL,11,11,17,870,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(78,'Audio Equipment',NULL,NULL,NULL,'published','[\"products\\/7.jpg\"]',NULL,'SW-132-A0',0,13,0,1,'in_stock',0,5,1,0,0,0.00,0,585,NULL,NULL,NULL,17,20,11,687,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(79,'Audio Equipment',NULL,NULL,NULL,'published','[\"products\\/7.jpg\"]',NULL,'SW-132-A0-A1',0,13,0,1,'in_stock',0,5,1,0,0,0.00,0,585,NULL,NULL,NULL,17,20,11,687,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(80,'Audio Equipment',NULL,NULL,NULL,'published','[\"products\\/7.jpg\"]',NULL,'SW-132-A0-A2',0,13,0,1,'in_stock',0,5,1,0,0,0.00,0,585,NULL,NULL,NULL,17,20,11,687,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(81,'Audio Equipment',NULL,NULL,NULL,'published','[\"products\\/7.jpg\"]',NULL,'SW-132-A0-A3',0,13,0,1,'in_stock',0,5,1,0,0,0.00,0,585,NULL,NULL,NULL,17,20,11,687,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(82,'Smart Televisions',NULL,NULL,NULL,'published','[\"products\\/8.jpg\"]',NULL,'SW-191-A0',0,13,0,1,'in_stock',0,1,1,0,0,0.00,0,1170,936,NULL,NULL,17,11,13,757,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(83,'Smart Televisions',NULL,NULL,NULL,'published','[\"products\\/8-1.jpg\"]',NULL,'SW-191-A0-A1',0,13,0,1,'in_stock',0,1,1,0,0,0.00,0,1170,924.3,NULL,NULL,17,11,13,757,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(84,'Smart Televisions',NULL,NULL,NULL,'published','[\"products\\/8-2.jpg\"]',NULL,'SW-191-A0-A2',0,13,0,1,'in_stock',0,1,1,0,0,0.00,0,1170,1053,NULL,NULL,17,11,13,757,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(85,'Samsung Smart Phone (Digital)',NULL,NULL,NULL,'published','[\"products\\/9.jpg\"]',NULL,'SW-185-A0',0,10,0,1,'in_stock',0,4,1,0,0,0.00,0,586,NULL,NULL,NULL,12,16,15,604,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(86,'Herschel Leather Duffle Bag In Brown Color',NULL,NULL,NULL,'published','[\"products\\/10.jpg\"]',NULL,'SW-165-A0',0,19,0,1,'in_stock',0,2,1,0,0,0.00,0,1227,NULL,NULL,NULL,13,18,11,567,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(87,'Herschel Leather Duffle Bag In Brown Color',NULL,NULL,NULL,'published','[\"products\\/10-1.jpg\"]',NULL,'SW-165-A0-A1',0,19,0,1,'in_stock',0,2,1,0,0,0.00,0,1227,NULL,NULL,NULL,13,18,11,567,NULL,0,'2025-10-26 20:13:41','2025-10-26 20:13:41',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(88,'Herschel Leather Duffle Bag In Brown Color',NULL,NULL,NULL,'published','[\"products\\/10-2.jpg\"]',NULL,'SW-165-A0-A2',0,19,0,1,'in_stock',0,2,1,0,0,0.00,0,1227,NULL,NULL,NULL,13,18,11,567,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(89,'Herschel Leather Duffle Bag In Brown Color',NULL,NULL,NULL,'published','[\"products\\/10.jpg\"]',NULL,'SW-165-A0-A3',0,19,0,1,'in_stock',0,2,1,0,0,0.00,0,1227,NULL,NULL,NULL,13,18,11,567,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(90,'Xbox One Wireless Controller Black Color',NULL,NULL,NULL,'published','[\"products\\/11.jpg\"]',NULL,'SW-128-A0',0,15,0,1,'in_stock',0,5,1,0,0,0.00,0,1196,NULL,NULL,NULL,15,16,11,798,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(91,'Xbox One Wireless Controller Black Color',NULL,NULL,NULL,'published','[\"products\\/11-1.jpg\"]',NULL,'SW-128-A0-A1',0,15,0,1,'in_stock',0,5,1,0,0,0.00,0,1196,NULL,NULL,NULL,15,16,11,798,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(92,'EPSION Plaster Printer',NULL,NULL,NULL,'published','[\"products\\/12.jpg\"]',NULL,'SW-157-A0',0,10,0,1,'in_stock',0,5,1,0,0,0.00,0,513,379.62,NULL,NULL,12,19,13,802,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(93,'EPSION Plaster Printer',NULL,NULL,NULL,'published','[\"products\\/12-1.jpg\"]',NULL,'SW-157-A0-A1',0,10,0,1,'in_stock',0,5,1,0,0,0.00,0,513,405.27,NULL,NULL,12,19,13,802,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(94,'EPSION Plaster Printer',NULL,NULL,NULL,'published','[\"products\\/12-2.jpg\"]',NULL,'SW-157-A0-A2',0,10,0,1,'in_stock',0,5,1,0,0,0.00,0,513,430.92,NULL,NULL,12,19,13,802,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(95,'EPSION Plaster Printer',NULL,NULL,NULL,'published','[\"products\\/12-3.jpg\"]',NULL,'SW-157-A0-A3',0,10,0,1,'in_stock',0,5,1,0,0,0.00,0,513,456.57,NULL,NULL,12,19,13,802,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(96,'Sound Intone I65 Earphone White Version (Digital)',NULL,NULL,NULL,'published','[\"products\\/13.jpg\"]',NULL,'SW-121-A0',0,20,0,1,'in_stock',0,3,1,0,0,0.00,0,536,NULL,NULL,NULL,19,17,11,820,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(97,'Sound Intone I65 Earphone White Version (Digital)',NULL,NULL,NULL,'published','[\"products\\/13-1.jpg\"]',NULL,'SW-121-A0-A1',0,20,0,1,'in_stock',0,3,1,0,0,0.00,0,536,NULL,NULL,NULL,19,17,11,820,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(98,'Sound Intone I65 Earphone White Version (Digital)',NULL,NULL,NULL,'published','[\"products\\/13.jpg\"]',NULL,'SW-121-A0-A2',0,20,0,1,'in_stock',0,3,1,0,0,0.00,0,536,NULL,NULL,NULL,19,17,11,820,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(99,'B&O Play Mini Bluetooth Speaker',NULL,NULL,NULL,'published','[\"products\\/14.jpg\"]',NULL,'SW-158-A0',0,14,0,1,'in_stock',0,2,1,0,0,0.00,0,555,NULL,NULL,NULL,18,14,15,544,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(100,'B&O Play Mini Bluetooth Speaker',NULL,NULL,NULL,'published','[\"products\\/14.jpg\"]',NULL,'SW-158-A0-A1',0,14,0,1,'in_stock',0,2,1,0,0,0.00,0,555,NULL,NULL,NULL,18,14,15,544,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(101,'B&O Play Mini Bluetooth Speaker',NULL,NULL,NULL,'published','[\"products\\/14.jpg\"]',NULL,'SW-158-A0-A2',0,14,0,1,'in_stock',0,2,1,0,0,0.00,0,555,NULL,NULL,NULL,18,14,15,544,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(102,'B&O Play Mini Bluetooth Speaker',NULL,NULL,NULL,'published','[\"products\\/14.jpg\"]',NULL,'SW-158-A0-A3',0,14,0,1,'in_stock',0,2,1,0,0,0.00,0,555,NULL,NULL,NULL,18,14,15,544,NULL,0,'2025-10-26 20:13:42','2025-10-26 20:13:42',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(103,'Apple MacBook Air Retina 13.3-Inch Laptop',NULL,NULL,NULL,'published','[\"products\\/15.jpg\"]',NULL,'SW-120-A0',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,580,NULL,NULL,NULL,12,19,18,717,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(104,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL,NULL,'published','[\"products\\/16.jpg\"]',NULL,'SW-179-A0',0,20,0,1,'in_stock',0,3,1,0,0,0.00,0,555,405.15,NULL,NULL,16,11,11,827,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(105,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL,NULL,'published','[\"products\\/16.jpg\"]',NULL,'SW-179-A0-A1',0,20,0,1,'in_stock',0,3,1,0,0,0.00,0,555,405.15,NULL,NULL,16,11,11,827,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(106,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL,NULL,'published','[\"products\\/16.jpg\"]',NULL,'SW-179-A0-A2',0,20,0,1,'in_stock',0,3,1,0,0,0.00,0,555,399.6,NULL,NULL,16,11,11,827,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(107,'Samsung Gear VR Virtual Reality Headset (Digital)',NULL,NULL,NULL,'published','[\"products\\/17.jpg\"]',NULL,'SW-196-A0',0,17,0,1,'in_stock',0,2,1,0,0,0.00,0,582,NULL,NULL,NULL,14,12,16,604,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(108,'Samsung Gear VR Virtual Reality Headset (Digital)',NULL,NULL,NULL,'published','[\"products\\/17-1.jpg\"]',NULL,'SW-196-A0-A1',0,17,0,1,'in_stock',0,2,1,0,0,0.00,0,582,NULL,NULL,NULL,14,12,16,604,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(109,'Samsung Gear VR Virtual Reality Headset (Digital)',NULL,NULL,NULL,'published','[\"products\\/17-2.jpg\"]',NULL,'SW-196-A0-A2',0,17,0,1,'in_stock',0,2,1,0,0,0.00,0,582,NULL,NULL,NULL,14,12,16,604,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(110,'Samsung Gear VR Virtual Reality Headset (Digital)',NULL,NULL,NULL,'published','[\"products\\/17-3.jpg\"]',NULL,'SW-196-A0-A3',0,17,0,1,'in_stock',0,2,1,0,0,0.00,0,582,NULL,NULL,NULL,14,12,16,604,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(111,'Aveeno Moisturizing Body Shower 450ml',NULL,NULL,NULL,'published','[\"products\\/18.jpg\"]',NULL,'SW-191-A0',0,17,0,1,'in_stock',0,5,1,0,0,0.00,0,1182,NULL,NULL,NULL,12,13,19,731,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(112,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,NULL,'published','[\"products\\/19.jpg\"]',NULL,'SW-110-A0',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,994,NULL,NULL,NULL,17,19,20,504,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(113,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,NULL,'published','[\"products\\/19-1.jpg\"]',NULL,'SW-110-A0-A1',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,994,NULL,NULL,NULL,17,19,20,504,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(114,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,NULL,'published','[\"products\\/19-2.jpg\"]',NULL,'SW-110-A0-A2',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,994,NULL,NULL,NULL,17,19,20,504,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(115,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,NULL,'published','[\"products\\/20.jpg\"]',NULL,'SW-189-A0',0,19,0,1,'in_stock',0,3,1,0,0,0.00,0,989,702.19,NULL,NULL,11,17,15,674,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(116,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,NULL,'published','[\"products\\/20-1.jpg\"]',NULL,'SW-189-A0-A1',0,19,0,1,'in_stock',0,3,1,0,0,0.00,0,989,860.43,NULL,NULL,11,17,15,674,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(117,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,NULL,'published','[\"products\\/20-2.jpg\"]',NULL,'SW-189-A0-A2',0,19,0,1,'in_stock',0,3,1,0,0,0.00,0,989,860.43,NULL,NULL,11,17,15,674,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(118,'MVMTH Classical Leather Watch In Black (Digital)',NULL,NULL,NULL,'published','[\"products\\/21.jpg\"]',NULL,'SW-112-A0',0,20,0,1,'in_stock',0,3,1,0,0,0.00,0,792,NULL,NULL,NULL,12,13,10,675,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(119,'MVMTH Classical Leather Watch In Black (Digital)',NULL,NULL,NULL,'published','[\"products\\/21-1.jpg\"]',NULL,'SW-112-A0-A1',0,20,0,1,'in_stock',0,3,1,0,0,0.00,0,792,NULL,NULL,NULL,12,13,10,675,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(120,'Baxter Care Hair Kit For Bearded Mens',NULL,NULL,NULL,'published','[\"products\\/22.jpg\"]',NULL,'SW-173-A0',0,11,0,1,'in_stock',0,5,1,0,0,0.00,0,640,NULL,NULL,NULL,11,16,12,702,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(121,'Ciate Palemore Lipstick Bold Red Color',NULL,NULL,NULL,'published','[\"products\\/23.jpg\"]',NULL,'SW-151-A0',0,11,0,1,'in_stock',0,3,1,0,0,0.00,0,1023,NULL,NULL,NULL,13,17,12,546,NULL,0,'2025-10-26 20:13:43','2025-10-26 20:13:43',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(122,'Vimto Squash Remix Apple 1.5 Litres',NULL,NULL,NULL,'published','[\"products\\/24.jpg\"]',NULL,'SW-157-A0',0,14,0,1,'in_stock',0,3,1,0,0,0.00,0,1210,1089,NULL,NULL,19,19,17,844,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(123,'Vimto Squash Remix Apple 1.5 Litres',NULL,NULL,NULL,'published','[\"products\\/24-1.jpg\"]',NULL,'SW-157-A0-A1',0,14,0,1,'in_stock',0,3,1,0,0,0.00,0,1210,859.1,NULL,NULL,19,19,17,844,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(124,'Vimto Squash Remix Apple 1.5 Litres',NULL,NULL,NULL,'published','[\"products\\/24-2.jpg\"]',NULL,'SW-157-A0-A2',0,14,0,1,'in_stock',0,3,1,0,0,0.00,0,1210,895.4,NULL,NULL,19,19,17,844,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(125,'Crock Pot Slow Cooker (Digital)',NULL,NULL,NULL,'published','[\"products\\/25.jpg\"]',NULL,'SW-143-A0',0,16,0,1,'in_stock',0,4,1,0,0,0.00,0,1065,NULL,NULL,NULL,20,17,14,576,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(126,'Crock Pot Slow Cooker (Digital)',NULL,NULL,NULL,'published','[\"products\\/25-1.jpg\"]',NULL,'SW-143-A0-A1',0,16,0,1,'in_stock',0,4,1,0,0,0.00,0,1065,NULL,NULL,NULL,20,17,14,576,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(127,'Crock Pot Slow Cooker (Digital)',NULL,NULL,NULL,'published','[\"products\\/25-2.jpg\"]',NULL,'SW-143-A0-A2',0,16,0,1,'in_stock',0,4,1,0,0,0.00,0,1065,NULL,NULL,NULL,20,17,14,576,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(128,'Crock Pot Slow Cooker (Digital)',NULL,NULL,NULL,'published','[\"products\\/25.jpg\"]',NULL,'SW-143-A0-A3',0,16,0,1,'in_stock',0,4,1,0,0,0.00,0,1065,NULL,NULL,NULL,20,17,14,576,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(129,'Taylors of Harrogate Yorkshire Coffee',NULL,NULL,NULL,'published','[\"products\\/26.jpg\"]',NULL,'SW-172-A0',0,18,0,1,'in_stock',0,5,1,0,0,0.00,0,817,NULL,NULL,NULL,14,14,10,868,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(130,'Taylors of Harrogate Yorkshire Coffee',NULL,NULL,NULL,'published','[\"products\\/26-1.jpg\"]',NULL,'SW-172-A0-A1',0,18,0,1,'in_stock',0,5,1,0,0,0.00,0,817,NULL,NULL,NULL,14,14,10,868,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(131,'Taylors of Harrogate Yorkshire Coffee',NULL,NULL,NULL,'published','[\"products\\/26.jpg\"]',NULL,'SW-172-A0-A2',0,18,0,1,'in_stock',0,5,1,0,0,0.00,0,817,NULL,NULL,NULL,14,14,10,868,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(132,'Taylors of Harrogate Yorkshire Coffee',NULL,NULL,NULL,'published','[\"products\\/26.jpg\"]',NULL,'SW-172-A0-A3',0,18,0,1,'in_stock',0,5,1,0,0,0.00,0,817,NULL,NULL,NULL,14,14,10,868,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(133,'Soft Mochi & Galeto Ice Cream',NULL,NULL,NULL,'published','[\"products\\/27.jpg\"]',NULL,'SW-169-A0',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,1145,NULL,NULL,NULL,18,13,11,713,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(134,'Soft Mochi & Galeto Ice Cream',NULL,NULL,NULL,'published','[\"products\\/27-1.jpg\"]',NULL,'SW-169-A0-A1',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,1145,NULL,NULL,NULL,18,13,11,713,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(135,'Soft Mochi & Galeto Ice Cream',NULL,NULL,NULL,'published','[\"products\\/27.jpg\"]',NULL,'SW-169-A0-A2',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,1145,NULL,NULL,NULL,18,13,11,713,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(136,'Naked Noodle Egg Noodles Singapore',NULL,NULL,NULL,'published','[\"products\\/28.jpg\"]',NULL,'SW-140-A0',0,16,0,1,'in_stock',0,3,1,0,0,0.00,0,550,401.5,NULL,NULL,16,19,11,540,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(137,'Naked Noodle Egg Noodles Singapore',NULL,NULL,NULL,'published','[\"products\\/28-1.jpg\"]',NULL,'SW-140-A0-A1',0,16,0,1,'in_stock',0,3,1,0,0,0.00,0,550,473,NULL,NULL,16,19,11,540,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(138,'Saute Pan Silver (Digital)',NULL,NULL,NULL,'published','[\"products\\/29.jpg\"]',NULL,'SW-137-A0',0,14,0,1,'in_stock',0,5,1,0,0,0.00,0,912,NULL,NULL,NULL,12,19,13,521,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(139,'Saute Pan Silver (Digital)',NULL,NULL,NULL,'published','[\"products\\/29-1.jpg\"]',NULL,'SW-137-A0-A1',0,14,0,1,'in_stock',0,5,1,0,0,0.00,0,912,NULL,NULL,NULL,12,19,13,521,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(140,'Bar S – Classic Bun Length Franks',NULL,NULL,NULL,'published','[\"products\\/30.jpg\"]',NULL,'SW-176-A0',0,17,0,1,'in_stock',0,5,1,0,0,0.00,0,1240,NULL,NULL,NULL,20,12,18,629,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(141,'Bar S – Classic Bun Length Franks',NULL,NULL,NULL,'published','[\"products\\/30-1.jpg\"]',NULL,'SW-176-A0-A1',0,17,0,1,'in_stock',0,5,1,0,0,0.00,0,1240,NULL,NULL,NULL,20,12,18,629,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(142,'Bar S – Classic Bun Length Franks',NULL,NULL,NULL,'published','[\"products\\/30-2.jpg\"]',NULL,'SW-176-A0-A2',0,17,0,1,'in_stock',0,5,1,0,0,0.00,0,1240,NULL,NULL,NULL,20,12,18,629,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(143,'Broccoli Crowns',NULL,NULL,NULL,'published','[\"products\\/31.jpg\"]',NULL,'SW-196-A0',0,16,0,1,'in_stock',0,5,1,0,0,0.00,0,567,NULL,NULL,NULL,19,20,11,829,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(144,'Slimming World Vegan Mac Greens',NULL,NULL,NULL,'published','[\"products\\/32.jpg\"]',NULL,'SW-170-A0',0,16,0,1,'in_stock',0,3,1,0,0,0.00,0,1244,1119.6,NULL,NULL,17,13,10,567,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(145,'Slimming World Vegan Mac Greens',NULL,NULL,NULL,'published','[\"products\\/32-1.jpg\"]',NULL,'SW-170-A0-A1',0,16,0,1,'in_stock',0,3,1,0,0,0.00,0,1244,1107.16,NULL,NULL,17,13,10,567,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(146,'Häagen-Dazs Salted Caramel (Digital)',NULL,NULL,NULL,'published','[\"products\\/33.jpg\"]',NULL,'SW-189-A0',0,13,0,1,'in_stock',0,1,1,0,0,0.00,0,615,NULL,NULL,NULL,16,11,12,550,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(147,'Häagen-Dazs Salted Caramel (Digital)',NULL,NULL,NULL,'published','[\"products\\/33-1.jpg\"]',NULL,'SW-189-A0-A1',0,13,0,1,'in_stock',0,1,1,0,0,0.00,0,615,NULL,NULL,NULL,16,11,12,550,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(148,'Iceland 3 Solo Exotic Burst',NULL,NULL,NULL,'published','[\"products\\/34.jpg\"]',NULL,'SW-184-A0',0,10,0,1,'in_stock',0,4,1,0,0,0.00,0,1060,NULL,NULL,NULL,11,16,20,559,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(149,'Iceland 3 Solo Exotic Burst',NULL,NULL,NULL,'published','[\"products\\/34-1.jpg\"]',NULL,'SW-184-A0-A1',0,10,0,1,'in_stock',0,4,1,0,0,0.00,0,1060,NULL,NULL,NULL,11,16,20,559,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(150,'Iceland 3 Solo Exotic Burst',NULL,NULL,NULL,'published','[\"products\\/34.jpg\"]',NULL,'SW-184-A0-A2',0,10,0,1,'in_stock',0,4,1,0,0,0.00,0,1060,NULL,NULL,NULL,11,16,20,559,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(151,'Iceland 3 Solo Exotic Burst',NULL,NULL,NULL,'published','[\"products\\/34.jpg\"]',NULL,'SW-184-A0-A3',0,10,0,1,'in_stock',0,4,1,0,0,0.00,0,1060,NULL,NULL,NULL,11,16,20,559,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:44',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(152,'Extreme Budweiser Light Can',NULL,NULL,NULL,'published','[\"products\\/35.jpg\"]',NULL,'SW-166-A0',0,16,0,1,'in_stock',0,3,1,0,0,0.00,0,1182,NULL,NULL,NULL,13,17,15,884,NULL,0,'2025-10-26 20:13:44','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(153,'Iceland Macaroni Cheese Traybake',NULL,NULL,NULL,'published','[\"products\\/36.jpg\"]',NULL,'SW-126-A0',0,12,0,1,'in_stock',0,4,1,0,0,0.00,0,683,560.06,NULL,NULL,14,20,20,532,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(154,'Iceland Macaroni Cheese Traybake',NULL,NULL,NULL,'published','[\"products\\/36-1.jpg\"]',NULL,'SW-126-A0-A1',0,12,0,1,'in_stock',0,4,1,0,0,0.00,0,683,539.57,NULL,NULL,14,20,20,532,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(155,'Iceland Macaroni Cheese Traybake',NULL,NULL,NULL,'published','[\"products\\/36-2.jpg\"]',NULL,'SW-126-A0-A2',0,12,0,1,'in_stock',0,4,1,0,0,0.00,0,683,525.91,NULL,NULL,14,20,20,532,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(156,'Dolmio Bolognese Pasta Sauce (Digital)',NULL,NULL,NULL,'published','[\"products\\/37.jpg\"]',NULL,'SW-142-A0',0,19,0,1,'in_stock',0,2,1,0,0,0.00,0,1000,NULL,NULL,NULL,15,20,13,690,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(157,'Dolmio Bolognese Pasta Sauce (Digital)',NULL,NULL,NULL,'published','[\"products\\/37-1.jpg\"]',NULL,'SW-142-A0-A1',0,19,0,1,'in_stock',0,2,1,0,0,0.00,0,1000,NULL,NULL,NULL,15,20,13,690,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(158,'Dolmio Bolognese Pasta Sauce (Digital)',NULL,NULL,NULL,'published','[\"products\\/37-2.jpg\"]',NULL,'SW-142-A0-A2',0,19,0,1,'in_stock',0,2,1,0,0,0.00,0,1000,NULL,NULL,NULL,15,20,13,690,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(159,'Sitema BakeIT Plastic Box',NULL,NULL,NULL,'published','[\"products\\/38.jpg\"]',NULL,'SW-185-A0',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,810,NULL,NULL,NULL,13,17,11,808,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(160,'Sitema BakeIT Plastic Box',NULL,NULL,NULL,'published','[\"products\\/38-1.jpg\"]',NULL,'SW-185-A0-A1',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,810,NULL,NULL,NULL,13,17,11,808,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(161,'Sitema BakeIT Plastic Box',NULL,NULL,NULL,'published','[\"products\\/38-2.jpg\"]',NULL,'SW-185-A0-A2',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,810,NULL,NULL,NULL,13,17,11,808,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(162,'Wayfair Basics Dinner Plate Storage',NULL,NULL,NULL,'published','[\"products\\/39.jpg\"]',NULL,'SW-153-A0',0,19,0,1,'in_stock',0,2,1,0,0,0.00,0,1013,NULL,NULL,NULL,11,18,20,677,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(163,'Miko The Panda Water Bottle',NULL,NULL,NULL,'published','[\"products\\/40.jpg\"]',NULL,'SW-121-A0',0,18,0,1,'in_stock',0,1,1,0,0,0.00,0,505,444.4,NULL,NULL,10,12,12,731,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(164,'Miko The Panda Water Bottle',NULL,NULL,NULL,'published','[\"products\\/40-1.jpg\"]',NULL,'SW-121-A0-A1',0,18,0,1,'in_stock',0,1,1,0,0,0.00,0,505,444.4,NULL,NULL,10,12,12,731,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(165,'Miko The Panda Water Bottle',NULL,NULL,NULL,'published','[\"products\\/40.jpg\"]',NULL,'SW-121-A0-A2',0,18,0,1,'in_stock',0,1,1,0,0,0.00,0,505,444.4,NULL,NULL,10,12,12,731,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(166,'Sesame Seed Bread (Digital)',NULL,NULL,NULL,'published','[\"products\\/41.jpg\"]',NULL,'SW-129-A0',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,722,NULL,NULL,NULL,20,11,17,598,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(167,'Sesame Seed Bread (Digital)',NULL,NULL,NULL,'published','[\"products\\/41-1.jpg\"]',NULL,'SW-129-A0-A1',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,722,NULL,NULL,NULL,20,11,17,598,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(168,'Morrisons The Best Beef',NULL,NULL,NULL,'published','[\"products\\/42.jpg\"]',NULL,'SW-171-A0',0,19,0,1,'in_stock',0,2,1,0,0,0.00,0,729,NULL,NULL,NULL,11,17,11,537,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(169,'Morrisons The Best Beef',NULL,NULL,NULL,'published','[\"products\\/42-1.jpg\"]',NULL,'SW-171-A0-A1',0,19,0,1,'in_stock',0,2,1,0,0,0.00,0,729,NULL,NULL,NULL,11,17,11,537,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(170,'Avocado, Hass Large',NULL,NULL,NULL,'published','[\"products\\/43.jpg\"]',NULL,'SW-128-A0',0,13,0,1,'in_stock',0,4,1,0,0,0.00,0,864,NULL,NULL,NULL,18,12,10,815,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(171,'Avocado, Hass Large',NULL,NULL,NULL,'published','[\"products\\/43-1.jpg\"]',NULL,'SW-128-A0-A1',0,13,0,1,'in_stock',0,4,1,0,0,0.00,0,864,NULL,NULL,NULL,18,12,10,815,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(172,'Avocado, Hass Large',NULL,NULL,NULL,'published','[\"products\\/43-2.jpg\"]',NULL,'SW-128-A0-A2',0,13,0,1,'in_stock',0,4,1,0,0,0.00,0,864,NULL,NULL,NULL,18,12,10,815,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(173,'Avocado, Hass Large',NULL,NULL,NULL,'published','[\"products\\/43.jpg\"]',NULL,'SW-128-A0-A3',0,13,0,1,'in_stock',0,4,1,0,0,0.00,0,864,NULL,NULL,NULL,18,12,10,815,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(174,'Italia Beef Lasagne',NULL,NULL,NULL,'published','[\"products\\/44.jpg\"]',NULL,'SW-115-A0',0,15,0,1,'in_stock',0,2,1,0,0,0.00,0,784,556.64,NULL,NULL,14,12,11,625,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(175,'Italia Beef Lasagne',NULL,NULL,NULL,'published','[\"products\\/44-1.jpg\"]',NULL,'SW-115-A0-A1',0,15,0,1,'in_stock',0,2,1,0,0,0.00,0,784,635.04,NULL,NULL,14,12,11,625,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(176,'Maxwell House Classic Roast Mocha (Digital)',NULL,NULL,NULL,'published','[\"products\\/45.jpg\"]',NULL,'SW-100-A0',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,763,NULL,NULL,NULL,15,18,10,827,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(177,'Maxwell House Classic Roast Mocha (Digital)',NULL,NULL,NULL,'published','[\"products\\/45-1.jpg\"]',NULL,'SW-100-A0-A1',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,763,NULL,NULL,NULL,15,18,10,827,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(178,'Maxwell House Classic Roast Mocha (Digital)',NULL,NULL,NULL,'published','[\"products\\/45.jpg\"]',NULL,'SW-100-A0-A2',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,763,NULL,NULL,NULL,15,18,10,827,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(179,'Maxwell House Classic Roast Mocha (Digital)',NULL,NULL,NULL,'published','[\"products\\/45.jpg\"]',NULL,'SW-100-A0-A3',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,763,NULL,NULL,NULL,15,18,10,827,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(180,'Bottled Pure Water 500ml',NULL,NULL,NULL,'published','[\"products\\/46.jpg\"]',NULL,'SW-160-A0',0,15,0,1,'in_stock',0,2,1,0,0,0.00,0,616,NULL,NULL,NULL,17,11,12,606,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(181,'Famart Farmhouse Soft White',NULL,NULL,NULL,'published','[\"products\\/47.jpg\"]',NULL,'SW-193-A0',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,961,NULL,NULL,NULL,15,12,13,577,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(182,'Famart Farmhouse Soft White',NULL,NULL,NULL,'published','[\"products\\/47-1.jpg\"]',NULL,'SW-193-A0-A1',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,961,NULL,NULL,NULL,15,12,13,577,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(183,'Coca-Cola Original Taste',NULL,NULL,NULL,'published','[\"products\\/48.jpg\"]',NULL,'SW-133-A0',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,630,535.5,NULL,NULL,17,17,11,514,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(184,'Coca-Cola Original Taste',NULL,NULL,NULL,'published','[\"products\\/48-1.jpg\"]',NULL,'SW-133-A0-A1',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,630,453.6,NULL,NULL,17,17,11,514,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(185,'Coca-Cola Original Taste',NULL,NULL,NULL,'published','[\"products\\/48-2.jpg\"]',NULL,'SW-133-A0-A2',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,630,478.8,NULL,NULL,17,17,11,514,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(186,'Coca-Cola Original Taste',NULL,NULL,NULL,'published','[\"products\\/48.jpg\"]',NULL,'SW-133-A0-A3',0,15,0,1,'in_stock',0,1,1,0,0,0.00,0,630,516.6,NULL,NULL,17,17,11,514,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:45',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(187,'Casillero Diablo Cabernet Sauvignon (Digital)',NULL,NULL,NULL,'published','[\"products\\/49.jpg\"]',NULL,'SW-137-A0',0,11,0,1,'in_stock',0,3,1,0,0,0.00,0,896,NULL,NULL,NULL,13,16,20,614,NULL,0,'2025-10-26 20:13:45','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(188,'Casillero Diablo Cabernet Sauvignon (Digital)',NULL,NULL,NULL,'published','[\"products\\/49-1.jpg\"]',NULL,'SW-137-A0-A1',0,11,0,1,'in_stock',0,3,1,0,0,0.00,0,896,NULL,NULL,NULL,13,16,20,614,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(189,'Arla Organic Free Range Milk',NULL,NULL,NULL,'published','[\"products\\/50.jpg\"]',NULL,'SW-163-A0',0,16,0,1,'in_stock',0,4,1,0,0,0.00,0,785,NULL,NULL,NULL,12,14,10,829,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(190,'Aptamil Follow On Baby Milk',NULL,NULL,NULL,'published','[\"products\\/51.jpg\"]',NULL,'SW-112-A0',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,721,NULL,NULL,NULL,14,11,12,832,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(191,'Aptamil Follow On Baby Milk',NULL,NULL,NULL,'published','[\"products\\/51.jpg\"]',NULL,'SW-112-A0-A1',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,721,NULL,NULL,NULL,14,11,12,832,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(192,'Aptamil Follow On Baby Milk',NULL,NULL,NULL,'published','[\"products\\/51.jpg\"]',NULL,'SW-112-A0-A2',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,721,NULL,NULL,NULL,14,11,12,832,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(193,'Cuisinart Chef’S Classic Hard-Anodized',NULL,NULL,NULL,'published','[\"products\\/52.jpg\"]',NULL,'SW-200-A0',0,17,0,1,'in_stock',0,2,1,0,0,0.00,0,840,756,NULL,NULL,13,17,17,653,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(194,'Cuisinart Chef’S Classic Hard-Anodized',NULL,NULL,NULL,'published','[\"products\\/52-1.jpg\"]',NULL,'SW-200-A0-A1',0,17,0,1,'in_stock',0,2,1,0,0,0.00,0,840,688.8,NULL,NULL,13,17,17,653,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(195,'Cuisinart Chef’S Classic Hard-Anodized',NULL,NULL,NULL,'published','[\"products\\/52-2.jpg\"]',NULL,'SW-200-A0-A2',0,17,0,1,'in_stock',0,2,1,0,0,0.00,0,840,604.8,NULL,NULL,13,17,17,653,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(196,'Cuisinart Chef’S Classic Hard-Anodized',NULL,NULL,NULL,'published','[\"products\\/52.jpg\"]',NULL,'SW-200-A0-A3',0,17,0,1,'in_stock',0,2,1,0,0,0.00,0,840,646.8,NULL,NULL,13,17,17,653,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(197,'Corn, Yellow Sweet (Digital)',NULL,NULL,NULL,'published','[\"products\\/53.jpg\"]',NULL,'SW-100-A0',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,1248,NULL,NULL,NULL,15,12,20,611,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(198,'Corn, Yellow Sweet (Digital)',NULL,NULL,NULL,'published','[\"products\\/53-1.jpg\"]',NULL,'SW-100-A0-A1',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,1248,NULL,NULL,NULL,15,12,20,611,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(199,'Hobnobs The Nobbly Biscuit',NULL,NULL,NULL,'published','[\"products\\/54.jpg\"]',NULL,'SW-161-A0',0,14,0,1,'in_stock',0,2,1,0,0,0.00,0,865,NULL,NULL,NULL,16,20,11,715,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(200,'Hobnobs The Nobbly Biscuit',NULL,NULL,NULL,'published','[\"products\\/54-1.jpg\"]',NULL,'SW-161-A0-A1',0,14,0,1,'in_stock',0,2,1,0,0,0.00,0,865,NULL,NULL,NULL,16,20,11,715,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(201,'Honest Organic Still Lemonade',NULL,NULL,NULL,'published','[\"products\\/55.jpg\"]',NULL,'SW-146-A0',0,11,0,1,'in_stock',0,3,1,0,0,0.00,0,517,NULL,NULL,NULL,11,12,13,720,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(202,'Honest Organic Still Lemonade',NULL,NULL,NULL,'published','[\"products\\/55-1.jpg\"]',NULL,'SW-146-A0-A1',0,11,0,1,'in_stock',0,3,1,0,0,0.00,0,517,NULL,NULL,NULL,11,12,13,720,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(203,'Honest Organic Still Lemonade',NULL,NULL,NULL,'published','[\"products\\/55-2.jpg\"]',NULL,'SW-146-A0-A2',0,11,0,1,'in_stock',0,3,1,0,0,0.00,0,517,NULL,NULL,NULL,11,12,13,720,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(204,'Honest Organic Still Lemonade',NULL,NULL,NULL,'published','[\"products\\/55.jpg\"]',NULL,'SW-146-A0-A3',0,11,0,1,'in_stock',0,3,1,0,0,0.00,0,517,NULL,NULL,NULL,11,12,13,720,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(205,'Ice Beck’s Beer 350ml x 24 Pieces',NULL,NULL,NULL,'published','[\"products\\/56.jpg\"]',NULL,'SW-181-A0',0,15,0,1,'in_stock',0,5,1,0,0,0.00,0,673,551.86,NULL,NULL,14,11,20,555,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(206,'Iceland 6 Hot Cross Buns (Digital)',NULL,NULL,NULL,'published','[\"products\\/57.jpg\"]',NULL,'SW-146-A0',0,16,0,1,'in_stock',0,3,1,0,0,0.00,0,759,NULL,NULL,NULL,12,14,15,873,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(207,'Iceland Luxury 4 Panini Rolls',NULL,NULL,NULL,'published','[\"products\\/58.jpg\"]',NULL,'SW-110-A0',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,831,NULL,NULL,NULL,14,14,14,596,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(208,'Iceland Luxury 4 Panini Rolls',NULL,NULL,NULL,'published','[\"products\\/58-1.jpg\"]',NULL,'SW-110-A0-A1',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,831,NULL,NULL,NULL,14,14,14,596,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(209,'Iceland Luxury 4 Panini Rolls',NULL,NULL,NULL,'published','[\"products\\/58-2.jpg\"]',NULL,'SW-110-A0-A2',0,16,0,1,'in_stock',0,2,1,0,0,0.00,0,831,NULL,NULL,NULL,14,14,14,596,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(210,'Iceland Soft Scoop Vanilla',NULL,NULL,NULL,'published','[\"products\\/59.jpg\"]',NULL,'SW-200-A0',0,13,0,1,'in_stock',0,5,1,0,0,0.00,0,606,NULL,NULL,NULL,15,17,20,706,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(211,'Iceland Soft Scoop Vanilla',NULL,NULL,NULL,'published','[\"products\\/59-1.jpg\"]',NULL,'SW-200-A0-A1',0,13,0,1,'in_stock',0,5,1,0,0,0.00,0,606,NULL,NULL,NULL,15,17,20,706,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(212,'Iceland Spaghetti Bolognese',NULL,NULL,NULL,'published','[\"products\\/60.jpg\"]',NULL,'SW-134-A0',0,14,0,1,'in_stock',0,5,1,0,0,0.00,0,1108,941.8,NULL,NULL,20,11,12,587,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(213,'Iceland Spaghetti Bolognese',NULL,NULL,NULL,'published','[\"products\\/60-1.jpg\"]',NULL,'SW-134-A0-A1',0,14,0,1,'in_stock',0,5,1,0,0,0.00,0,1108,919.64,NULL,NULL,20,11,12,587,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(214,'Iceland Spaghetti Bolognese',NULL,NULL,NULL,'published','[\"products\\/60-2.jpg\"]',NULL,'SW-134-A0-A2',0,14,0,1,'in_stock',0,5,1,0,0,0.00,0,1108,786.68,NULL,NULL,20,11,12,587,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(215,'Iceland Spaghetti Bolognese',NULL,NULL,NULL,'published','[\"products\\/60.jpg\"]',NULL,'SW-134-A0-A3',0,14,0,1,'in_stock',0,5,1,0,0,0.00,0,1108,786.68,NULL,NULL,20,11,12,587,NULL,0,'2025-10-26 20:13:46','2025-10-26 20:13:46',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(216,'Iceland Spaghetti Bolognese',NULL,NULL,NULL,'published','[\"products\\/60.jpg\"]',NULL,'SW-134-A0-A4',0,14,0,1,'in_stock',0,5,1,0,0,0.00,0,1108,786.68,NULL,NULL,20,11,12,587,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(217,'Kellogg’s Coco Pops Cereal (Digital)',NULL,NULL,NULL,'published','[\"products\\/61.jpg\"]',NULL,'SW-150-A0',0,16,0,1,'in_stock',0,4,1,0,0,0.00,0,1011,NULL,NULL,NULL,15,17,12,562,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(218,'Kellogg’s Coco Pops Cereal (Digital)',NULL,NULL,NULL,'published','[\"products\\/61-1.jpg\"]',NULL,'SW-150-A0-A1',0,16,0,1,'in_stock',0,4,1,0,0,0.00,0,1011,NULL,NULL,NULL,15,17,12,562,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(219,'Kellogg’s Coco Pops Cereal (Digital)',NULL,NULL,NULL,'published','[\"products\\/61.jpg\"]',NULL,'SW-150-A0-A2',0,16,0,1,'in_stock',0,4,1,0,0,0.00,0,1011,NULL,NULL,NULL,15,17,12,562,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(220,'Kit Kat Chunky Milk Chocolate',NULL,NULL,NULL,'published','[\"products\\/62.jpg\"]',NULL,'SW-128-A0',0,18,0,1,'in_stock',0,4,1,0,0,0.00,0,1245,NULL,NULL,NULL,17,10,12,659,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(221,'Kit Kat Chunky Milk Chocolate',NULL,NULL,NULL,'published','[\"products\\/62-1.jpg\"]',NULL,'SW-128-A0-A1',0,18,0,1,'in_stock',0,4,1,0,0,0.00,0,1245,NULL,NULL,NULL,17,10,12,659,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(222,'Kit Kat Chunky Milk Chocolate',NULL,NULL,NULL,'published','[\"products\\/62.jpg\"]',NULL,'SW-128-A0-A2',0,18,0,1,'in_stock',0,4,1,0,0,0.00,0,1245,NULL,NULL,NULL,17,10,12,659,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(223,'Large Green Bell Pepper',NULL,NULL,NULL,'published','[\"products\\/63.jpg\"]',NULL,'SW-105-A0',0,15,0,1,'in_stock',0,5,1,0,0,0.00,0,856,NULL,NULL,NULL,14,17,12,856,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(224,'Large Green Bell Pepper',NULL,NULL,NULL,'published','[\"products\\/63-1.jpg\"]',NULL,'SW-105-A0-A1',0,15,0,1,'in_stock',0,5,1,0,0,0.00,0,856,NULL,NULL,NULL,14,17,12,856,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(225,'Large Green Bell Pepper',NULL,NULL,NULL,'published','[\"products\\/63.jpg\"]',NULL,'SW-105-A0-A2',0,15,0,1,'in_stock',0,5,1,0,0,0.00,0,856,NULL,NULL,NULL,14,17,12,856,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(226,'Large Green Bell Pepper',NULL,NULL,NULL,'published','[\"products\\/63.jpg\"]',NULL,'SW-105-A0-A3',0,15,0,1,'in_stock',0,5,1,0,0,0.00,0,856,NULL,NULL,NULL,14,17,12,856,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(227,'Pice 94w Beasley Journal',NULL,NULL,NULL,'published','[\"products\\/64.jpg\"]',NULL,'SW-143-A0',0,20,0,1,'in_stock',0,5,1,0,0,0.00,0,622,491.38,NULL,NULL,10,17,16,548,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(228,'Pice 94w Beasley Journal',NULL,NULL,NULL,'published','[\"products\\/64-1.jpg\"]',NULL,'SW-143-A0-A1',0,20,0,1,'in_stock',0,5,1,0,0,0.00,0,622,441.62,NULL,NULL,10,17,16,548,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(229,'Pice 94w Beasley Journal',NULL,NULL,NULL,'published','[\"products\\/64.jpg\"]',NULL,'SW-143-A0-A2',0,20,0,1,'in_stock',0,5,1,0,0,0.00,0,622,472.72,NULL,NULL,10,17,16,548,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(230,'Province Piece Glass Drinking Glass (Digital)',NULL,NULL,NULL,'published','[\"products\\/65.jpg\"]',NULL,'SW-117-A0',0,13,0,1,'in_stock',0,4,1,0,0,0.00,0,1265,NULL,NULL,NULL,12,12,10,777,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(231,'Province Piece Glass Drinking Glass (Digital)',NULL,NULL,NULL,'published','[\"products\\/65-1.jpg\"]',NULL,'SW-117-A0-A1',0,13,0,1,'in_stock',0,4,1,0,0,0.00,0,1265,NULL,NULL,NULL,12,12,10,777,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(232,'Province Piece Glass Drinking Glass (Digital)',NULL,NULL,NULL,'published','[\"products\\/65-2.jpg\"]',NULL,'SW-117-A0-A2',0,13,0,1,'in_stock',0,4,1,0,0,0.00,0,1265,NULL,NULL,NULL,12,12,10,777,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL),(233,'Province Piece Glass Drinking Glass (Digital)',NULL,NULL,NULL,'published','[\"products\\/65.jpg\"]',NULL,'SW-117-A0-A3',0,13,0,1,'in_stock',0,4,1,0,0,0.00,0,1265,NULL,NULL,NULL,12,12,10,777,NULL,0,'2025-10-26 20:13:47','2025-10-26 20:13:47',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,'auto_generate',0,0,0,NULL);
/*!40000 ALTER TABLE `ec_products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_products_translations`
--
DROP TABLE IF EXISTS `ec_products_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_products_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_products_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`content` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`lang_code`,`ec_products_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_products_translations`
--
LOCK TABLES `ec_products_translations` WRITE;
/*!40000 ALTER TABLE `ec_products_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_products_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_review_replies`
--
DROP TABLE IF EXISTS `ec_review_replies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_review_replies` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL,
`review_id` bigint unsigned NOT NULL,
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ec_review_replies_review_id_user_id_unique` (`review_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_review_replies`
--
LOCK TABLES `ec_review_replies` WRITE;
/*!40000 ALTER TABLE `ec_review_replies` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_review_replies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_reviews`
--
DROP TABLE IF EXISTS `ec_reviews`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_reviews` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`customer_id` bigint unsigned DEFAULT NULL,
`customer_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`product_id` bigint unsigned NOT NULL,
`star` double NOT NULL,
`comment` text COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`images` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
UNIQUE KEY `ec_reviews_product_id_customer_id_unique` (`product_id`,`customer_id`),
KEY `ec_reviews_product_id_customer_id_status_created_at_index` (`product_id`,`customer_id`,`status`,`created_at`),
KEY `review_relation_index` (`product_id`,`customer_id`,`status`)
) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_reviews`
--
LOCK TABLES `ec_reviews` WRITE;
/*!40000 ALTER TABLE `ec_reviews` DISABLE KEYS */;
INSERT INTO `ec_reviews` VALUES (1,3,NULL,NULL,3,4,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-3.jpg\",\"products\\/9-2.jpg\",\"products\\/19-2.jpg\",\"products\\/20-1.jpg\"]'),(2,9,NULL,NULL,11,4,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/61.jpg\"]'),(3,8,NULL,NULL,9,3,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/21.jpg\",\"products\\/32-1.jpg\",\"products\\/33.jpg\"]'),(4,5,NULL,NULL,49,2,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5.jpg\",\"products\\/6.jpg\",\"products\\/19-2.jpg\",\"products\\/45-1.jpg\"]'),(5,1,NULL,NULL,1,4,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/30-2.jpg\",\"products\\/55-1.jpg\"]'),(6,6,NULL,NULL,47,1,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-1.jpg\",\"products\\/19.jpg\",\"products\\/28-1.jpg\",\"products\\/38-2.jpg\"]'),(7,5,NULL,NULL,31,3,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-3.jpg\",\"products\\/13.jpg\"]'),(8,6,NULL,NULL,35,3,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/37-1.jpg\"]'),(9,2,NULL,NULL,30,3,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/25-2.jpg\",\"products\\/29-1.jpg\"]'),(10,9,NULL,NULL,31,1,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-3.jpg\",\"products\\/20-2.jpg\",\"products\\/21.jpg\",\"products\\/22.jpg\"]'),(11,1,NULL,NULL,30,1,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/30.jpg\"]'),(12,7,NULL,NULL,9,2,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/51.jpg\"]'),(13,3,NULL,NULL,34,5,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/15.jpg\",\"products\\/44.jpg\"]'),(14,9,NULL,NULL,61,5,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/6.jpg\",\"products\\/21-1.jpg\",\"products\\/44-1.jpg\",\"products\\/53.jpg\"]'),(15,8,NULL,NULL,6,2,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/17-1.jpg\"]'),(16,6,NULL,NULL,64,5,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10.jpg\",\"products\\/18.jpg\",\"products\\/22.jpg\",\"products\\/35-1.jpg\"]'),(17,7,NULL,NULL,37,5,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/46-1.jpg\",\"products\\/60-2.jpg\"]'),(18,4,NULL,NULL,19,5,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/22.jpg\"]'),(19,1,NULL,NULL,40,1,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/52-1.jpg\"]'),(20,9,NULL,NULL,63,3,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9.jpg\",\"products\\/11-1.jpg\",\"products\\/32.jpg\",\"products\\/63-1.jpg\"]'),(21,3,NULL,NULL,23,3,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4.jpg\",\"products\\/11-3.jpg\",\"products\\/25-1.jpg\",\"products\\/31.jpg\"]'),(22,1,NULL,NULL,2,1,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18-1.jpg\"]'),(23,1,NULL,NULL,55,2,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/15.jpg\"]'),(24,8,NULL,NULL,49,3,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/21.jpg\",\"products\\/40.jpg\"]'),(25,2,NULL,NULL,49,3,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-3.jpg\",\"products\\/10-2.jpg\",\"products\\/18.jpg\",\"products\\/40-1.jpg\"]'),(26,9,NULL,NULL,51,4,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-3.jpg\",\"products\\/54.jpg\"]'),(27,7,NULL,NULL,50,3,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-3.jpg\",\"products\\/11-2.jpg\",\"products\\/65.jpg\"]'),(28,8,NULL,NULL,25,3,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/33-1.jpg\",\"products\\/53.jpg\"]'),(29,5,NULL,NULL,37,2,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-1.jpg\",\"products\\/38.jpg\"]'),(30,2,NULL,NULL,61,3,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/45-1.jpg\",\"products\\/64-1.jpg\"]'),(31,7,NULL,NULL,52,3,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/61.jpg\"]'),(32,9,NULL,NULL,17,5,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/34.jpg\"]'),(33,6,NULL,NULL,33,3,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/30-1.jpg\",\"products\\/57.jpg\"]'),(34,1,NULL,NULL,9,4,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/17.jpg\"]'),(35,1,NULL,NULL,25,2,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/56-1.jpg\"]'),(36,4,NULL,NULL,13,2,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/55-2.jpg\"]'),(37,3,NULL,NULL,58,2,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/56-1.jpg\"]'),(38,6,NULL,NULL,59,4,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/13.jpg\",\"products\\/26-1.jpg\",\"products\\/38-1.jpg\",\"products\\/42-1.jpg\"]'),(39,1,NULL,NULL,46,2,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-2.jpg\",\"products\\/37-2.jpg\",\"products\\/58-1.jpg\"]'),(40,5,NULL,NULL,24,1,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-3.jpg\",\"products\\/21.jpg\",\"products\\/37-1.jpg\",\"products\\/65-2.jpg\"]'),(41,7,NULL,NULL,34,5,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10.jpg\",\"products\\/22.jpg\",\"products\\/24-2.jpg\",\"products\\/46.jpg\"]'),(42,9,NULL,NULL,14,5,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/45-1.jpg\"]'),(43,8,NULL,NULL,64,4,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/16.jpg\"]'),(44,3,NULL,NULL,61,5,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-2.jpg\",\"products\\/22-3.jpg\",\"products\\/28-1.jpg\",\"products\\/50-1.jpg\"]'),(45,1,NULL,NULL,12,5,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/33-2.jpg\",\"products\\/43-1.jpg\",\"products\\/52-1.jpg\"]'),(46,4,NULL,NULL,51,3,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-1.jpg\",\"products\\/6.jpg\",\"products\\/25-2.jpg\",\"products\\/52-1.jpg\"]'),(47,2,NULL,NULL,32,1,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/14.jpg\",\"products\\/38-1.jpg\",\"products\\/59.jpg\"]'),(48,8,NULL,NULL,42,1,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/40-1.jpg\",\"products\\/47.jpg\",\"products\\/49.jpg\"]'),(50,8,NULL,NULL,16,3,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/21-1.jpg\",\"products\\/26.jpg\"]'),(51,1,NULL,NULL,7,5,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/56.jpg\"]'),(52,4,NULL,NULL,62,4,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/33-1.jpg\",\"products\\/34.jpg\",\"products\\/36-2.jpg\",\"products\\/50.jpg\"]'),(53,1,NULL,NULL,18,3,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20.jpg\",\"products\\/32-2.jpg\"]'),(54,9,NULL,NULL,20,4,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/17.jpg\",\"products\\/21.jpg\",\"products\\/38-1.jpg\"]'),(55,1,NULL,NULL,37,5,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/36-1.jpg\",\"products\\/58.jpg\"]'),(56,8,NULL,NULL,57,3,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/13-1.jpg\",\"products\\/36-2.jpg\",\"products\\/45-1.jpg\",\"products\\/60-2.jpg\"]'),(57,2,NULL,NULL,60,1,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23.jpg\",\"products\\/44-1.jpg\",\"products\\/57-1.jpg\"]'),(58,6,NULL,NULL,39,5,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23-2.jpg\",\"products\\/40.jpg\"]'),(59,8,NULL,NULL,14,4,'Good app, good backup service and support. Good documentation.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-2.jpg\",\"products\\/38-2.jpg\",\"products\\/38.jpg\"]'),(60,7,NULL,NULL,47,2,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-2.jpg\",\"products\\/12.jpg\",\"products\\/38-2.jpg\",\"products\\/61-1.jpg\"]'),(61,7,NULL,NULL,65,5,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/40-1.jpg\"]'),(62,1,NULL,NULL,38,2,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-3.jpg\",\"products\\/48-1.jpg\"]'),(63,7,NULL,NULL,56,5,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23-2.jpg\",\"products\\/29-1.jpg\",\"products\\/33.jpg\"]'),(65,4,NULL,NULL,11,3,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-2.jpg\",\"products\\/29-2.jpg\",\"products\\/36-2.jpg\",\"products\\/46.jpg\"]'),(66,7,NULL,NULL,39,4,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-2.jpg\",\"products\\/10.jpg\"]'),(67,7,NULL,NULL,51,3,'Best ecommerce CMS online store!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/50.jpg\"]'),(68,3,NULL,NULL,31,1,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10-1.jpg\",\"products\\/30-2.jpg\"]'),(69,5,NULL,NULL,39,3,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/1.jpg\",\"products\\/20-3.jpg\",\"products\\/58-1.jpg\"]'),(70,9,NULL,NULL,62,3,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/35.jpg\"]'),(71,1,NULL,NULL,4,2,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-2.jpg\",\"products\\/15.jpg\",\"products\\/25-2.jpg\",\"products\\/65-1.jpg\"]'),(72,3,NULL,NULL,9,2,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8.jpg\",\"products\\/36-1.jpg\"]'),(73,2,NULL,NULL,56,5,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-2.jpg\",\"products\\/9.jpg\",\"products\\/31.jpg\",\"products\\/34.jpg\"]'),(75,8,NULL,NULL,31,1,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10-2.jpg\",\"products\\/34.jpg\",\"products\\/41-2.jpg\"]'),(76,9,NULL,NULL,6,4,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/32-2.jpg\",\"products\\/38-2.jpg\"]'),(77,4,NULL,NULL,2,5,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/63.jpg\"]'),(78,5,NULL,NULL,42,2,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/27-1.jpg\",\"products\\/28-2.jpg\",\"products\\/36-1.jpg\"]'),(79,5,NULL,NULL,10,4,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/19-1.jpg\"]'),(80,6,NULL,NULL,32,4,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/21-1.jpg\",\"products\\/25.jpg\",\"products\\/30-2.jpg\",\"products\\/41-1.jpg\"]'),(81,8,NULL,NULL,33,4,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/28.jpg\",\"products\\/42-2.jpg\"]'),(82,7,NULL,NULL,5,5,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-1.jpg\",\"products\\/20-3.jpg\",\"products\\/37-1.jpg\",\"products\\/49-1.jpg\"]'),(83,4,NULL,NULL,21,4,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8.jpg\"]'),(84,4,NULL,NULL,57,2,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8.jpg\"]'),(85,4,NULL,NULL,32,4,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/12.jpg\",\"products\\/48-2.jpg\",\"products\\/54.jpg\"]'),(86,7,NULL,NULL,11,2,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18-1.jpg\",\"products\\/41.jpg\",\"products\\/48-2.jpg\",\"products\\/57.jpg\"]'),(87,2,NULL,NULL,29,4,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10.jpg\"]'),(88,5,NULL,NULL,56,1,'Best ecommerce CMS online store!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20.jpg\",\"products\\/37-1.jpg\"]'),(89,2,NULL,NULL,22,2,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-2.jpg\",\"products\\/32-2.jpg\",\"products\\/48.jpg\"]'),(90,8,NULL,NULL,12,2,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/25-2.jpg\"]'),(91,2,NULL,NULL,58,5,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18-2.jpg\",\"products\\/30-1.jpg\",\"products\\/38-3.jpg\",\"products\\/56-1.jpg\"]'),(92,7,NULL,NULL,27,1,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/50.jpg\",\"products\\/60-1.jpg\"]'),(93,9,NULL,NULL,53,5,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18.jpg\",\"products\\/52-1.jpg\"]'),(94,9,NULL,NULL,57,2,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-1.jpg\",\"products\\/9.jpg\"]'),(95,2,NULL,NULL,9,3,'Good app, good backup service and support. Good documentation.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-1.jpg\",\"products\\/15-1.jpg\",\"products\\/20-3.jpg\"]'),(96,7,NULL,NULL,30,5,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/48-2.jpg\",\"products\\/54.jpg\"]'),(97,6,NULL,NULL,27,5,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/32-1.jpg\",\"products\\/47.jpg\",\"products\\/59-2.jpg\"]'),(98,4,NULL,NULL,5,3,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/39-2.jpg\",\"products\\/57-1.jpg\"]'),(99,1,NULL,NULL,41,2,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/3.jpg\",\"products\\/41-1.jpg\",\"products\\/41.jpg\",\"products\\/61.jpg\"]'),(100,9,NULL,NULL,42,5,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/7.jpg\"]'),(101,8,NULL,NULL,2,3,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10-2.jpg\",\"products\\/21-1.jpg\",\"products\\/42-2.jpg\"]'),(102,5,NULL,NULL,28,2,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11.jpg\",\"products\\/19-3.jpg\",\"products\\/24-1.jpg\",\"products\\/52-1.jpg\"]'),(103,7,NULL,NULL,45,3,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/24.jpg\",\"products\\/27.jpg\",\"products\\/57-1.jpg\",\"products\\/58-1.jpg\"]'),(104,2,NULL,NULL,8,4,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/19-1.jpg\",\"products\\/21.jpg\"]'),(105,2,NULL,NULL,50,2,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-2.jpg\",\"products\\/32-1.jpg\"]'),(106,6,NULL,NULL,18,2,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5.jpg\",\"products\\/23-2.jpg\"]'),(107,3,NULL,NULL,10,1,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-3.jpg\",\"products\\/10.jpg\",\"products\\/56.jpg\"]'),(108,1,NULL,NULL,63,4,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/24-1.jpg\"]'),(109,9,NULL,NULL,32,1,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/22-1.jpg\"]'),(112,4,NULL,NULL,47,5,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/44-2.jpg\"]'),(113,9,NULL,NULL,46,4,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/12-3.jpg\",\"products\\/13-1.jpg\",\"products\\/42-2.jpg\"]'),(115,5,NULL,NULL,22,5,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-1.jpg\",\"products\\/8-2.jpg\",\"products\\/25-1.jpg\",\"products\\/28.jpg\"]'),(116,2,NULL,NULL,27,3,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/13.jpg\",\"products\\/35.jpg\"]'),(117,3,NULL,NULL,8,4,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-1.jpg\",\"products\\/24-2.jpg\",\"products\\/37-2.jpg\",\"products\\/64.jpg\"]'),(118,4,NULL,NULL,22,3,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/36-1.jpg\",\"products\\/38-1.jpg\",\"products\\/62.jpg\"]'),(119,4,NULL,NULL,7,4,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-1.jpg\",\"products\\/19-3.jpg\",\"products\\/22-1.jpg\",\"products\\/65.jpg\"]'),(120,9,NULL,NULL,65,1,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/25-1.jpg\",\"products\\/38-2.jpg\",\"products\\/45-1.jpg\",\"products\\/56-1.jpg\"]'),(121,4,NULL,NULL,16,3,'Best ecommerce CMS online store!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/63-1.jpg\"]'),(122,2,NULL,NULL,57,2,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20-1.jpg\"]'),(123,1,NULL,NULL,10,4,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/32-2.jpg\"]'),(125,5,NULL,NULL,21,5,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-3.jpg\",\"products\\/52.jpg\"]'),(126,4,NULL,NULL,9,2,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/21-2.jpg\",\"products\\/23-2.jpg\",\"products\\/24-2.jpg\",\"products\\/26-1.jpg\"]'),(128,4,NULL,NULL,33,3,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-2.jpg\",\"products\\/12-1.jpg\",\"products\\/31-1.jpg\",\"products\\/38.jpg\"]'),(130,7,NULL,NULL,24,5,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20-1.jpg\"]'),(135,1,NULL,NULL,47,4,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/44-2.jpg\",\"products\\/61-1.jpg\"]'),(136,2,NULL,NULL,53,5,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-1.jpg\",\"products\\/14.jpg\",\"products\\/50-1.jpg\",\"products\\/52-1.jpg\"]'),(138,1,NULL,NULL,64,4,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/58.jpg\"]'),(139,1,NULL,NULL,62,2,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/12-2.jpg\",\"products\\/39-1.jpg\",\"products\\/43.jpg\"]'),(140,3,NULL,NULL,37,1,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/41-1.jpg\",\"products\\/48-1.jpg\",\"products\\/51.jpg\"]'),(141,2,NULL,NULL,43,4,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-2.jpg\",\"products\\/40-1.jpg\"]'),(142,5,NULL,NULL,25,5,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-2.jpg\",\"products\\/34-1.jpg\",\"products\\/47-1.jpg\"]'),(144,5,NULL,NULL,8,1,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23.jpg\",\"products\\/39.jpg\"]'),(145,8,NULL,NULL,61,1,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-1.jpg\",\"products\\/12-1.jpg\",\"products\\/12-2.jpg\",\"products\\/36.jpg\"]'),(146,8,NULL,NULL,52,4,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-2.jpg\",\"products\\/23-1.jpg\",\"products\\/53-1.jpg\"]'),(147,7,NULL,NULL,61,2,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/21-1.jpg\",\"products\\/27.jpg\"]'),(148,6,NULL,NULL,12,3,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/53.jpg\"]'),(149,1,NULL,NULL,39,3,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18-2.jpg\",\"products\\/24-1.jpg\",\"products\\/49-1.jpg\",\"products\\/55-2.jpg\"]'),(151,5,NULL,NULL,14,1,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/22.jpg\"]'),(154,6,NULL,NULL,22,2,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/6.jpg\",\"products\\/28.jpg\",\"products\\/31.jpg\",\"products\\/43-2.jpg\"]'),(155,4,NULL,NULL,56,5,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/30-1.jpg\",\"products\\/31-1.jpg\",\"products\\/38-1.jpg\",\"products\\/65-2.jpg\"]'),(156,4,NULL,NULL,53,3,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/41.jpg\"]'),(157,1,NULL,NULL,27,5,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-3.jpg\",\"products\\/16.jpg\",\"products\\/54.jpg\"]'),(159,8,NULL,NULL,65,4,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/44.jpg\"]'),(160,5,NULL,NULL,48,4,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/36-1.jpg\",\"products\\/48.jpg\",\"products\\/60-1.jpg\"]'),(161,9,NULL,NULL,36,1,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9.jpg\",\"products\\/33.jpg\"]'),(162,7,NULL,NULL,38,4,'Best ecommerce CMS online store!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4.jpg\",\"products\\/30-2.jpg\",\"products\\/31.jpg\",\"products\\/56-2.jpg\"]'),(163,2,NULL,NULL,28,3,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-1.jpg\"]'),(164,1,NULL,NULL,60,3,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-1.jpg\",\"products\\/24-2.jpg\",\"products\\/44-2.jpg\",\"products\\/44.jpg\"]'),(167,5,NULL,NULL,43,1,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-3.jpg\",\"products\\/26.jpg\",\"products\\/47-1.jpg\"]'),(169,5,NULL,NULL,46,5,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/17-2.jpg\",\"products\\/33-1.jpg\",\"products\\/60-1.jpg\"]'),(170,9,NULL,NULL,19,5,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4.jpg\",\"products\\/24.jpg\"]'),(172,2,NULL,NULL,16,1,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/1.jpg\"]'),(173,3,NULL,NULL,6,2,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18-3.jpg\",\"products\\/23-2.jpg\",\"products\\/49-2.jpg\",\"products\\/65-1.jpg\"]'),(178,5,NULL,NULL,51,5,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/12.jpg\",\"products\\/38.jpg\",\"products\\/46.jpg\",\"products\\/65-2.jpg\"]'),(182,7,NULL,NULL,41,5,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20-1.jpg\",\"products\\/23-2.jpg\",\"products\\/38-1.jpg\",\"products\\/52-2.jpg\"]'),(183,9,NULL,NULL,16,3,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/44-1.jpg\",\"products\\/57-1.jpg\",\"products\\/63-1.jpg\"]'),(184,9,NULL,NULL,33,1,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20.jpg\",\"products\\/38-1.jpg\",\"products\\/48-1.jpg\",\"products\\/56-1.jpg\"]'),(186,7,NULL,NULL,48,4,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18-1.jpg\",\"products\\/27-1.jpg\"]'),(189,6,NULL,NULL,5,1,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/19-2.jpg\",\"products\\/56.jpg\"]'),(190,3,NULL,NULL,49,2,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/6.jpg\",\"products\\/43-2.jpg\",\"products\\/52-1.jpg\",\"products\\/60-1.jpg\"]'),(191,7,NULL,NULL,31,3,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20-1.jpg\",\"products\\/44-1.jpg\"]'),(192,6,NULL,NULL,53,4,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/15-1.jpg\",\"products\\/17-1.jpg\"]'),(193,4,NULL,NULL,17,2,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/13-1.jpg\",\"products\\/21-2.jpg\",\"products\\/64.jpg\"]'),(195,7,NULL,NULL,6,5,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-2.jpg\",\"products\\/8-3.jpg\",\"products\\/24.jpg\",\"products\\/28.jpg\"]'),(196,8,NULL,NULL,59,3,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/17.jpg\",\"products\\/23-3.jpg\",\"products\\/42-2.jpg\",\"products\\/48-1.jpg\"]'),(197,7,NULL,NULL,12,1,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/32-1.jpg\",\"products\\/36-1.jpg\"]'),(198,3,NULL,NULL,1,5,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/3.jpg\",\"products\\/44-1.jpg\"]'),(199,8,NULL,NULL,11,5,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/13.jpg\",\"products\\/21.jpg\",\"products\\/34-1.jpg\",\"products\\/38.jpg\"]'),(202,9,NULL,NULL,25,3,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/43.jpg\",\"products\\/52-2.jpg\",\"products\\/53.jpg\"]'),(203,2,NULL,NULL,15,5,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/56-1.jpg\"]'),(205,6,NULL,NULL,3,4,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/17.jpg\",\"products\\/22.jpg\",\"products\\/48-2.jpg\",\"products\\/49-2.jpg\"]'),(206,8,NULL,NULL,34,3,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/39-1.jpg\",\"products\\/55.jpg\",\"products\\/59-1.jpg\"]'),(207,8,NULL,NULL,32,1,'Best ecommerce CMS online store!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/12.jpg\",\"products\\/24-2.jpg\",\"products\\/37-2.jpg\",\"products\\/38.jpg\"]'),(208,2,NULL,NULL,12,4,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10-2.jpg\",\"products\\/26-1.jpg\"]'),(209,9,NULL,NULL,56,2,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/17-1.jpg\"]'),(210,7,NULL,NULL,22,5,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-1.jpg\",\"products\\/11-3.jpg\",\"products\\/18-2.jpg\"]'),(211,5,NULL,NULL,50,4,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/12-3.jpg\",\"products\\/25-1.jpg\",\"products\\/36-1.jpg\"]'),(212,5,NULL,NULL,19,1,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/17-1.jpg\",\"products\\/17-2.jpg\",\"products\\/25-1.jpg\",\"products\\/59-1.jpg\"]'),(213,6,NULL,NULL,48,3,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/44-2.jpg\"]'),(215,1,NULL,NULL,19,1,'Best ecommerce CMS online store!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/12.jpg\",\"products\\/48-1.jpg\",\"products\\/52-1.jpg\"]'),(218,7,NULL,NULL,49,1,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/21-2.jpg\"]'),(219,3,NULL,NULL,39,5,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-2.jpg\",\"products\\/20-3.jpg\",\"products\\/39-2.jpg\",\"products\\/47-1.jpg\"]'),(220,4,NULL,NULL,42,4,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/12-1.jpg\"]'),(222,8,NULL,NULL,50,3,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/40.jpg\",\"products\\/50-1.jpg\"]'),(223,3,NULL,NULL,18,4,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/36.jpg\"]'),(225,8,NULL,NULL,29,3,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-1.jpg\",\"products\\/47-1.jpg\",\"products\\/58-1.jpg\",\"products\\/64.jpg\"]'),(226,8,NULL,NULL,58,4,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/12-3.jpg\",\"products\\/20-2.jpg\",\"products\\/36-2.jpg\",\"products\\/42-1.jpg\"]'),(228,7,NULL,NULL,18,5,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-2.jpg\",\"products\\/26.jpg\",\"products\\/30.jpg\",\"products\\/33-1.jpg\"]'),(230,6,NULL,NULL,56,1,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20-3.jpg\",\"products\\/32-1.jpg\"]'),(233,3,NULL,NULL,54,4,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18.jpg\"]'),(234,6,NULL,NULL,61,5,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/27.jpg\",\"products\\/30-1.jpg\",\"products\\/30.jpg\",\"products\\/44.jpg\"]'),(236,1,NULL,NULL,22,4,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/39-1.jpg\",\"products\\/44-1.jpg\",\"products\\/55-2.jpg\",\"products\\/58-2.jpg\"]'),(238,6,NULL,NULL,19,2,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/17-3.jpg\",\"products\\/20-3.jpg\",\"products\\/23.jpg\",\"products\\/62-1.jpg\"]'),(239,1,NULL,NULL,50,4,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5.jpg\"]'),(240,2,NULL,NULL,7,5,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/22.jpg\",\"products\\/28-1.jpg\",\"products\\/29-2.jpg\",\"products\\/35.jpg\"]'),(241,7,NULL,NULL,32,2,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/22-1.jpg\",\"products\\/65-2.jpg\"]'),(242,9,NULL,NULL,3,2,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/36-1.jpg\",\"products\\/48-2.jpg\"]'),(244,8,NULL,NULL,4,4,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/41-2.jpg\",\"products\\/56-2.jpg\"]'),(245,6,NULL,NULL,8,5,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-3.jpg\",\"products\\/18-3.jpg\",\"products\\/28-2.jpg\"]'),(246,6,NULL,NULL,52,1,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-2.jpg\",\"products\\/27.jpg\"]'),(248,3,NULL,NULL,55,5,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/39.jpg\"]'),(253,9,NULL,NULL,28,4,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-1.jpg\",\"products\\/28.jpg\"]'),(254,7,NULL,NULL,1,2,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10-1.jpg\",\"products\\/41.jpg\"]'),(255,4,NULL,NULL,34,1,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-2.jpg\",\"products\\/11-3.jpg\"]'),(258,9,NULL,NULL,8,5,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/24-1.jpg\",\"products\\/27.jpg\"]'),(260,5,NULL,NULL,36,5,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/39.jpg\",\"products\\/59-3.jpg\"]'),(261,3,NULL,NULL,22,1,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23.jpg\",\"products\\/28-2.jpg\",\"products\\/55.jpg\"]'),(262,5,NULL,NULL,52,5,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/48-2.jpg\"]'),(263,4,NULL,NULL,23,2,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/40-1.jpg\",\"products\\/57-1.jpg\"]'),(264,1,NULL,NULL,56,5,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20-2.jpg\"]'),(268,7,NULL,NULL,40,5,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/28-1.jpg\"]'),(272,3,NULL,NULL,44,3,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/3.jpg\",\"products\\/4-3.jpg\",\"products\\/20-3.jpg\",\"products\\/45.jpg\"]'),(273,8,NULL,NULL,8,1,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/35-1.jpg\",\"products\\/56.jpg\",\"products\\/60-2.jpg\"]'),(275,9,NULL,NULL,59,4,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20-2.jpg\",\"products\\/64.jpg\"]'),(277,2,NULL,NULL,44,5,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/26.jpg\",\"products\\/54.jpg\"]'),(278,7,NULL,NULL,10,5,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-2.jpg\",\"products\\/55-1.jpg\"]'),(279,4,NULL,NULL,31,4,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/15.jpg\",\"products\\/17-2.jpg\"]'),(281,1,NULL,NULL,31,5,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/14.jpg\",\"products\\/34-1.jpg\",\"products\\/56-2.jpg\",\"products\\/65.jpg\"]'),(282,7,NULL,NULL,42,1,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10-1.jpg\",\"products\\/10.jpg\",\"products\\/23-1.jpg\",\"products\\/39-2.jpg\"]'),(284,5,NULL,NULL,1,5,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/62.jpg\"]'),(287,7,NULL,NULL,7,5,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11.jpg\",\"products\\/36-1.jpg\",\"products\\/38-1.jpg\",\"products\\/46-1.jpg\"]'),(288,8,NULL,NULL,24,5,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11.jpg\",\"products\\/19-1.jpg\",\"products\\/63.jpg\"]'),(289,5,NULL,NULL,64,1,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5.jpg\",\"products\\/21-1.jpg\",\"products\\/34-1.jpg\",\"products\\/58-2.jpg\"]'),(290,5,NULL,NULL,9,4,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/12-2.jpg\",\"products\\/30.jpg\",\"products\\/38.jpg\",\"products\\/45.jpg\"]'),(292,5,NULL,NULL,3,4,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2.jpg\",\"products\\/6.jpg\"]'),(293,1,NULL,NULL,48,3,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/46.jpg\"]'),(294,4,NULL,NULL,10,5,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10.jpg\",\"products\\/11.jpg\"]'),(295,4,NULL,NULL,20,3,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/7.jpg\",\"products\\/12-1.jpg\"]'),(296,9,NULL,NULL,41,3,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/21-1.jpg\",\"products\\/38-3.jpg\",\"products\\/51.jpg\"]'),(297,3,NULL,NULL,48,4,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2.jpg\",\"products\\/5-1.jpg\",\"products\\/11-3.jpg\",\"products\\/39-1.jpg\"]'),(298,7,NULL,NULL,60,5,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/32-1.jpg\"]'),(300,3,NULL,NULL,53,1,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/19-1.jpg\",\"products\\/45.jpg\"]'),(301,9,NULL,NULL,29,3,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/47.jpg\"]'),(302,7,NULL,NULL,55,1,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/41-1.jpg\"]'),(303,7,NULL,NULL,43,2,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23-1.jpg\",\"products\\/34-1.jpg\",\"products\\/65.jpg\"]'),(304,3,NULL,NULL,50,2,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/3.jpg\",\"products\\/19-3.jpg\",\"products\\/24-2.jpg\",\"products\\/60.jpg\"]'),(305,2,NULL,NULL,26,2,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/15.jpg\",\"products\\/34.jpg\",\"products\\/54.jpg\"]'),(306,1,NULL,NULL,32,2,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11.jpg\",\"products\\/40-1.jpg\",\"products\\/41-2.jpg\",\"products\\/55-1.jpg\"]'),(307,8,NULL,NULL,15,4,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20-3.jpg\",\"products\\/37-1.jpg\",\"products\\/46-1.jpg\",\"products\\/55-1.jpg\"]'),(308,1,NULL,NULL,59,4,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/36-1.jpg\",\"products\\/42-1.jpg\",\"products\\/47-1.jpg\",\"products\\/51.jpg\"]'),(309,5,NULL,NULL,11,4,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20-3.jpg\",\"products\\/27.jpg\"]'),(312,7,NULL,NULL,64,3,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/32-1.jpg\"]'),(313,2,NULL,NULL,45,2,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23-3.jpg\",\"products\\/45.jpg\",\"products\\/56.jpg\",\"products\\/59-1.jpg\"]'),(314,3,NULL,NULL,4,1,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/1.jpg\",\"products\\/39.jpg\",\"products\\/49-1.jpg\"]'),(315,6,NULL,NULL,25,4,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/38.jpg\",\"products\\/45.jpg\",\"products\\/47-1.jpg\"]'),(316,1,NULL,NULL,20,5,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10.jpg\",\"products\\/52-1.jpg\",\"products\\/56-1.jpg\"]'),(317,2,NULL,NULL,35,2,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/52-1.jpg\"]'),(320,9,NULL,NULL,1,5,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-3.jpg\",\"products\\/17.jpg\"]'),(322,7,NULL,NULL,20,4,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/35.jpg\",\"products\\/39.jpg\",\"products\\/52.jpg\",\"products\\/59.jpg\"]'),(326,7,NULL,NULL,29,2,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-1.jpg\",\"products\\/25-1.jpg\",\"products\\/57.jpg\"]'),(328,9,NULL,NULL,55,4,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/17-1.jpg\",\"products\\/24.jpg\",\"products\\/60-2.jpg\"]'),(330,7,NULL,NULL,15,4,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-2.jpg\",\"products\\/9-2.jpg\",\"products\\/28-2.jpg\"]'),(331,8,NULL,NULL,36,2,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/14.jpg\",\"products\\/34.jpg\"]'),(332,1,NULL,NULL,8,2,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10-2.jpg\",\"products\\/10.jpg\",\"products\\/36-1.jpg\",\"products\\/49-1.jpg\"]'),(334,7,NULL,NULL,17,1,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/22-1.jpg\",\"products\\/37.jpg\",\"products\\/52.jpg\"]'),(335,5,NULL,NULL,59,2,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-1.jpg\",\"products\\/38.jpg\"]'),(336,3,NULL,NULL,52,1,'Good app, good backup service and support. Good documentation.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-3.jpg\",\"products\\/42-2.jpg\"]'),(337,6,NULL,NULL,40,2,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-2.jpg\",\"products\\/34.jpg\",\"products\\/36.jpg\",\"products\\/43-2.jpg\"]'),(339,9,NULL,NULL,2,3,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-3.jpg\",\"products\\/15.jpg\",\"products\\/35.jpg\",\"products\\/49.jpg\"]'),(340,4,NULL,NULL,15,5,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4.jpg\",\"products\\/10-1.jpg\",\"products\\/22-3.jpg\"]'),(342,6,NULL,NULL,28,2,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/37-1.jpg\",\"products\\/38-3.jpg\",\"products\\/50-1.jpg\"]'),(343,1,NULL,NULL,24,2,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/60-1.jpg\",\"products\\/65.jpg\"]'),(344,3,NULL,NULL,24,1,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/58-2.jpg\"]'),(347,5,NULL,NULL,54,5,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/45.jpg\",\"products\\/55-2.jpg\"]'),(348,8,NULL,NULL,35,5,'Best ecommerce CMS online store!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/58-1.jpg\"]'),(350,6,NULL,NULL,43,5,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/41-1.jpg\",\"products\\/63-1.jpg\"]'),(352,5,NULL,NULL,27,1,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/44-2.jpg\"]'),(355,1,NULL,NULL,35,1,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/43-1.jpg\",\"products\\/63.jpg\"]'),(357,7,NULL,NULL,13,5,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10-1.jpg\",\"products\\/24-2.jpg\"]'),(359,4,NULL,NULL,58,5,'Best ecommerce CMS online store!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/19-3.jpg\",\"products\\/36-1.jpg\",\"products\\/47-1.jpg\",\"products\\/56.jpg\"]'),(360,8,NULL,NULL,19,2,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-1.jpg\",\"products\\/17.jpg\"]'),(362,9,NULL,NULL,52,3,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/63.jpg\"]'),(368,2,NULL,NULL,39,2,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18-3.jpg\",\"products\\/23-2.jpg\",\"products\\/60-2.jpg\"]'),(369,1,NULL,NULL,65,2,'Good app, good backup service and support. Good documentation.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/38.jpg\",\"products\\/46-1.jpg\"]'),(370,3,NULL,NULL,51,3,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-1.jpg\",\"products\\/29.jpg\"]'),(371,4,NULL,NULL,61,1,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/3.jpg\",\"products\\/8-3.jpg\",\"products\\/22-1.jpg\",\"products\\/25-2.jpg\"]'),(374,5,NULL,NULL,62,3,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18-1.jpg\",\"products\\/24-2.jpg\",\"products\\/32-1.jpg\"]'),(376,6,NULL,NULL,21,3,'Best ecommerce CMS online store!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/27-1.jpg\",\"products\\/30-1.jpg\",\"products\\/36.jpg\",\"products\\/63.jpg\"]'),(377,3,NULL,NULL,43,3,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/22-1.jpg\"]'),(378,9,NULL,NULL,54,3,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/14.jpg\"]'),(379,4,NULL,NULL,3,5,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-3.jpg\",\"products\\/58.jpg\"]'),(381,2,NULL,NULL,23,1,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/25-2.jpg\",\"products\\/34-1.jpg\",\"products\\/37-1.jpg\"]'),(383,1,NULL,NULL,14,5,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/42-1.jpg\"]'),(384,5,NULL,NULL,35,4,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8.jpg\",\"products\\/38-3.jpg\",\"products\\/46.jpg\",\"products\\/60-1.jpg\"]'),(385,4,NULL,NULL,64,4,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23-2.jpg\",\"products\\/38-3.jpg\"]'),(386,5,NULL,NULL,61,1,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/17-2.jpg\",\"products\\/20.jpg\",\"products\\/24-1.jpg\",\"products\\/52-1.jpg\"]'),(388,9,NULL,NULL,23,3,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-1.jpg\",\"products\\/32-2.jpg\",\"products\\/48-2.jpg\"]'),(389,4,NULL,NULL,40,5,'Best ecommerce CMS online store!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/29.jpg\",\"products\\/49-1.jpg\"]'),(391,4,NULL,NULL,39,3,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/6.jpg\",\"products\\/28-2.jpg\",\"products\\/29-1.jpg\",\"products\\/35.jpg\"]'),(395,2,NULL,NULL,2,1,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23.jpg\",\"products\\/57-1.jpg\",\"products\\/61.jpg\"]'),(396,4,NULL,NULL,48,2,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-3.jpg\",\"products\\/18-1.jpg\",\"products\\/41.jpg\"]'),(397,1,NULL,NULL,58,1,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/28.jpg\",\"products\\/33.jpg\",\"products\\/63.jpg\"]'),(398,9,NULL,NULL,43,4,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/24.jpg\",\"products\\/52-1.jpg\"]'),(399,5,NULL,NULL,15,5,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/24.jpg\",\"products\\/47.jpg\"]'),(400,1,NULL,NULL,15,5,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/33-1.jpg\"]'),(403,3,NULL,NULL,13,2,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/48-1.jpg\"]'),(404,1,NULL,NULL,16,5,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/51.jpg\",\"products\\/54.jpg\",\"products\\/55-1.jpg\"]'),(406,8,NULL,NULL,51,1,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/45-1.jpg\",\"products\\/58-2.jpg\"]'),(409,3,NULL,NULL,15,5,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-2.jpg\"]'),(410,8,NULL,NULL,39,1,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/36-2.jpg\",\"products\\/53.jpg\"]'),(416,1,NULL,NULL,36,3,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/6.jpg\",\"products\\/13-1.jpg\",\"products\\/37.jpg\"]'),(420,2,NULL,NULL,25,4,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/29-1.jpg\",\"products\\/54.jpg\"]'),(421,9,NULL,NULL,10,3,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/7.jpg\",\"products\\/10-2.jpg\",\"products\\/24.jpg\",\"products\\/37-1.jpg\"]'),(422,1,NULL,NULL,5,5,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/19.jpg\",\"products\\/32-2.jpg\",\"products\\/39.jpg\"]'),(423,2,NULL,NULL,4,1,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23-1.jpg\"]'),(435,4,NULL,NULL,55,4,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/30.jpg\"]'),(436,2,NULL,NULL,14,2,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/1.jpg\",\"products\\/13.jpg\",\"products\\/52.jpg\"]'),(439,6,NULL,NULL,41,2,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/28.jpg\",\"products\\/55.jpg\"]'),(445,1,NULL,NULL,49,2,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/1.jpg\",\"products\\/38-3.jpg\",\"products\\/40.jpg\"]'),(446,3,NULL,NULL,5,2,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-2.jpg\",\"products\\/47-1.jpg\",\"products\\/65-1.jpg\"]'),(447,9,NULL,NULL,40,3,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4.jpg\"]'),(448,6,NULL,NULL,46,3,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11.jpg\",\"products\\/20-2.jpg\"]'),(449,5,NULL,NULL,57,5,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8.jpg\",\"products\\/65-1.jpg\"]'),(451,8,NULL,NULL,28,1,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/56-1.jpg\",\"products\\/64.jpg\"]'),(452,6,NULL,NULL,26,4,'Good app, good backup service and support. Good documentation.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/17.jpg\",\"products\\/40.jpg\",\"products\\/52-2.jpg\"]'),(456,7,NULL,NULL,62,5,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/27.jpg\",\"products\\/45-1.jpg\",\"products\\/53.jpg\"]'),(461,8,NULL,NULL,20,2,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/29.jpg\",\"products\\/43.jpg\",\"products\\/55-2.jpg\",\"products\\/61-1.jpg\"]'),(462,6,NULL,NULL,45,2,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/19-1.jpg\",\"products\\/21.jpg\",\"products\\/29-1.jpg\",\"products\\/46-1.jpg\"]'),(467,2,NULL,NULL,3,2,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/26.jpg\",\"products\\/43-1.jpg\"]'),(468,2,NULL,NULL,40,2,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/60.jpg\"]'),(473,3,NULL,NULL,60,3,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18-1.jpg\",\"products\\/34.jpg\",\"products\\/62.jpg\"]'),(474,2,NULL,NULL,38,3,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/30-2.jpg\",\"products\\/32-2.jpg\",\"products\\/42-1.jpg\"]'),(475,6,NULL,NULL,49,1,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/28-1.jpg\",\"products\\/35-1.jpg\",\"products\\/55-2.jpg\"]'),(476,2,NULL,NULL,36,2,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-1.jpg\",\"products\\/17-2.jpg\",\"products\\/42-1.jpg\"]'),(480,3,NULL,NULL,47,3,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-1.jpg\",\"products\\/33.jpg\",\"products\\/49.jpg\"]'),(483,8,NULL,NULL,3,2,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/56-1.jpg\",\"products\\/61.jpg\"]'),(484,6,NULL,NULL,10,3,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4.jpg\",\"products\\/65-2.jpg\"]'),(485,1,NULL,NULL,45,4,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/27-1.jpg\",\"products\\/52-1.jpg\",\"products\\/52.jpg\",\"products\\/62.jpg\"]'),(487,2,NULL,NULL,10,5,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/36.jpg\"]'),(488,6,NULL,NULL,37,3,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-3.jpg\"]'),(489,1,NULL,NULL,43,2,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/63-1.jpg\"]'),(490,7,NULL,NULL,58,2,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/19-2.jpg\",\"products\\/29-1.jpg\",\"products\\/55.jpg\"]'),(493,8,NULL,NULL,27,5,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/19-2.jpg\"]'),(495,7,NULL,NULL,59,4,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/31-1.jpg\"]'),(498,9,NULL,NULL,13,5,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/38-2.jpg\",\"products\\/44-1.jpg\"]'),(501,6,NULL,NULL,16,5,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/25-2.jpg\",\"products\\/60.jpg\"]'),(504,7,NULL,NULL,3,5,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/3.jpg\",\"products\\/11.jpg\",\"products\\/22-1.jpg\",\"products\\/47-1.jpg\"]'),(507,4,NULL,NULL,49,4,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-1.jpg\",\"products\\/41-2.jpg\"]'),(508,5,NULL,NULL,44,3,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4.jpg\",\"products\\/5-2.jpg\",\"products\\/11-2.jpg\",\"products\\/55-1.jpg\"]'),(511,1,NULL,NULL,42,2,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/13-1.jpg\",\"products\\/52-2.jpg\"]'),(513,4,NULL,NULL,38,4,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-2.jpg\",\"products\\/28.jpg\",\"products\\/46.jpg\"]'),(516,9,NULL,NULL,49,5,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/31.jpg\",\"products\\/43.jpg\",\"products\\/53.jpg\",\"products\\/58.jpg\"]'),(519,4,NULL,NULL,18,5,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/54.jpg\"]'),(522,2,NULL,NULL,18,1,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18-2.jpg\",\"products\\/30-1.jpg\"]'),(523,3,NULL,NULL,64,1,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-1.jpg\",\"products\\/8.jpg\",\"products\\/24-1.jpg\"]'),(525,6,NULL,NULL,62,4,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18-1.jpg\",\"products\\/26.jpg\",\"products\\/45-1.jpg\",\"products\\/55.jpg\"]'),(527,2,NULL,NULL,63,4,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/12.jpg\",\"products\\/40.jpg\",\"products\\/48-1.jpg\",\"products\\/49.jpg\"]'),(532,9,NULL,NULL,22,4,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-2.jpg\",\"products\\/13-1.jpg\"]'),(533,4,NULL,NULL,26,1,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10-2.jpg\",\"products\\/43-1.jpg\"]'),(534,1,NULL,NULL,17,5,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/22.jpg\",\"products\\/58-2.jpg\"]'),(535,4,NULL,NULL,35,4,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/19-1.jpg\",\"products\\/29.jpg\",\"products\\/30-1.jpg\",\"products\\/60-2.jpg\"]'),(536,8,NULL,NULL,43,4,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/37-1.jpg\",\"products\\/42-1.jpg\",\"products\\/54.jpg\",\"products\\/60-1.jpg\"]'),(538,3,NULL,NULL,30,3,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/19-2.jpg\",\"products\\/48-2.jpg\",\"products\\/55.jpg\",\"products\\/58.jpg\"]'),(539,3,NULL,NULL,42,2,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/45.jpg\",\"products\\/65-1.jpg\"]'),(540,1,NULL,NULL,28,5,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/37-1.jpg\",\"products\\/42.jpg\",\"products\\/43.jpg\"]'),(543,9,NULL,NULL,30,1,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-3.jpg\",\"products\\/17.jpg\",\"products\\/47-1.jpg\"]'),(544,2,NULL,NULL,1,4,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9.jpg\",\"products\\/11-2.jpg\",\"products\\/21.jpg\",\"products\\/42-2.jpg\"]'),(546,1,NULL,NULL,57,1,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5.jpg\",\"products\\/17.jpg\",\"products\\/49-1.jpg\",\"products\\/64-1.jpg\"]'),(550,8,NULL,NULL,47,2,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/31.jpg\",\"products\\/48-2.jpg\",\"products\\/56-2.jpg\"]'),(552,1,NULL,NULL,34,4,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10.jpg\",\"products\\/34-1.jpg\",\"products\\/36-1.jpg\",\"products\\/65-1.jpg\"]'),(554,6,NULL,NULL,65,4,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-1.jpg\",\"products\\/11-1.jpg\",\"products\\/15-1.jpg\",\"products\\/55.jpg\"]'),(557,6,NULL,NULL,30,4,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/40.jpg\"]'),(559,3,NULL,NULL,36,4,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/32.jpg\"]'),(561,4,NULL,NULL,44,3,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-3.jpg\",\"products\\/11-2.jpg\",\"products\\/64.jpg\"]'),(566,6,NULL,NULL,29,5,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/46.jpg\"]'),(568,4,NULL,NULL,6,2,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/42-2.jpg\"]'),(578,4,NULL,NULL,50,4,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5.jpg\",\"products\\/13-1.jpg\",\"products\\/48-1.jpg\"]'),(580,4,NULL,NULL,4,1,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9.jpg\",\"products\\/20-1.jpg\",\"products\\/29-1.jpg\",\"products\\/58.jpg\"]'),(582,3,NULL,NULL,17,1,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/28-2.jpg\",\"products\\/28.jpg\"]'),(583,3,NULL,NULL,56,5,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/65.jpg\"]'),(584,6,NULL,NULL,50,5,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-1.jpg\",\"products\\/42.jpg\"]'),(585,1,NULL,NULL,33,1,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-1.jpg\"]'),(589,2,NULL,NULL,11,3,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/32-1.jpg\",\"products\\/39-1.jpg\"]'),(596,9,NULL,NULL,18,3,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/6.jpg\",\"products\\/17-2.jpg\",\"products\\/42.jpg\",\"products\\/63-1.jpg\"]'),(600,9,NULL,NULL,34,2,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/33-2.jpg\"]'),(601,3,NULL,NULL,62,4,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/39-1.jpg\"]'),(602,7,NULL,NULL,46,3,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-2.jpg\",\"products\\/30-2.jpg\",\"products\\/36-2.jpg\"]'),(607,6,NULL,NULL,14,4,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/24-1.jpg\",\"products\\/40-1.jpg\",\"products\\/41-1.jpg\",\"products\\/46-1.jpg\"]'),(608,9,NULL,NULL,39,3,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20-2.jpg\",\"products\\/32-1.jpg\"]'),(611,2,NULL,NULL,46,2,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23-2.jpg\",\"products\\/34.jpg\",\"products\\/50.jpg\",\"products\\/58-2.jpg\"]'),(613,3,NULL,NULL,45,2,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/49.jpg\"]'),(622,9,NULL,NULL,45,4,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/25-1.jpg\",\"products\\/46-1.jpg\"]'),(624,6,NULL,NULL,9,5,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/21-1.jpg\",\"products\\/21-2.jpg\"]'),(629,8,NULL,NULL,21,1,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-1.jpg\",\"products\\/23-1.jpg\",\"products\\/44-2.jpg\",\"products\\/60-1.jpg\"]'),(630,6,NULL,NULL,11,1,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/59-2.jpg\",\"products\\/60-2.jpg\"]'),(634,5,NULL,NULL,16,4,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/15.jpg\",\"products\\/36-2.jpg\",\"products\\/39-1.jpg\",\"products\\/63-1.jpg\"]'),(635,5,NULL,NULL,17,5,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/24-1.jpg\",\"products\\/50-1.jpg\",\"products\\/57.jpg\"]'),(640,2,NULL,NULL,42,3,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/37.jpg\"]'),(643,8,NULL,NULL,48,2,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/38.jpg\",\"products\\/53-1.jpg\",\"products\\/60-2.jpg\"]'),(646,7,NULL,NULL,33,5,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/32-2.jpg\",\"products\\/64-1.jpg\",\"products\\/64.jpg\"]'),(647,6,NULL,NULL,55,4,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/24.jpg\",\"products\\/28-1.jpg\"]'),(649,1,NULL,NULL,61,2,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/37-1.jpg\"]'),(652,8,NULL,NULL,54,4,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9.jpg\"]'),(654,6,NULL,NULL,24,2,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18-3.jpg\",\"products\\/58-1.jpg\"]'),(660,4,NULL,NULL,45,4,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-1.jpg\",\"products\\/11.jpg\",\"products\\/43-2.jpg\",\"products\\/62.jpg\"]'),(668,9,NULL,NULL,48,4,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/25-2.jpg\"]'),(669,8,NULL,NULL,40,3,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/12-1.jpg\",\"products\\/46-1.jpg\",\"products\\/61-1.jpg\"]'),(674,8,NULL,NULL,18,3,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/13.jpg\",\"products\\/17.jpg\",\"products\\/36-1.jpg\",\"products\\/63.jpg\"]'),(676,9,NULL,NULL,27,3,'Good app, good backup service and support. Good documentation.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-2.jpg\",\"products\\/48-1.jpg\",\"products\\/55.jpg\",\"products\\/61.jpg\"]'),(692,8,NULL,NULL,26,1,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/18-2.jpg\",\"products\\/55-1.jpg\"]'),(698,2,NULL,NULL,24,5,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/25-1.jpg\",\"products\\/34.jpg\",\"products\\/42-1.jpg\"]'),(700,2,NULL,NULL,51,1,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10-1.jpg\",\"products\\/13-1.jpg\",\"products\\/28-2.jpg\",\"products\\/52-1.jpg\"]'),(706,6,NULL,NULL,6,4,'Best ecommerce CMS online store!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/10-2.jpg\",\"products\\/63-1.jpg\"]'),(707,2,NULL,NULL,59,3,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/1.jpg\",\"products\\/21.jpg\"]'),(711,5,NULL,NULL,6,1,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-2.jpg\",\"products\\/15.jpg\",\"products\\/39-2.jpg\"]'),(715,5,NULL,NULL,58,1,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/31-1.jpg\",\"products\\/42.jpg\"]'),(716,1,NULL,NULL,21,4,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/38-2.jpg\"]'),(717,4,NULL,NULL,12,3,'Best ecommerce CMS online store!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/30.jpg\",\"products\\/36-2.jpg\",\"products\\/47.jpg\"]'),(718,3,NULL,NULL,7,5,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/34.jpg\",\"products\\/47.jpg\",\"products\\/59-1.jpg\"]'),(720,2,NULL,NULL,37,3,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-2.jpg\",\"products\\/30.jpg\",\"products\\/42-2.jpg\"]'),(723,9,NULL,NULL,35,3,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/33-2.jpg\"]'),(726,8,NULL,NULL,17,4,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-2.jpg\",\"products\\/30-2.jpg\",\"products\\/60.jpg\"]'),(739,9,NULL,NULL,47,5,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/35.jpg\",\"products\\/53.jpg\",\"products\\/59.jpg\"]'),(740,2,NULL,NULL,54,3,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20.jpg\"]'),(745,9,NULL,NULL,50,5,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/24.jpg\",\"products\\/50-1.jpg\"]'),(747,3,NULL,NULL,14,3,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-3.jpg\",\"products\\/17.jpg\",\"products\\/46.jpg\",\"products\\/52.jpg\"]'),(748,4,NULL,NULL,65,4,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23.jpg\",\"products\\/50-1.jpg\",\"products\\/55-1.jpg\"]'),(749,5,NULL,NULL,12,1,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/28.jpg\",\"products\\/38.jpg\",\"products\\/41-2.jpg\",\"products\\/58.jpg\"]'),(751,3,NULL,NULL,35,5,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/38.jpg\"]'),(752,3,NULL,NULL,46,1,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/24.jpg\"]'),(753,1,NULL,NULL,51,3,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5.jpg\",\"products\\/17-1.jpg\",\"products\\/20.jpg\",\"products\\/53.jpg\"]'),(756,4,NULL,NULL,37,3,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-2.jpg\",\"products\\/23-2.jpg\",\"products\\/23.jpg\",\"products\\/26-1.jpg\"]'),(758,1,NULL,NULL,6,4,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/24.jpg\"]'),(763,4,NULL,NULL,43,4,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/3.jpg\",\"products\\/17-1.jpg\",\"products\\/17-2.jpg\",\"products\\/23.jpg\"]'),(773,2,NULL,NULL,62,5,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-2.jpg\",\"products\\/32-1.jpg\",\"products\\/46-1.jpg\",\"products\\/64.jpg\"]'),(774,5,NULL,NULL,23,5,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/26-1.jpg\",\"products\\/51.jpg\",\"products\\/60-2.jpg\",\"products\\/63-1.jpg\"]'),(777,6,NULL,NULL,36,1,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20-3.jpg\",\"products\\/22-1.jpg\",\"products\\/55-1.jpg\",\"products\\/64-1.jpg\"]'),(781,5,NULL,NULL,34,2,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-3.jpg\",\"products\\/7.jpg\",\"products\\/14.jpg\",\"products\\/55.jpg\"]'),(786,7,NULL,NULL,23,3,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/24-2.jpg\",\"products\\/27-1.jpg\",\"products\\/49.jpg\",\"products\\/59-1.jpg\"]'),(787,6,NULL,NULL,13,4,'Good app, good backup service and support. Good documentation.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9.jpg\"]'),(790,6,NULL,NULL,1,5,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/41-1.jpg\",\"products\\/44-2.jpg\"]'),(792,5,NULL,NULL,2,5,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/16.jpg\",\"products\\/31-1.jpg\",\"products\\/32.jpg\",\"products\\/46.jpg\"]'),(794,2,NULL,NULL,5,5,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/21.jpg\"]'),(798,8,NULL,NULL,37,1,'Best ecommerce CMS online store!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/7.jpg\",\"products\\/26.jpg\",\"products\\/48.jpg\"]'),(802,8,NULL,NULL,5,3,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/30-2.jpg\",\"products\\/39-2.jpg\",\"products\\/42-1.jpg\",\"products\\/51.jpg\"]'),(806,3,NULL,NULL,33,1,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/49-1.jpg\"]'),(813,3,NULL,NULL,41,1,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5.jpg\"]'),(815,7,NULL,NULL,36,2,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/12.jpg\",\"products\\/42-1.jpg\",\"products\\/47.jpg\",\"products\\/56.jpg\"]'),(820,3,NULL,NULL,21,2,'Good app, good backup service and support. Good documentation.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/55-1.jpg\"]'),(822,7,NULL,NULL,8,4,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/22.jpg\",\"products\\/41-1.jpg\",\"products\\/47-1.jpg\"]'),(823,4,NULL,NULL,59,4,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/28.jpg\",\"products\\/36.jpg\",\"products\\/47-1.jpg\",\"products\\/58-1.jpg\"]'),(828,8,NULL,NULL,13,4,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8.jpg\",\"products\\/12-2.jpg\",\"products\\/50-1.jpg\",\"products\\/50.jpg\"]'),(830,7,NULL,NULL,28,4,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/52-1.jpg\"]'),(832,5,NULL,NULL,41,2,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/19-2.jpg\",\"products\\/43-1.jpg\"]'),(834,9,NULL,NULL,26,4,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/28-2.jpg\",\"products\\/56-2.jpg\",\"products\\/62.jpg\"]'),(840,3,NULL,NULL,57,3,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/13.jpg\"]'),(841,9,NULL,NULL,15,4,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/32-2.jpg\",\"products\\/47.jpg\"]'),(845,6,NULL,NULL,38,1,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/24-2.jpg\",\"products\\/38-2.jpg\",\"products\\/58.jpg\"]'),(847,2,NULL,NULL,34,2,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/34-1.jpg\",\"products\\/50.jpg\"]'),(855,5,NULL,NULL,33,3,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/5-1.jpg\",\"products\\/8-2.jpg\",\"products\\/15.jpg\"]'),(860,6,NULL,NULL,34,2,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/40.jpg\",\"products\\/61-1.jpg\"]'),(867,9,NULL,NULL,64,3,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/3.jpg\",\"products\\/30-2.jpg\",\"products\\/33-2.jpg\"]'),(868,7,NULL,NULL,35,5,'The code is good, in general, if you like it, can you give it 5 stars?','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/27.jpg\",\"products\\/55-1.jpg\",\"products\\/56-1.jpg\"]'),(872,3,NULL,NULL,28,5,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/28-2.jpg\",\"products\\/47-1.jpg\"]'),(873,5,NULL,NULL,55,1,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/36.jpg\",\"products\\/53.jpg\"]'),(874,5,NULL,NULL,18,4,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/27.jpg\"]'),(877,4,NULL,NULL,29,4,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/20-3.jpg\",\"products\\/38-3.jpg\"]'),(880,3,NULL,NULL,12,5,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/60-2.jpg\"]'),(882,7,NULL,NULL,63,1,'Good app, good backup service and support. Good documentation.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-2.jpg\"]'),(884,1,NULL,NULL,53,1,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/30-2.jpg\"]'),(885,7,NULL,NULL,16,1,'Clean & perfect source code','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/34.jpg\"]'),(887,2,NULL,NULL,6,2,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-3.jpg\"]'),(889,3,NULL,NULL,59,1,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-1.jpg\",\"products\\/9-1.jpg\",\"products\\/16.jpg\"]'),(890,3,NULL,NULL,27,2,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/31.jpg\"]'),(895,5,NULL,NULL,26,5,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/9-1.jpg\",\"products\\/65-1.jpg\"]'),(897,7,NULL,NULL,4,2,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/13-1.jpg\",\"products\\/22.jpg\"]'),(898,6,NULL,NULL,57,2,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/11-3.jpg\",\"products\\/39.jpg\",\"products\\/43-1.jpg\"]'),(900,8,NULL,NULL,1,3,'Good app, good backup service and support. Good documentation.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23.jpg\",\"products\\/24.jpg\"]'),(903,5,NULL,NULL,7,3,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-3.jpg\",\"products\\/17-2.jpg\",\"products\\/23-1.jpg\"]'),(911,2,NULL,NULL,20,3,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/55.jpg\"]'),(922,1,NULL,NULL,52,2,'Good app, good backup service and support. Good documentation.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/22-2.jpg\"]'),(924,7,NULL,NULL,44,1,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-3.jpg\",\"products\\/37-2.jpg\",\"products\\/49.jpg\",\"products\\/55-1.jpg\"]'),(926,2,NULL,NULL,48,5,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/29.jpg\",\"products\\/40-1.jpg\",\"products\\/49.jpg\",\"products\\/59.jpg\"]'),(928,4,NULL,NULL,25,4,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/2-1.jpg\",\"products\\/9-2.jpg\",\"products\\/10.jpg\",\"products\\/28.jpg\"]'),(932,8,NULL,NULL,41,2,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/44-2.jpg\"]'),(945,4,NULL,NULL,60,1,'Good app, good backup service and support. Good documentation.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-3.jpg\",\"products\\/8-1.jpg\",\"products\\/20.jpg\",\"products\\/42-1.jpg\"]'),(952,3,NULL,NULL,19,1,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/21-1.jpg\",\"products\\/22-1.jpg\",\"products\\/43-2.jpg\",\"products\\/56-1.jpg\"]'),(968,6,NULL,NULL,2,4,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/4-2.jpg\"]'),(975,8,NULL,NULL,44,2,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/23-3.jpg\"]'),(978,3,NULL,NULL,32,3,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/8-1.jpg\",\"products\\/61.jpg\"]'),(989,1,NULL,NULL,3,5,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2025-10-26 20:13:52','2025-10-26 20:13:52','[\"products\\/29-1.jpg\",\"products\\/32-2.jpg\"]');
/*!40000 ALTER TABLE `ec_reviews` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_shared_wishlists`
--
DROP TABLE IF EXISTS `ec_shared_wishlists`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_shared_wishlists` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`product_ids` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ec_shared_wishlists_code_unique` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_shared_wishlists`
--
LOCK TABLES `ec_shared_wishlists` WRITE;
/*!40000 ALTER TABLE `ec_shared_wishlists` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_shared_wishlists` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_shipment_histories`
--
DROP TABLE IF EXISTS `ec_shipment_histories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_shipment_histories` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` bigint unsigned DEFAULT NULL,
`shipment_id` bigint unsigned NOT NULL,
`order_id` bigint unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_shipment_histories`
--
LOCK TABLES `ec_shipment_histories` WRITE;
/*!40000 ALTER TABLE `ec_shipment_histories` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_shipment_histories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_shipments`
--
DROP TABLE IF EXISTS `ec_shipments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_shipments` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`order_id` bigint unsigned NOT NULL,
`user_id` bigint unsigned DEFAULT NULL,
`weight` double DEFAULT '0',
`shipment_id` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`rate_id` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`note` text COLLATE utf8mb4_unicode_ci,
`status` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
`cod_amount` decimal(15,2) DEFAULT '0.00',
`cod_status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
`cross_checking_status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
`price` decimal(15,2) DEFAULT '0.00',
`store_id` bigint unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`shipping_company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`tracking_link` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`estimate_date_shipped` datetime DEFAULT NULL,
`date_shipped` datetime DEFAULT NULL,
`customer_delivered_confirmed_at` timestamp NULL DEFAULT NULL,
`label_url` text COLLATE utf8mb4_unicode_ci,
`metadata` mediumtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_shipments`
--
LOCK TABLES `ec_shipments` WRITE;
/*!40000 ALTER TABLE `ec_shipments` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_shipments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_shipping`
--
DROP TABLE IF EXISTS `ec_shipping`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_shipping` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_shipping`
--
LOCK TABLES `ec_shipping` WRITE;
/*!40000 ALTER TABLE `ec_shipping` DISABLE KEYS */;
INSERT INTO `ec_shipping` VALUES (1,'All',NULL,'2025-10-26 20:13:52','2025-10-26 20:13:52');
/*!40000 ALTER TABLE `ec_shipping` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_shipping_rule_items`
--
DROP TABLE IF EXISTS `ec_shipping_rule_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_shipping_rule_items` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`shipping_rule_id` bigint unsigned NOT NULL,
`country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`zip_code` varchar(20) COLLATE utf8mb4_unicode_ci 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,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_shipping_rule_items`
--
LOCK TABLES `ec_shipping_rule_items` WRITE;
/*!40000 ALTER TABLE `ec_shipping_rule_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_shipping_rule_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_shipping_rules`
--
DROP TABLE IF EXISTS `ec_shipping_rules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_shipping_rules` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`shipping_id` bigint unsigned NOT NULL,
`type` varchar(24) COLLATE utf8mb4_unicode_ci 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,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_shipping_rules`
--
LOCK TABLES `ec_shipping_rules` WRITE;
/*!40000 ALTER TABLE `ec_shipping_rules` DISABLE KEYS */;
INSERT INTO `ec_shipping_rules` VALUES (1,'Free delivery',1,'based_on_price',1000.00,NULL,0.00,'2025-10-26 20:13:52','2025-10-26 20:13:52'),(2,'Flat Rate',1,'based_on_price',0.00,NULL,20.00,'2025-10-26 20:13:52','2025-10-26 20:13:52'),(3,'Local Pickup',1,'based_on_price',0.00,NULL,0.00,'2025-10-26 20:13:52','2025-10-26 20:13:52');
/*!40000 ALTER TABLE `ec_shipping_rules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_specification_attributes`
--
DROP TABLE IF EXISTS `ec_specification_attributes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_specification_attributes` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`group_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`options` text COLLATE utf8mb4_unicode_ci,
`default_value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`author_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`author_id` bigint unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ec_specification_attributes_author_type_author_id_index` (`author_type`,`author_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_specification_attributes`
--
LOCK TABLES `ec_specification_attributes` WRITE;
/*!40000 ALTER TABLE `ec_specification_attributes` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_specification_attributes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_specification_attributes_translations`
--
DROP TABLE IF EXISTS `ec_specification_attributes_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_specification_attributes_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_specification_attributes_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`options` text COLLATE utf8mb4_unicode_ci,
`default_value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_specification_attributes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_specification_attributes_translations`
--
LOCK TABLES `ec_specification_attributes_translations` WRITE;
/*!40000 ALTER TABLE `ec_specification_attributes_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_specification_attributes_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_specification_groups`
--
DROP TABLE IF EXISTS `ec_specification_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_specification_groups` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`author_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`author_id` bigint unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ec_specification_groups_author_type_author_id_index` (`author_type`,`author_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_specification_groups`
--
LOCK TABLES `ec_specification_groups` WRITE;
/*!40000 ALTER TABLE `ec_specification_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_specification_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_specification_groups_translations`
--
DROP TABLE IF EXISTS `ec_specification_groups_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_specification_groups_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_specification_groups_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_specification_groups_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_specification_groups_translations`
--
LOCK TABLES `ec_specification_groups_translations` WRITE;
/*!40000 ALTER TABLE `ec_specification_groups_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_specification_groups_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_specification_table_group`
--
DROP TABLE IF EXISTS `ec_specification_table_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_specification_table_group` (
`table_id` bigint unsigned NOT NULL,
`group_id` bigint unsigned NOT NULL,
`order` tinyint NOT NULL DEFAULT '0',
PRIMARY KEY (`table_id`,`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_specification_table_group`
--
LOCK TABLES `ec_specification_table_group` WRITE;
/*!40000 ALTER TABLE `ec_specification_table_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_specification_table_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_specification_tables`
--
DROP TABLE IF EXISTS `ec_specification_tables`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_specification_tables` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`author_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`author_id` bigint unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ec_specification_tables_author_type_author_id_index` (`author_type`,`author_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_specification_tables`
--
LOCK TABLES `ec_specification_tables` WRITE;
/*!40000 ALTER TABLE `ec_specification_tables` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_specification_tables` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_specification_tables_translations`
--
DROP TABLE IF EXISTS `ec_specification_tables_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_specification_tables_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_specification_tables_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_specification_tables_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_specification_tables_translations`
--
LOCK TABLES `ec_specification_tables_translations` WRITE;
/*!40000 ALTER TABLE `ec_specification_tables_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_specification_tables_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_store_locators`
--
DROP TABLE IF EXISTS `ec_store_locators`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_store_locators` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`city` varchar(120) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_store_locators`
--
LOCK TABLES `ec_store_locators` WRITE;
/*!40000 ALTER TABLE `ec_store_locators` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_store_locators` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_tax_products`
--
DROP TABLE IF EXISTS `ec_tax_products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_tax_products` (
`tax_id` bigint unsigned NOT NULL,
`product_id` bigint unsigned NOT NULL,
PRIMARY KEY (`product_id`,`tax_id`),
KEY `ec_tax_products_tax_id_index` (`tax_id`),
KEY `ec_tax_products_product_id_index` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_tax_products`
--
LOCK TABLES `ec_tax_products` WRITE;
/*!40000 ALTER TABLE `ec_tax_products` DISABLE KEYS */;
INSERT INTO `ec_tax_products` VALUES (1,1),(1,2),(1,3),(1,4),(1,5),(1,6),(1,7),(1,8),(1,9),(1,10),(1,11),(1,12),(1,13),(1,14),(1,15),(1,16),(1,17),(1,18),(1,19),(1,20),(1,21),(1,22),(1,23),(1,24),(1,25),(1,26),(1,27),(1,28),(1,29),(1,30),(1,31),(1,32),(1,33),(1,34),(1,35),(1,36),(1,37),(1,38),(1,39),(1,40),(1,41),(1,42),(1,43),(1,44),(1,45),(1,46),(1,47),(1,48),(1,49),(1,50),(1,51),(1,52),(1,53),(1,54),(1,55),(1,56),(1,57),(1,58),(1,59),(1,60),(1,61),(1,62),(1,63),(1,64),(1,65);
/*!40000 ALTER TABLE `ec_tax_products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_tax_rules`
--
DROP TABLE IF EXISTS `ec_tax_rules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_tax_rules` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`tax_id` bigint unsigned NOT NULL,
`country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`priority` int DEFAULT NULL,
`is_enabled` tinyint(1) NOT NULL DEFAULT '1',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`percentage` float DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_tax_rules`
--
LOCK TABLES `ec_tax_rules` WRITE;
/*!40000 ALTER TABLE `ec_tax_rules` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_tax_rules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_taxes`
--
DROP TABLE IF EXISTS `ec_taxes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_taxes` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`percentage` float DEFAULT NULL,
`priority` int DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_taxes`
--
LOCK TABLES `ec_taxes` WRITE;
/*!40000 ALTER TABLE `ec_taxes` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_taxes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_taxes_translations`
--
DROP TABLE IF EXISTS `ec_taxes_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_taxes_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_taxes_id` bigint unsigned NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ec_taxes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_taxes_translations`
--
LOCK TABLES `ec_taxes_translations` WRITE;
/*!40000 ALTER TABLE `ec_taxes_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_taxes_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_wish_lists`
--
DROP TABLE IF EXISTS `ec_wish_lists`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_wish_lists` (
`customer_id` bigint unsigned NOT NULL,
`product_id` bigint unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`customer_id`,`product_id`),
KEY `wishlist_relation_index` (`product_id`,`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_wish_lists`
--
LOCK TABLES `ec_wish_lists` WRITE;
/*!40000 ALTER TABLE `ec_wish_lists` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_wish_lists` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `failed_jobs`
--
DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `failed_jobs` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`uuid` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `failed_jobs`
--
LOCK TABLES `failed_jobs` WRITE;
/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `faq_categories`
--
DROP TABLE IF EXISTS `faq_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faq_categories` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`order` tinyint NOT NULL DEFAULT '0',
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `faq_categories`
--
LOCK TABLES `faq_categories` WRITE;
/*!40000 ALTER TABLE `faq_categories` DISABLE KEYS */;
INSERT INTO `faq_categories` VALUES (1,'General',0,'published','2025-10-26 20:13:47','2025-10-26 20:13:47',NULL),(2,'Buying',1,'published','2025-10-26 20:13:47','2025-10-26 20:13:47',NULL),(3,'Payment',2,'published','2025-10-26 20:13:47','2025-10-26 20:13:47',NULL),(4,'Support',3,'published','2025-10-26 20:13:47','2025-10-26 20:13:47',NULL);
/*!40000 ALTER TABLE `faq_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `faq_categories_translations`
--
DROP TABLE IF EXISTS `faq_categories_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faq_categories_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`faq_categories_id` bigint unsigned NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`faq_categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `faq_categories_translations`
--
LOCK TABLES `faq_categories_translations` WRITE;
/*!40000 ALTER TABLE `faq_categories_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `faq_categories_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `faqs`
--
DROP TABLE IF EXISTS `faqs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faqs` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`question` text COLLATE utf8mb4_unicode_ci NOT NULL,
`answer` text COLLATE utf8mb4_unicode_ci NOT NULL,
`category_id` bigint unsigned NOT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `faqs`
--
LOCK TABLES `faqs` WRITE;
/*!40000 ALTER TABLE `faqs` DISABLE KEYS */;
INSERT INTO `faqs` VALUES (1,'Can I see the demo before purchasing?','Etiam amet mauris suscipit in odio integer congue metus vitae arcu mollis blandit ultrice ligula egestas and magna suscipit lectus magna suscipit luctus blandit vitae',1,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(2,'Can I use your system on different devices?','Etiam amet mauris suscipit in odio integer congue metus vitae arcu mollis blandit ultrice ligula egestas and magna suscipit lectus magna suscipit luctus blandit vitae',1,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(3,'Can I import my sitemap to your system?','An enim nullam tempor sapien gravida a donec ipsum enim an porta justo integer at velna vitae auctor integer congue undo magna at pretium purus pretium',1,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(4,'Can I cancel my subscription at any time?','An enim nullam tempor sapien gravida a donec ipsum enim an porta justo integer at velna vitae auctor integer congue undo magna at pretium purus pretium',2,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(5,'How can I switch my subscription between essential, and premium plan','Cubilia laoreet augue egestas and luctus donec curabite diam vitae dapibus libero and quisque gravida donec and neque.',2,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(6,'Is there an additional discount when paid annually?','Cubilia laoreet augue egestas and luctus donec curabite diam vitae dapibus libero and quisque gravida donec and neque. Blandit justo aliquam molestie nunc sapien',2,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(7,'Where does it come from ?','If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages.',3,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(8,'I have an issue with my account','<ul>\n <li>Etiam amet mauris suscipit sit amet in odio. Integer congue leo metus. Vitae arcu mollis blandit ultrice ligula</li>\n <li>An enim nullam tempor sapien gravida donec congue leo metus. Vitae arcu mollis blandit integer at velna</li>\n </ul>',3,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(9,'What happens if I don’t renew my license after one year?','<ul>\n <li>Etiam amet mauris suscipit sit amet in odio. Integer congue leo metus. Vitae arcu mollis blandit ultrice ligula</li>\n <li>An enim nullam tempor sapien gravida donec congue leo metus. Vitae arcu mollis blandit integer at velna</li>\n </ul>',3,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(10,'Do you have a free trial?','<ul class=\"text-body-text\">\n <li>Fringilla risus, luctus mauris orci auctor purus</li>\n <li>Quaerat sodales sapien euismod blandit purus and ipsum primis in cubilia laoreet augue luctus</li>\n </ul>',4,'published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(11,'What kind of payment methods do you provide?','<ul class=\"text-body-text\">\n <li>Fringilla risus, luctus mauris orci auctor purus</li>\n <li>Quaerat sodales sapien euismoda laoreet augue luctus</li>\n </ul>',4,'published','2025-10-26 20:13:47','2025-10-26 20:13:47');
/*!40000 ALTER TABLE `faqs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `faqs_translations`
--
DROP TABLE IF EXISTS `faqs_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faqs_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`faqs_id` bigint unsigned NOT NULL,
`question` text COLLATE utf8mb4_unicode_ci,
`answer` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`lang_code`,`faqs_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `faqs_translations`
--
LOCK TABLES `faqs_translations` WRITE;
/*!40000 ALTER TABLE `faqs_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `faqs_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `galleries`
--
DROP TABLE IF EXISTS `galleries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `galleries` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`is_featured` tinyint unsigned NOT NULL DEFAULT '0',
`order` tinyint unsigned NOT NULL DEFAULT '0',
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` bigint unsigned DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `galleries_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `galleries`
--
LOCK TABLES `galleries` WRITE;
/*!40000 ALTER TABLE `galleries` DISABLE KEYS */;
INSERT INTO `galleries` VALUES (1,'Perfect','Repudiandae qui praesentium hic ea. Et eaque nam modi corporis architecto.',0,0,'galleries/1.jpg',1,'published','2025-10-26 20:13:53','2025-10-26 20:13:53'),(2,'New Day','Iure numquam voluptatem id et pariatur nulla fuga voluptas. Quia perferendis quia et earum quod. Quae natus sit et earum corrupti ut.',0,0,'galleries/2.jpg',1,'published','2025-10-26 20:13:53','2025-10-26 20:13:53'),(3,'Happy Day','Similique illo ea similique enim aliquam sit. Natus ut amet omnis culpa corporis praesentium. Quis nam perferendis dolores vel eos non.',0,0,'galleries/3.jpg',1,'published','2025-10-26 20:13:53','2025-10-26 20:13:53'),(4,'Nature','Aut laboriosam adipisci fugiat sed ea. Vero molestias voluptate voluptatem omnis voluptatem.',0,0,'galleries/4.jpg',1,'published','2025-10-26 20:13:53','2025-10-26 20:13:53'),(5,'Morning','Dolor consequatur sunt et. Eveniet perferendis hic earum magnam. Repellendus reiciendis perspiciatis vel impedit sed quidem sed voluptate.',0,0,'galleries/5.jpg',1,'published','2025-10-26 20:13:53','2025-10-26 20:13:53'),(6,'Sunset','Quo placeat consequatur similique fugiat. Ipsa fugit qui molestias illum. Optio ut sint voluptas voluptas cupiditate in.',0,0,'galleries/6.jpg',1,'published','2025-10-26 20:13:53','2025-10-26 20:13:53'),(7,'Ocean Views','Est quidem rerum maiores ut explicabo natus et autem. Perspiciatis sint veniam sit rem alias id a.',0,0,'galleries/7.jpg',1,'published','2025-10-26 20:13:53','2025-10-26 20:13:53'),(8,'Adventure Time','Aut ad et ut aut. Quas qui voluptas voluptas deleniti qui aut.',0,0,'galleries/8.jpg',1,'published','2025-10-26 20:13:53','2025-10-26 20:13:53');
/*!40000 ALTER TABLE `galleries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `galleries_translations`
--
DROP TABLE IF EXISTS `galleries_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `galleries_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`galleries_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`lang_code`,`galleries_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `galleries_translations`
--
LOCK TABLES `galleries_translations` WRITE;
/*!40000 ALTER TABLE `galleries_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `galleries_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `gallery_meta`
--
DROP TABLE IF EXISTS `gallery_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `gallery_meta` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`images` text COLLATE utf8mb4_unicode_ci,
`reference_id` bigint unsigned NOT NULL,
`reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `gallery_meta_reference_id_index` (`reference_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `gallery_meta`
--
LOCK TABLES `gallery_meta` WRITE;
/*!40000 ALTER TABLE `gallery_meta` DISABLE KEYS */;
INSERT INTO `gallery_meta` VALUES (1,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',1,'Botble\\Gallery\\Models\\Gallery','2025-10-26 20:13:53','2025-10-26 20:13:53'),(2,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',2,'Botble\\Gallery\\Models\\Gallery','2025-10-26 20:13:53','2025-10-26 20:13:53'),(3,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',3,'Botble\\Gallery\\Models\\Gallery','2025-10-26 20:13:53','2025-10-26 20:13:53'),(4,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',4,'Botble\\Gallery\\Models\\Gallery','2025-10-26 20:13:53','2025-10-26 20:13:53'),(5,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',5,'Botble\\Gallery\\Models\\Gallery','2025-10-26 20:13:53','2025-10-26 20:13:53'),(6,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',6,'Botble\\Gallery\\Models\\Gallery','2025-10-26 20:13:53','2025-10-26 20:13:53'),(7,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',7,'Botble\\Gallery\\Models\\Gallery','2025-10-26 20:13:53','2025-10-26 20:13:53'),(8,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',8,'Botble\\Gallery\\Models\\Gallery','2025-10-26 20:13:53','2025-10-26 20:13:53');
/*!40000 ALTER TABLE `gallery_meta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `gallery_meta_translations`
--
DROP TABLE IF EXISTS `gallery_meta_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `gallery_meta_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`gallery_meta_id` bigint unsigned NOT NULL,
`images` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`lang_code`,`gallery_meta_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `gallery_meta_translations`
--
LOCK TABLES `gallery_meta_translations` WRITE;
/*!40000 ALTER TABLE `gallery_meta_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `gallery_meta_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jobs`
--
DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jobs` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`attempts` tinyint unsigned NOT NULL,
`reserved_at` int unsigned DEFAULT NULL,
`available_at` int unsigned NOT NULL,
`created_at` int unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `jobs_queue_index` (`queue`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jobs`
--
LOCK TABLES `jobs` WRITE;
/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `jobs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `language_meta`
--
DROP TABLE IF EXISTS `language_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `language_meta` (
`lang_meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`lang_meta_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`lang_meta_origin` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`reference_id` bigint unsigned NOT NULL,
`reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`lang_meta_id`),
KEY `language_meta_reference_id_index` (`reference_id`),
KEY `meta_code_index` (`lang_meta_code`),
KEY `meta_origin_index` (`lang_meta_origin`),
KEY `meta_reference_type_index` (`reference_type`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `language_meta`
--
LOCK TABLES `language_meta` WRITE;
/*!40000 ALTER TABLE `language_meta` DISABLE KEYS */;
INSERT INTO `language_meta` VALUES (1,'en_US','c57ab78669402c2585fb577ff3aab456',1,'Botble\\Menu\\Models\\MenuLocation'),(2,'en_US','497cd024d8db3644104c719a83f030a9',1,'Botble\\Menu\\Models\\Menu'),(3,'en_US','3a4ba59b2b5ae4f5929e4226a8c2df42',2,'Botble\\Menu\\Models\\Menu'),(4,'en_US','016b5b326df0a8a8257c6b102571d32e',3,'Botble\\Menu\\Models\\Menu'),(5,'en_US','88f4298388e975a50018a5788525a0d4',4,'Botble\\Menu\\Models\\Menu'),(6,'en_US','601660e7e07923c2e43d0f6956fb740e',2,'Botble\\Menu\\Models\\MenuLocation'),(7,'en_US','388be57f6f51a4a5546ff973fec4da9f',5,'Botble\\Menu\\Models\\Menu'),(8,'en_US','0c2876bb6d2cbad62ce3235717f299b9',3,'Botble\\Menu\\Models\\MenuLocation'),(9,'en_US','aa4f1c50687340dd2452a61724adef10',6,'Botble\\Menu\\Models\\Menu'),(10,'en_US','312356497985b714529eba4fe5422459',4,'Botble\\Menu\\Models\\MenuLocation'),(11,'en_US','04860ff88efccd5f1212886d49afb8fc',7,'Botble\\Menu\\Models\\Menu');
/*!40000 ALTER TABLE `language_meta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `languages`
--
DROP TABLE IF EXISTS `languages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `languages` (
`lang_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`lang_name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`lang_locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`lang_flag` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`lang_is_default` tinyint unsigned NOT NULL DEFAULT '0',
`lang_order` int NOT NULL DEFAULT '0',
`lang_is_rtl` tinyint unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`lang_id`),
KEY `lang_locale_index` (`lang_locale`),
KEY `lang_code_index` (`lang_code`),
KEY `lang_is_default_index` (`lang_is_default`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `languages`
--
LOCK TABLES `languages` WRITE;
/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
INSERT INTO `languages` VALUES (1,'English','en','en_US','us',1,0,0);
/*!40000 ALTER TABLE `languages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `media_files`
--
DROP TABLE IF EXISTS `media_files`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_files` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`alt` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`folder_id` bigint unsigned NOT NULL DEFAULT '0',
`mime_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` int NOT NULL,
`url` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`options` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`visibility` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'public',
PRIMARY KEY (`id`),
KEY `media_files_user_id_index` (`user_id`),
KEY `media_files_index` (`folder_id`,`user_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=395 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `media_files`
--
LOCK TABLES `media_files` WRITE;
/*!40000 ALTER TABLE `media_files` DISABLE KEYS */;
INSERT INTO `media_files` VALUES (1,0,'account','account',1,'image/png',10719,'general/account.png','[]','2025-10-26 20:13:21','2025-10-26 20:13:21',NULL,'public'),(2,0,'answer','answer',1,'image/png',29271,'general/answer.png','[]','2025-10-26 20:13:21','2025-10-26 20:13:21',NULL,'public'),(3,0,'apple','apple',1,'image/png',913,'general/apple.png','[]','2025-10-26 20:13:21','2025-10-26 20:13:21',NULL,'public'),(4,0,'appstore-btn','appstore-btn',1,'image/png',862,'general/appstore-btn.png','[]','2025-10-26 20:13:21','2025-10-26 20:13:21',NULL,'public'),(5,0,'automated','automated',1,'image/png',7027,'general/automated.png','[]','2025-10-26 20:13:21','2025-10-26 20:13:21',NULL,'public'),(6,0,'banner-authentication','banner-authentication',1,'image/png',86839,'general/banner-authentication.png','[]','2025-10-26 20:13:22','2025-10-26 20:13:22',NULL,'public'),(7,0,'banner-blog','banner-blog',1,'image/png',14363,'general/banner-blog.png','[]','2025-10-26 20:13:22','2025-10-26 20:13:22',NULL,'public'),(8,0,'banner-career','banner-career',1,'image/png',56060,'general/banner-career.png','[]','2025-10-26 20:13:22','2025-10-26 20:13:22',NULL,'public'),(9,0,'banner-help-center-1','banner-help-center-1',1,'image/png',17519,'general/banner-help-center-1.png','[]','2025-10-26 20:13:22','2025-10-26 20:13:22',NULL,'public'),(10,0,'banner-help-center-2','banner-help-center-2',1,'image/png',36201,'general/banner-help-center-2.png','[]','2025-10-26 20:13:22','2025-10-26 20:13:22',NULL,'public'),(11,0,'banner-homepage-10','banner-homepage-10',1,'image/png',12107,'general/banner-homepage-10.png','[]','2025-10-26 20:13:22','2025-10-26 20:13:22',NULL,'public'),(12,0,'banner-homepage-3','banner-homepage-3',1,'image/png',15512,'general/banner-homepage-3.png','[]','2025-10-26 20:13:22','2025-10-26 20:13:22',NULL,'public'),(13,0,'banner-homepage-5','banner-homepage-5',1,'image/png',15519,'general/banner-homepage-5.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(14,0,'banner-homepage-6','banner-homepage-6',1,'image/png',14592,'general/banner-homepage-6.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(15,0,'banner-homepage-7-1','banner-homepage-7-1',1,'image/png',5319,'general/banner-homepage-7-1.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(16,0,'banner-homepage-7-2','banner-homepage-7-2',1,'image/png',5686,'general/banner-homepage-7-2.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(17,0,'banner-homepage-7-3','banner-homepage-7-3',1,'image/png',5826,'general/banner-homepage-7-3.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(18,0,'banner-homepage-7-4','banner-homepage-7-4',1,'image/png',4536,'general/banner-homepage-7-4.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(19,0,'banner-homepage-7-5','banner-homepage-7-5',1,'image/png',5006,'general/banner-homepage-7-5.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(20,0,'banner-homepage-7-6','banner-homepage-7-6',1,'image/png',5006,'general/banner-homepage-7-6.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(21,0,'banner-homepage-9','banner-homepage-9',1,'image/png',12768,'general/banner-homepage-9.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(22,0,'banner-how-to-start','banner-how-to-start',1,'image/png',34758,'general/banner-how-to-start.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(23,0,'banner-product-1','banner-product-1',1,'image/png',36033,'general/banner-product-1.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(24,0,'banner-product','banner-product',1,'image/png',9639,'general/banner-product.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(25,0,'banner-services','banner-services',1,'image/png',14809,'general/banner-services.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(26,0,'banner-term-and-conditions','banner-term-and-conditions',1,'image/png',17769,'general/banner-term-and-conditions.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(27,0,'banner','banner',1,'image/png',11812,'general/banner.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(28,0,'bg-banner-secondary','bg-banner-secondary',1,'image/png',8509,'general/bg-banner-secondary.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(29,0,'bg-faqs','bg-faqs',1,'image/png',5963,'general/bg-faqs.png','[]','2025-10-26 20:13:23','2025-10-26 20:13:23',NULL,'public'),(30,0,'box-image-1','box-image-1',1,'image/png',57805,'general/box-image-1.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(31,0,'box-image-2','box-image-2',1,'image/png',54333,'general/box-image-2.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(32,0,'brand-services-1','brand-services-1',1,'image/png',1609,'general/brand-services-1.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(33,0,'brand-services-2','brand-services-2',1,'image/png',3446,'general/brand-services-2.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(34,0,'brand-services-3','brand-services-3',1,'image/png',6761,'general/brand-services-3.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(35,0,'branding-image','branding-image',1,'image/png',12728,'general/branding-image.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(36,0,'branding-img-1','branding-img-1',1,'image/png',11782,'general/branding-img-1.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(37,0,'branding-img-2','branding-img-2',1,'image/png',6942,'general/branding-img-2.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(38,0,'certify','certify',1,'image/png',2102,'general/certify.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(39,0,'chart-homepage-5','chart-homepage-5',1,'image/png',6400,'general/chart-homepage-5.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(40,0,'chart','chart',1,'image/png',3900,'general/chart.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(41,0,'chart1','chart1',1,'image/png',4874,'general/chart1.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(42,0,'chart2','chart2',1,'image/png',4229,'general/chart2.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(43,0,'connect-with-us-1','connect-with-us-1',1,'image/png',40317,'general/connect-with-us-1.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(44,0,'connect-with-us-2','connect-with-us-2',1,'image/png',40317,'general/connect-with-us-2.png','[]','2025-10-26 20:13:24','2025-10-26 20:13:24',NULL,'public'),(45,0,'connect-with-us-3','connect-with-us-3',1,'image/png',40317,'general/connect-with-us-3.png','[]','2025-10-26 20:13:25','2025-10-26 20:13:25',NULL,'public'),(46,0,'contact-banner','contact-banner',1,'image/png',12007,'general/contact-banner.png','[]','2025-10-26 20:13:25','2025-10-26 20:13:25',NULL,'public'),(47,0,'customer','customer',1,'image/png',23331,'general/customer.png','[]','2025-10-26 20:13:25','2025-10-26 20:13:25',NULL,'public'),(48,0,'follower','follower',1,'image/png',56489,'general/follower.png','[]','2025-10-26 20:13:25','2025-10-26 20:13:25',NULL,'public'),(49,0,'google-play-btn','google-play-btn',1,'image/png',1006,'general/google-play-btn.png','[]','2025-10-26 20:13:25','2025-10-26 20:13:25',NULL,'public'),(50,0,'google','google',1,'image/png',913,'general/google.png','[]','2025-10-26 20:13:25','2025-10-26 20:13:25',NULL,'public'),(51,0,'hero-1','hero-1',1,'image/png',24958,'general/hero-1.png','[]','2025-10-26 20:13:25','2025-10-26 20:13:25',NULL,'public'),(52,0,'hero-2','hero-2',1,'image/png',24958,'general/hero-2.png','[]','2025-10-26 20:13:25','2025-10-26 20:13:25',NULL,'public'),(53,0,'hero-3','hero-3',1,'image/png',24958,'general/hero-3.png','[]','2025-10-26 20:13:25','2025-10-26 20:13:25',NULL,'public'),(54,0,'hero-banner','hero-banner',1,'image/png',11174,'general/hero-banner.png','[]','2025-10-26 20:13:25','2025-10-26 20:13:25',NULL,'public'),(55,0,'human1','human1',1,'image/png',9263,'general/human1.png','[]','2025-10-26 20:13:25','2025-10-26 20:13:25',NULL,'public'),(56,0,'human2','human2',1,'image/png',9263,'general/human2.png','[]','2025-10-26 20:13:25','2025-10-26 20:13:25',NULL,'public'),(57,0,'human3','human3',1,'image/png',9263,'general/human3.png','[]','2025-10-26 20:13:25','2025-10-26 20:13:25',NULL,'public'),(58,0,'image-branding','image-branding',1,'image/png',11052,'general/image-branding.png','[]','2025-10-26 20:13:26','2025-10-26 20:13:26',NULL,'public'),(59,0,'img-financial','img-financial',1,'image/png',8189,'general/img-financial.png','[]','2025-10-26 20:13:26','2025-10-26 20:13:26',NULL,'public'),(60,0,'img-marketing','img-marketing',1,'image/png',49204,'general/img-marketing.png','[]','2025-10-26 20:13:26','2025-10-26 20:13:26',NULL,'public'),(61,0,'img-project','img-project',1,'image/png',11732,'general/img-project.png','[]','2025-10-26 20:13:26','2025-10-26 20:13:26',NULL,'public'),(62,0,'img-project2','img-project2',1,'image/png',11598,'general/img-project2.png','[]','2025-10-26 20:13:26','2025-10-26 20:13:26',NULL,'public'),(63,0,'img-tab-1','img-tab-1',1,'image/png',11962,'general/img-tab-1.png','[]','2025-10-26 20:13:26','2025-10-26 20:13:26',NULL,'public'),(64,0,'img-tab-2','img-tab-2',1,'image/png',47297,'general/img-tab-2.png','[]','2025-10-26 20:13:26','2025-10-26 20:13:26',NULL,'public'),(65,0,'img-tab-3','img-tab-3',1,'image/png',6942,'general/img-tab-3.png','[]','2025-10-26 20:13:26','2025-10-26 20:13:26',NULL,'public'),(66,0,'img-tab-4','img-tab-4',1,'image/png',12768,'general/img-tab-4.png','[]','2025-10-26 20:13:26','2025-10-26 20:13:26',NULL,'public'),(67,0,'img-video-2','img-video-2',1,'image/png',50691,'general/img-video-2.png','[]','2025-10-26 20:13:26','2025-10-26 20:13:26',NULL,'public'),(68,0,'intro-video-product','intro-video-product',1,'image/png',56038,'general/intro-video-product.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(69,0,'intro-video','intro-video',1,'image/png',12271,'general/intro-video.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(70,0,'job-details-thumb','job-details-thumb',1,'image/png',34648,'general/job-details-thumb.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(71,0,'members','members',1,'image/png',11716,'general/members.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(72,0,'newsletter-image','newsletter-image',1,'image/png',6374,'general/newsletter-image.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(73,0,'phone-app','phone-app',1,'image/png',7858,'general/phone-app.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(74,0,'phone1','phone1',1,'image/png',7226,'general/phone1.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(75,0,'phone2','phone2',1,'image/png',7858,'general/phone2.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(76,0,'plants-1','plants-1',1,'image/png',4639,'general/plants-1.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(77,0,'plants','plants',1,'image/png',11555,'general/plants.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(78,0,'platform-social','platform-social',1,'image/png',8433,'general/platform-social.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(79,0,'product-feature','product-feature',1,'image/png',36033,'general/product-feature.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(80,0,'question1','question1',1,'image/png',35468,'general/question1.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(81,0,'question2','question2',1,'image/png',19351,'general/question2.png','[]','2025-10-26 20:13:27','2025-10-26 20:13:27',NULL,'public'),(82,0,'question3','question3',1,'image/png',16719,'general/question3.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(83,0,'social-homepage','social-homepage',1,'image/png',7272,'general/social-homepage.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(84,0,'testimonial','testimonial',1,'image/png',3311,'general/testimonial.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(85,0,'testimonial1','testimonial1',1,'image/png',3311,'general/testimonial1.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(86,0,'we-what-offer-1','we-what-offer-1',1,'image/png',15023,'general/we-what-offer-1.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(87,0,'we-what-offer-2','we-what-offer-2',1,'image/png',19362,'general/we-what-offer-2.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(88,0,'we-what-offer-3','we-what-offer-3',1,'image/png',15023,'general/we-what-offer-3.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(89,0,'author','author',2,'image/png',2796,'accounts/author.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(90,0,'author2','author2',2,'image/png',4232,'accounts/author2.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(91,0,'author3','author3',2,'image/png',2503,'accounts/author3.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(92,0,'404','404',3,'image/png',19420,'icons/404.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(93,0,'bg-plan','bg-plan',3,'image/png',5173,'icons/bg-plan.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(94,0,'boat-circle','boat-circle',3,'image/jpeg',34293,'icons/boat-circle.jpg','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(95,0,'brand-identity','brand-identity',3,'image/png',2421,'icons/brand-identity.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(96,0,'building','building',3,'image/png',822,'icons/building.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(97,0,'business-strategy','business-strategy',3,'image/png',2563,'icons/business-strategy.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(98,0,'business','business',3,'image/png',988,'icons/business.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(99,0,'case-study','case-study',3,'image/png',12386,'icons/case-study.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(100,0,'certification','certification',3,'image/png',1080,'icons/certification.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(101,0,'certify','certify',3,'image/png',17607,'icons/certify.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(102,0,'chart-1','chart-1',3,'image/png',1263,'icons/chart-1.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(103,0,'coming-soon','coming-soon',3,'image/png',34646,'icons/coming-soon.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(104,0,'conference','conference',3,'image/png',1072,'icons/conference.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(105,0,'creation','creation',3,'image/png',1875,'icons/creation.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(106,0,'cross-platform','cross-platform',3,'image/png',2690,'icons/cross-platform.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(107,0,'digital-marketing','digital-marketing',3,'image/png',4887,'icons/digital-marketing.png','[]','2025-10-26 20:13:28','2025-10-26 20:13:28',NULL,'public'),(108,0,'dispersal','dispersal',3,'image/png',1193,'icons/dispersal.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(109,0,'document','document',3,'image/png',2975,'icons/document.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(110,0,'earth','earth',3,'image/png',2188,'icons/earth.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(111,0,'facebook','facebook',3,'image/png',568,'icons/facebook.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(112,0,'fly','fly',3,'image/png',2511,'icons/fly.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(113,0,'forums','forums',3,'image/png',5319,'icons/forums.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(114,0,'free','free',3,'image/png',1528,'icons/free.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(115,0,'headphone','headphone',3,'image/png',1606,'icons/headphone.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(116,0,'icon1','icon1',3,'image/png',1622,'icons/icon1.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(117,0,'icon2','icon2',3,'image/png',2470,'icons/icon2.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(118,0,'icon3','icon3',3,'image/png',1377,'icons/icon3.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(119,0,'icon4','icon4',3,'image/png',1976,'icons/icon4.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(120,0,'icon5','icon5',3,'image/png',1092,'icons/icon5.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(121,0,'icon6','icon6',3,'image/png',2058,'icons/icon6.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(122,0,'icon7','icon7',3,'image/png',1538,'icons/icon7.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(123,0,'icon8','icon8',3,'image/png',1825,'icons/icon8.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(124,0,'identity','identity',3,'image/png',920,'icons/identity.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(125,0,'img1','img1',3,'image/png',2553,'icons/img1.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(126,0,'img2','img2',3,'image/png',2390,'icons/img2.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(127,0,'img3','img3',3,'image/png',2585,'icons/img3.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(128,0,'instagram','instagram',3,'image/png',737,'icons/instagram.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(129,0,'knowledge','knowledge',3,'image/png',1741,'icons/knowledge.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(130,0,'line','line',3,'image/png',171,'icons/line.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(131,0,'linkedin','linkedin',3,'image/png',579,'icons/linkedin.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(132,0,'money','money',3,'image/png',3400,'icons/money.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(133,0,'payment','payment',3,'image/png',2614,'icons/payment.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(134,0,'personal','personal',3,'image/png',1202,'icons/personal.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(135,0,'persuasion','persuasion',3,'image/png',816,'icons/persuasion.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(136,0,'phone','phone',3,'image/png',1647,'icons/phone.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(137,0,'report','report',3,'image/png',4681,'icons/report.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(138,0,'research','research',3,'image/png',1266,'icons/research.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(139,0,'social-media','social-media',3,'image/png',2945,'icons/social-media.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(140,0,'social','social',3,'image/png',2835,'icons/social.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(141,0,'standard','standard',3,'image/png',2176,'icons/standard.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(142,0,'support','support',3,'image/png',3104,'icons/support.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(143,0,'sync','sync',3,'image/png',18298,'icons/sync.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(144,0,'trial-plan','trial-plan',3,'image/png',1524,'icons/trial-plan.png','[]','2025-10-26 20:13:29','2025-10-26 20:13:29',NULL,'public'),(145,0,'twitter','twitter',3,'image/png',793,'icons/twitter.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(146,0,'unlimited','unlimited',3,'image/png',11502,'icons/unlimited.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(147,0,'user','user',3,'image/png',11869,'icons/user.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(148,0,'we-do','we-do',3,'image/png',12218,'icons/we-do.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(149,0,'write','write',3,'image/png',10940,'icons/write.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(150,0,'favicon','favicon',4,'image/png',3555,'logo/favicon.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(151,0,'finger','finger',4,'image/png',5768,'logo/finger.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(152,0,'logo-circle','logo-circle',4,'image/png',8599,'logo/logo-circle.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(153,0,'logo-white','logo-white',4,'image/png',8360,'logo/logo-white.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(154,0,'logo','logo',4,'image/png',3827,'logo/logo.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(155,0,'1','1',5,'image/png',496,'product-categories/1.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(156,0,'10','10',5,'image/png',496,'product-categories/10.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(157,0,'11','11',5,'image/png',496,'product-categories/11.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(158,0,'12','12',5,'image/png',496,'product-categories/12.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(159,0,'13','13',5,'image/png',496,'product-categories/13.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(160,0,'2','2',5,'image/png',496,'product-categories/2.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(161,0,'3','3',5,'image/png',496,'product-categories/3.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(162,0,'4','4',5,'image/png',496,'product-categories/4.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(163,0,'5','5',5,'image/png',496,'product-categories/5.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(164,0,'6','6',5,'image/png',496,'product-categories/6.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(165,0,'7','7',5,'image/png',496,'product-categories/7.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(166,0,'8','8',5,'image/png',496,'product-categories/8.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(167,0,'9','9',5,'image/png',496,'product-categories/9.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(168,0,'1','1',6,'image/png',9803,'brands/1.png','[]','2025-10-26 20:13:30','2025-10-26 20:13:30',NULL,'public'),(169,0,'2','2',6,'image/png',9803,'brands/2.png','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(170,0,'3','3',6,'image/png',9803,'brands/3.png','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(171,0,'4','4',6,'image/png',9803,'brands/4.png','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(172,0,'1','1',7,'image/jpeg',9803,'products/1.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(173,0,'10-1','10-1',7,'image/jpeg',9803,'products/10-1.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(174,0,'10-2','10-2',7,'image/jpeg',9803,'products/10-2.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(175,0,'10','10',7,'image/jpeg',9803,'products/10.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(176,0,'11-1','11-1',7,'image/jpeg',9803,'products/11-1.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(177,0,'11-2','11-2',7,'image/jpeg',9803,'products/11-2.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(178,0,'11-3','11-3',7,'image/jpeg',9803,'products/11-3.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(179,0,'11','11',7,'image/jpeg',9803,'products/11.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(180,0,'12-1','12-1',7,'image/jpeg',9803,'products/12-1.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(181,0,'12-2','12-2',7,'image/jpeg',9803,'products/12-2.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(182,0,'12-3','12-3',7,'image/jpeg',9803,'products/12-3.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(183,0,'12','12',7,'image/jpeg',9803,'products/12.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(184,0,'13-1','13-1',7,'image/jpeg',9803,'products/13-1.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(185,0,'13','13',7,'image/jpeg',9803,'products/13.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(186,0,'14','14',7,'image/jpeg',9803,'products/14.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(187,0,'15-1','15-1',7,'image/jpeg',9803,'products/15-1.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(188,0,'15','15',7,'image/jpeg',9803,'products/15.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(189,0,'16','16',7,'image/jpeg',9803,'products/16.jpg','[]','2025-10-26 20:13:31','2025-10-26 20:13:31',NULL,'public'),(190,0,'17-1','17-1',7,'image/jpeg',9803,'products/17-1.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(191,0,'17-2','17-2',7,'image/jpeg',9803,'products/17-2.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(192,0,'17-3','17-3',7,'image/jpeg',9803,'products/17-3.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(193,0,'17','17',7,'image/jpeg',9803,'products/17.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(194,0,'18-1','18-1',7,'image/jpeg',9803,'products/18-1.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(195,0,'18-2','18-2',7,'image/jpeg',9803,'products/18-2.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(196,0,'18-3','18-3',7,'image/jpeg',9803,'products/18-3.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(197,0,'18','18',7,'image/jpeg',9803,'products/18.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(198,0,'19-1','19-1',7,'image/jpeg',9803,'products/19-1.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(199,0,'19-2','19-2',7,'image/jpeg',9803,'products/19-2.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(200,0,'19-3','19-3',7,'image/jpeg',9803,'products/19-3.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(201,0,'19','19',7,'image/jpeg',9803,'products/19.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(202,0,'2-1','2-1',7,'image/jpeg',9803,'products/2-1.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(203,0,'2-2','2-2',7,'image/jpeg',9803,'products/2-2.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(204,0,'2-3','2-3',7,'image/jpeg',9803,'products/2-3.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(205,0,'2','2',7,'image/jpeg',9803,'products/2.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(206,0,'20-1','20-1',7,'image/jpeg',9803,'products/20-1.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(207,0,'20-2','20-2',7,'image/jpeg',9803,'products/20-2.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(208,0,'20-3','20-3',7,'image/jpeg',9803,'products/20-3.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(209,0,'20','20',7,'image/jpeg',9803,'products/20.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(210,0,'21-1','21-1',7,'image/jpeg',9803,'products/21-1.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(211,0,'21-2','21-2',7,'image/jpeg',9803,'products/21-2.jpg','[]','2025-10-26 20:13:32','2025-10-26 20:13:32',NULL,'public'),(212,0,'21','21',7,'image/jpeg',9803,'products/21.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(213,0,'22-1','22-1',7,'image/jpeg',9803,'products/22-1.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(214,0,'22-2','22-2',7,'image/jpeg',9803,'products/22-2.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(215,0,'22-3','22-3',7,'image/jpeg',9803,'products/22-3.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(216,0,'22','22',7,'image/jpeg',9803,'products/22.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(217,0,'23-1','23-1',7,'image/jpeg',9803,'products/23-1.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(218,0,'23-2','23-2',7,'image/jpeg',9803,'products/23-2.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(219,0,'23-3','23-3',7,'image/jpeg',9803,'products/23-3.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(220,0,'23','23',7,'image/jpeg',9803,'products/23.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(221,0,'24-1','24-1',7,'image/jpeg',9803,'products/24-1.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(222,0,'24-2','24-2',7,'image/jpeg',9803,'products/24-2.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(223,0,'24','24',7,'image/jpeg',9803,'products/24.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(224,0,'25-1','25-1',7,'image/jpeg',9803,'products/25-1.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(225,0,'25-2','25-2',7,'image/jpeg',9803,'products/25-2.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(226,0,'25','25',7,'image/jpeg',9803,'products/25.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(227,0,'26-1','26-1',7,'image/jpeg',9803,'products/26-1.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(228,0,'26','26',7,'image/jpeg',9803,'products/26.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(229,0,'27-1','27-1',7,'image/jpeg',9803,'products/27-1.jpg','[]','2025-10-26 20:13:33','2025-10-26 20:13:33',NULL,'public'),(230,0,'27','27',7,'image/jpeg',9803,'products/27.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(231,0,'28-1','28-1',7,'image/jpeg',9803,'products/28-1.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(232,0,'28-2','28-2',7,'image/jpeg',9803,'products/28-2.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(233,0,'28','28',7,'image/jpeg',9803,'products/28.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(234,0,'29-1','29-1',7,'image/jpeg',9803,'products/29-1.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(235,0,'29-2','29-2',7,'image/jpeg',9803,'products/29-2.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(236,0,'29','29',7,'image/jpeg',9803,'products/29.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(237,0,'3','3',7,'image/jpeg',9803,'products/3.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(238,0,'30-1','30-1',7,'image/jpeg',9803,'products/30-1.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(239,0,'30-2','30-2',7,'image/jpeg',9803,'products/30-2.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(240,0,'30','30',7,'image/jpeg',9803,'products/30.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(241,0,'31-1','31-1',7,'image/jpeg',9803,'products/31-1.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(242,0,'31','31',7,'image/jpeg',9803,'products/31.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(243,0,'32-1','32-1',7,'image/jpeg',9803,'products/32-1.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(244,0,'32-2','32-2',7,'image/jpeg',9803,'products/32-2.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(245,0,'32','32',7,'image/jpeg',9803,'products/32.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(246,0,'33-1','33-1',7,'image/jpeg',9803,'products/33-1.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(247,0,'33-2','33-2',7,'image/jpeg',9803,'products/33-2.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(248,0,'33','33',7,'image/jpeg',9803,'products/33.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(249,0,'34-1','34-1',7,'image/jpeg',9803,'products/34-1.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(250,0,'34','34',7,'image/jpeg',9803,'products/34.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(251,0,'35-1','35-1',7,'image/jpeg',9803,'products/35-1.jpg','[]','2025-10-26 20:13:34','2025-10-26 20:13:34',NULL,'public'),(252,0,'35','35',7,'image/jpeg',9803,'products/35.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(253,0,'36-1','36-1',7,'image/jpeg',9803,'products/36-1.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(254,0,'36-2','36-2',7,'image/jpeg',9803,'products/36-2.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(255,0,'36','36',7,'image/jpeg',9803,'products/36.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(256,0,'37-1','37-1',7,'image/jpeg',9803,'products/37-1.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(257,0,'37-2','37-2',7,'image/jpeg',9803,'products/37-2.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(258,0,'37','37',7,'image/jpeg',9803,'products/37.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(259,0,'38-1','38-1',7,'image/jpeg',9803,'products/38-1.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(260,0,'38-2','38-2',7,'image/jpeg',9803,'products/38-2.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(261,0,'38-3','38-3',7,'image/jpeg',9803,'products/38-3.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(262,0,'38','38',7,'image/jpeg',9803,'products/38.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(263,0,'39-1','39-1',7,'image/jpeg',9803,'products/39-1.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(264,0,'39-2','39-2',7,'image/jpeg',9803,'products/39-2.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(265,0,'39','39',7,'image/jpeg',9803,'products/39.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(266,0,'4-1','4-1',7,'image/jpeg',9803,'products/4-1.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(267,0,'4-2','4-2',7,'image/jpeg',9803,'products/4-2.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(268,0,'4-3','4-3',7,'image/jpeg',9803,'products/4-3.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(269,0,'4','4',7,'image/jpeg',9803,'products/4.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(270,0,'40-1','40-1',7,'image/jpeg',9803,'products/40-1.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(271,0,'40','40',7,'image/jpeg',9803,'products/40.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(272,0,'41-1','41-1',7,'image/jpeg',9803,'products/41-1.jpg','[]','2025-10-26 20:13:35','2025-10-26 20:13:35',NULL,'public'),(273,0,'41-2','41-2',7,'image/jpeg',9803,'products/41-2.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(274,0,'41','41',7,'image/jpeg',9803,'products/41.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(275,0,'42-1','42-1',7,'image/jpeg',9803,'products/42-1.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(276,0,'42-2','42-2',7,'image/jpeg',9803,'products/42-2.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(277,0,'42','42',7,'image/jpeg',9803,'products/42.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(278,0,'43-1','43-1',7,'image/jpeg',9803,'products/43-1.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(279,0,'43-2','43-2',7,'image/jpeg',9803,'products/43-2.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(280,0,'43','43',7,'image/jpeg',9803,'products/43.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(281,0,'44-1','44-1',7,'image/jpeg',9803,'products/44-1.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(282,0,'44-2','44-2',7,'image/jpeg',9803,'products/44-2.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(283,0,'44','44',7,'image/jpeg',9803,'products/44.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(284,0,'45-1','45-1',7,'image/jpeg',9803,'products/45-1.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(285,0,'45','45',7,'image/jpeg',9803,'products/45.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(286,0,'46-1','46-1',7,'image/jpeg',9803,'products/46-1.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(287,0,'46','46',7,'image/jpeg',9803,'products/46.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(288,0,'47-1','47-1',7,'image/jpeg',9803,'products/47-1.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(289,0,'47','47',7,'image/jpeg',9803,'products/47.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(290,0,'48-1','48-1',7,'image/jpeg',9803,'products/48-1.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(291,0,'48-2','48-2',7,'image/jpeg',9803,'products/48-2.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(292,0,'48','48',7,'image/jpeg',9803,'products/48.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(293,0,'49-1','49-1',7,'image/jpeg',9803,'products/49-1.jpg','[]','2025-10-26 20:13:36','2025-10-26 20:13:36',NULL,'public'),(294,0,'49-2','49-2',7,'image/jpeg',9803,'products/49-2.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(295,0,'49','49',7,'image/jpeg',9803,'products/49.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(296,0,'5-1','5-1',7,'image/jpeg',9803,'products/5-1.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(297,0,'5-2','5-2',7,'image/jpeg',9803,'products/5-2.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(298,0,'5-3','5-3',7,'image/jpeg',9803,'products/5-3.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(299,0,'5','5',7,'image/jpeg',9803,'products/5.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(300,0,'50-1','50-1',7,'image/jpeg',9803,'products/50-1.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(301,0,'50','50',7,'image/jpeg',9803,'products/50.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(302,0,'51','51',7,'image/jpeg',9803,'products/51.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(303,0,'52-1','52-1',7,'image/jpeg',9803,'products/52-1.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(304,0,'52-2','52-2',7,'image/jpeg',9803,'products/52-2.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(305,0,'52','52',7,'image/jpeg',9803,'products/52.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(306,0,'53-1','53-1',7,'image/jpeg',9803,'products/53-1.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(307,0,'53','53',7,'image/jpeg',9803,'products/53.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(308,0,'54-1','54-1',7,'image/jpeg',9803,'products/54-1.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(309,0,'54','54',7,'image/jpeg',9803,'products/54.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(310,0,'55-1','55-1',7,'image/jpeg',9803,'products/55-1.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(311,0,'55-2','55-2',7,'image/jpeg',9803,'products/55-2.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(312,0,'55','55',7,'image/jpeg',9803,'products/55.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(313,0,'56-1','56-1',7,'image/jpeg',9803,'products/56-1.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(314,0,'56-2','56-2',7,'image/jpeg',9803,'products/56-2.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(315,0,'56','56',7,'image/jpeg',9803,'products/56.jpg','[]','2025-10-26 20:13:37','2025-10-26 20:13:37',NULL,'public'),(316,0,'57-1','57-1',7,'image/jpeg',9803,'products/57-1.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(317,0,'57','57',7,'image/jpeg',9803,'products/57.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(318,0,'58-1','58-1',7,'image/jpeg',9803,'products/58-1.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(319,0,'58-2','58-2',7,'image/jpeg',9803,'products/58-2.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(320,0,'58','58',7,'image/jpeg',9803,'products/58.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(321,0,'59-1','59-1',7,'image/jpeg',9803,'products/59-1.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(322,0,'59-2','59-2',7,'image/jpeg',9803,'products/59-2.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(323,0,'59-3','59-3',7,'image/jpeg',9803,'products/59-3.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(324,0,'59','59',7,'image/jpeg',9803,'products/59.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(325,0,'6','6',7,'image/jpeg',9803,'products/6.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(326,0,'60-1','60-1',7,'image/jpeg',9803,'products/60-1.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(327,0,'60-2','60-2',7,'image/jpeg',9803,'products/60-2.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(328,0,'60','60',7,'image/jpeg',9803,'products/60.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(329,0,'61-1','61-1',7,'image/jpeg',9803,'products/61-1.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(330,0,'61','61',7,'image/jpeg',9803,'products/61.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(331,0,'62-1','62-1',7,'image/jpeg',9803,'products/62-1.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(332,0,'62','62',7,'image/jpeg',9803,'products/62.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(333,0,'63-1','63-1',7,'image/jpeg',9803,'products/63-1.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(334,0,'63','63',7,'image/jpeg',9803,'products/63.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(335,0,'64-1','64-1',7,'image/jpeg',9803,'products/64-1.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(336,0,'64','64',7,'image/jpeg',9803,'products/64.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(337,0,'65-1','65-1',7,'image/jpeg',9803,'products/65-1.jpg','[]','2025-10-26 20:13:38','2025-10-26 20:13:38',NULL,'public'),(338,0,'65-2','65-2',7,'image/jpeg',9803,'products/65-2.jpg','[]','2025-10-26 20:13:39','2025-10-26 20:13:39',NULL,'public'),(339,0,'65','65',7,'image/jpeg',9803,'products/65.jpg','[]','2025-10-26 20:13:39','2025-10-26 20:13:39',NULL,'public'),(340,0,'7','7',7,'image/jpeg',9803,'products/7.jpg','[]','2025-10-26 20:13:39','2025-10-26 20:13:39',NULL,'public'),(341,0,'8-1','8-1',7,'image/jpeg',9803,'products/8-1.jpg','[]','2025-10-26 20:13:39','2025-10-26 20:13:39',NULL,'public'),(342,0,'8-2','8-2',7,'image/jpeg',9803,'products/8-2.jpg','[]','2025-10-26 20:13:39','2025-10-26 20:13:39',NULL,'public'),(343,0,'8-3','8-3',7,'image/jpeg',9803,'products/8-3.jpg','[]','2025-10-26 20:13:39','2025-10-26 20:13:39',NULL,'public'),(344,0,'8','8',7,'image/jpeg',9803,'products/8.jpg','[]','2025-10-26 20:13:39','2025-10-26 20:13:39',NULL,'public'),(345,0,'9-1','9-1',7,'image/jpeg',9803,'products/9-1.jpg','[]','2025-10-26 20:13:39','2025-10-26 20:13:39',NULL,'public'),(346,0,'9-2','9-2',7,'image/jpeg',9803,'products/9-2.jpg','[]','2025-10-26 20:13:39','2025-10-26 20:13:39',NULL,'public'),(347,0,'9','9',7,'image/jpeg',9803,'products/9.jpg','[]','2025-10-26 20:13:39','2025-10-26 20:13:39',NULL,'public'),(348,0,'1','1',8,'image/png',9803,'testimonials/1.png','[]','2025-10-26 20:13:47','2025-10-26 20:13:47',NULL,'public'),(349,0,'2','2',8,'image/png',9803,'testimonials/2.png','[]','2025-10-26 20:13:47','2025-10-26 20:13:47',NULL,'public'),(350,0,'3','3',8,'image/png',9803,'testimonials/3.png','[]','2025-10-26 20:13:47','2025-10-26 20:13:47',NULL,'public'),(351,0,'4','4',8,'image/png',9803,'testimonials/4.png','[]','2025-10-26 20:13:47','2025-10-26 20:13:47',NULL,'public'),(352,0,'1','1',9,'image/jpeg',9803,'news/1.jpg','[]','2025-10-26 20:13:47','2025-10-26 20:13:47',NULL,'public'),(353,0,'10','10',9,'image/jpeg',9803,'news/10.jpg','[]','2025-10-26 20:13:47','2025-10-26 20:13:47',NULL,'public'),(354,0,'11','11',9,'image/jpeg',9803,'news/11.jpg','[]','2025-10-26 20:13:47','2025-10-26 20:13:47',NULL,'public'),(355,0,'12','12',9,'image/jpeg',9803,'news/12.jpg','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(356,0,'13','13',9,'image/jpeg',9803,'news/13.jpg','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(357,0,'14','14',9,'image/jpeg',9803,'news/14.jpg','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(358,0,'15','15',9,'image/jpeg',9803,'news/15.jpg','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(359,0,'16','16',9,'image/jpeg',9803,'news/16.jpg','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(360,0,'2','2',9,'image/jpeg',9803,'news/2.jpg','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(361,0,'3','3',9,'image/jpeg',9803,'news/3.jpg','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(362,0,'4','4',9,'image/jpeg',9803,'news/4.jpg','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(363,0,'5','5',9,'image/jpeg',9803,'news/5.jpg','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(364,0,'6','6',9,'image/jpeg',9803,'news/6.jpg','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(365,0,'7','7',9,'image/jpeg',9803,'news/7.jpg','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(366,0,'8','8',9,'image/jpeg',9803,'news/8.jpg','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(367,0,'9','9',9,'image/jpeg',9803,'news/9.jpg','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(368,0,'1','1',10,'image/png',9803,'teams/1.png','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(369,0,'2','2',10,'image/png',9803,'teams/2.png','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(370,0,'3','3',10,'image/png',9803,'teams/3.png','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(371,0,'4','4',10,'image/png',9803,'teams/4.png','[]','2025-10-26 20:13:48','2025-10-26 20:13:48',NULL,'public'),(372,0,'5','5',10,'image/png',9803,'teams/5.png','[]','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,'public'),(373,0,'business','business',11,'image/png',978,'business-services/business.png','[]','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,'public'),(374,0,'enterprise','enterprise',11,'image/png',1398,'business-services/enterprise.png','[]','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,'public'),(375,0,'free','free',11,'image/png',1528,'business-services/free.png','[]','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,'public'),(376,0,'standard','standard',11,'image/png',2182,'business-services/standard.png','[]','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,'public'),(377,0,'1','1',12,'image/jpeg',9803,'customers/1.jpg','[]','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,'public'),(378,0,'10','10',12,'image/jpeg',9803,'customers/10.jpg','[]','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,'public'),(379,0,'2','2',12,'image/jpeg',9803,'customers/2.jpg','[]','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,'public'),(380,0,'3','3',12,'image/jpeg',9803,'customers/3.jpg','[]','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,'public'),(381,0,'4','4',12,'image/jpeg',9803,'customers/4.jpg','[]','2025-10-26 20:13:50','2025-10-26 20:13:50',NULL,'public'),(382,0,'5','5',12,'image/jpeg',9803,'customers/5.jpg','[]','2025-10-26 20:13:50','2025-10-26 20:13:50',NULL,'public'),(383,0,'6','6',12,'image/jpeg',9803,'customers/6.jpg','[]','2025-10-26 20:13:50','2025-10-26 20:13:50',NULL,'public'),(384,0,'7','7',12,'image/jpeg',9803,'customers/7.jpg','[]','2025-10-26 20:13:50','2025-10-26 20:13:50',NULL,'public'),(385,0,'8','8',12,'image/jpeg',9803,'customers/8.jpg','[]','2025-10-26 20:13:50','2025-10-26 20:13:50',NULL,'public'),(386,0,'9','9',12,'image/jpeg',9803,'customers/9.jpg','[]','2025-10-26 20:13:50','2025-10-26 20:13:50',NULL,'public'),(387,0,'1','1',13,'image/jpeg',61977,'galleries/1.jpg','[]','2025-10-26 20:13:52','2025-10-26 20:13:52',NULL,'public'),(388,0,'2','2',13,'image/jpeg',71155,'galleries/2.jpg','[]','2025-10-26 20:13:52','2025-10-26 20:13:52',NULL,'public'),(389,0,'3','3',13,'image/jpeg',124020,'galleries/3.jpg','[]','2025-10-26 20:13:52','2025-10-26 20:13:52',NULL,'public'),(390,0,'4','4',13,'image/jpeg',237677,'galleries/4.jpg','[]','2025-10-26 20:13:52','2025-10-26 20:13:52',NULL,'public'),(391,0,'5','5',13,'image/jpeg',200483,'galleries/5.jpg','[]','2025-10-26 20:13:52','2025-10-26 20:13:52',NULL,'public'),(392,0,'6','6',13,'image/jpeg',84312,'galleries/6.jpg','[]','2025-10-26 20:13:52','2025-10-26 20:13:52',NULL,'public'),(393,0,'7','7',13,'image/jpeg',63592,'galleries/7.jpg','[]','2025-10-26 20:13:53','2025-10-26 20:13:53',NULL,'public'),(394,0,'8','8',13,'image/jpeg',160645,'galleries/8.jpg','[]','2025-10-26 20:13:53','2025-10-26 20:13:53',NULL,'public');
/*!40000 ALTER TABLE `media_files` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `media_folders`
--
DROP TABLE IF EXISTS `media_folders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_folders` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`parent_id` bigint unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `media_folders_user_id_index` (`user_id`),
KEY `media_folders_index` (`parent_id`,`user_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `media_folders`
--
LOCK TABLES `media_folders` WRITE;
/*!40000 ALTER TABLE `media_folders` DISABLE KEYS */;
INSERT INTO `media_folders` VALUES (1,0,'general',NULL,'general',0,'2025-10-26 20:13:21','2025-10-26 20:13:21',NULL),(2,0,'accounts',NULL,'accounts',0,'2025-10-26 20:13:28','2025-10-26 20:13:28',NULL),(3,0,'icons',NULL,'icons',0,'2025-10-26 20:13:28','2025-10-26 20:13:28',NULL),(4,0,'logo',NULL,'logo',0,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL),(5,0,'product-categories',NULL,'product-categories',0,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL),(6,0,'brands',NULL,'brands',0,'2025-10-26 20:13:30','2025-10-26 20:13:30',NULL),(7,0,'products',NULL,'products',0,'2025-10-26 20:13:31','2025-10-26 20:13:31',NULL),(8,0,'testimonials',NULL,'testimonials',0,'2025-10-26 20:13:47','2025-10-26 20:13:47',NULL),(9,0,'news',NULL,'news',0,'2025-10-26 20:13:47','2025-10-26 20:13:47',NULL),(10,0,'teams',NULL,'teams',0,'2025-10-26 20:13:48','2025-10-26 20:13:48',NULL),(11,0,'business-services',NULL,'business-services',0,'2025-10-26 20:13:49','2025-10-26 20:13:49',NULL),(12,0,'customers',NULL,'customers',0,'2025-10-26 20:13:49','2025-10-26 20:13:49',NULL),(13,0,'galleries',NULL,'galleries',0,'2025-10-26 20:13:52','2025-10-26 20:13:52',NULL);
/*!40000 ALTER TABLE `media_folders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `media_settings`
--
DROP TABLE IF EXISTS `media_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_settings` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci,
`media_id` bigint unsigned DEFAULT NULL,
`user_id` bigint unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `media_settings`
--
LOCK TABLES `media_settings` WRITE;
/*!40000 ALTER TABLE `media_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `media_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `menu_locations`
--
DROP TABLE IF EXISTS `menu_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menu_locations` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`menu_id` bigint unsigned NOT NULL,
`location` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `menu_locations_menu_id_created_at_index` (`menu_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `menu_locations`
--
LOCK TABLES `menu_locations` WRITE;
/*!40000 ALTER TABLE `menu_locations` DISABLE KEYS */;
INSERT INTO `menu_locations` VALUES (1,1,'main-menu','2025-10-26 20:13:49','2025-10-26 20:13:49'),(2,5,'footer-bottom-menu','2025-10-26 20:13:49','2025-10-26 20:13:49'),(3,6,'footer-menu','2025-10-26 20:13:49','2025-10-26 20:13:49'),(4,7,'footer-menu','2025-10-26 20:13:49','2025-10-26 20:13:49');
/*!40000 ALTER TABLE `menu_locations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `menu_nodes`
--
DROP TABLE IF EXISTS `menu_nodes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menu_nodes` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`menu_id` bigint unsigned NOT NULL,
`parent_id` bigint unsigned NOT NULL DEFAULT '0',
`reference_id` bigint unsigned DEFAULT NULL,
`reference_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`icon_font` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`position` tinyint unsigned NOT NULL DEFAULT '0',
`title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`css_class` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`target` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '_self',
`has_child` tinyint unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `menu_nodes_menu_id_index` (`menu_id`),
KEY `menu_nodes_parent_id_index` (`parent_id`),
KEY `reference_id` (`reference_id`),
KEY `reference_type` (`reference_type`)
) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `menu_nodes`
--
LOCK TABLES `menu_nodes` WRITE;
/*!40000 ALTER TABLE `menu_nodes` DISABLE KEYS */;
INSERT INTO `menu_nodes` VALUES (1,1,0,NULL,NULL,'#',NULL,0,'Home',NULL,'_self',1,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(2,1,1,NULL,NULL,'/','fi fi-rr-home',0,'Homepage 1',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(3,1,1,2,'Botble\\Page\\Models\\Page','/homepage-2','fi fi-rr-home',1,'Homepage 2',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(4,1,1,3,'Botble\\Page\\Models\\Page','/homepage-3','fi fi-rr-home',2,'Homepage 3',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(5,1,1,4,'Botble\\Page\\Models\\Page','/homepage-4','fi fi-rr-home',3,'Homepage 4',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(6,1,1,5,'Botble\\Page\\Models\\Page','/homepage-5','fi fi-rr-home',4,'Homepage 5',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(7,1,1,6,'Botble\\Page\\Models\\Page','/homepage-6','fi fi-rr-home',5,'Homepage 6',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(8,1,1,7,'Botble\\Page\\Models\\Page','/homepage-7','fi fi-rr-home',6,'Homepage 7',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(9,1,1,8,'Botble\\Page\\Models\\Page','/homepage-8','fi fi-rr-home',7,'Homepage 8',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(10,1,1,9,'Botble\\Page\\Models\\Page','/homepage-9','fi fi-rr-home',8,'Homepage 9',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(11,1,1,10,'Botble\\Page\\Models\\Page','/homepage-10','fi fi-rr-home',9,'Homepage 10',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(12,1,1,11,'Botble\\Page\\Models\\Page','/homepage-11','fi fi-rr-home',10,'Homepage 11',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(13,1,1,12,'Botble\\Page\\Models\\Page','/homepage-12','fi fi-rr-home',11,'Homepage 12',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(14,1,0,NULL,NULL,'#',NULL,1,'Company',NULL,'_self',1,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(15,1,14,17,'Botble\\Page\\Models\\Page','/services',NULL,0,'Our Service',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(16,1,14,21,'Botble\\Page\\Models\\Page','/term-and-conditions',NULL,1,'Term and Conditions',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(17,1,14,19,'Botble\\Page\\Models\\Page','/pricing',NULL,2,'Pricing Plan',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(18,1,14,20,'Botble\\Page\\Models\\Page','/teams',NULL,3,'Meet Our Team',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(19,1,14,18,'Botble\\Page\\Models\\Page','/help-center',NULL,4,'Help Center',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(20,1,0,NULL,NULL,'#',NULL,2,'Career',NULL,'_self',1,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(21,1,20,24,'Botble\\Page\\Models\\Page','/career-listing',NULL,0,'Career Listing',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(22,1,20,NULL,NULL,'/careers/senior-full-stack-engineer-creator-success-full-time',NULL,1,'Career Details',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(23,1,0,NULL,NULL,'#',NULL,3,'Pages',NULL,'_self',1,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(24,1,23,13,'Botble\\Page\\Models\\Page','/about-us',NULL,0,'About Us',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(25,1,23,15,'Botble\\Page\\Models\\Page','/contact',NULL,1,'Contact',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(26,1,23,16,'Botble\\Page\\Models\\Page','/coming-soon',NULL,2,'Coming Soon',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(27,1,0,NULL,NULL,'#',NULL,4,'Blog',NULL,'_self',1,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(28,1,27,14,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Blog listing',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(29,1,27,NULL,NULL,'',NULL,1,'Blog detail',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(30,1,0,NULL,NULL,'#',NULL,5,'Products',NULL,'_self',1,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(31,1,30,NULL,NULL,'/products',NULL,0,'Product listing',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(32,1,30,NULL,NULL,'',NULL,1,'Product detail',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(33,2,0,NULL,NULL,'/',NULL,0,'Mission & Vision',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(34,2,0,20,'Botble\\Page\\Models\\Page','/teams',NULL,1,'Our Team',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(35,2,0,NULL,NULL,'/',NULL,2,'Press & Media',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(36,2,0,NULL,NULL,'/',NULL,3,'Advertising',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(37,2,0,NULL,NULL,'/',NULL,4,'Testimonials',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(38,3,0,18,'Botble\\Page\\Models\\Page','/help-center',NULL,0,'FAQs',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(39,3,0,NULL,NULL,'/',NULL,1,'Editor Help',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(40,3,0,NULL,NULL,'/',NULL,2,'Community',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(41,3,0,NULL,NULL,'/',NULL,3,'Live Chatting',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(42,3,0,15,'Botble\\Page\\Models\\Page','/contact',NULL,4,'Contact Us',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(43,3,0,18,'Botble\\Page\\Models\\Page','/help-center',NULL,5,'Support Center',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(44,4,0,NULL,NULL,'/',NULL,0,'Request an offer',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(45,4,0,NULL,NULL,'/',NULL,1,'How it works',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(46,4,0,19,'Botble\\Page\\Models\\Page','/pricing',NULL,2,'Pricing',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(47,4,0,NULL,NULL,'/',NULL,3,'Reviews',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(48,4,0,NULL,NULL,'/',NULL,4,'Stories',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(49,5,0,23,'Botble\\Page\\Models\\Page','/privacy-policy',NULL,0,'Privacy policy',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(50,5,0,22,'Botble\\Page\\Models\\Page','/cookie-policy',NULL,1,'Cookies',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(51,5,0,21,'Botble\\Page\\Models\\Page','/term-and-conditions',NULL,2,'Terms of service',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(52,6,0,NULL,NULL,'/',NULL,0,'Project management',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(53,6,0,NULL,NULL,'/',NULL,1,'Solutions',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(54,6,0,NULL,NULL,'/',NULL,2,'Customers',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(55,6,0,14,'Botble\\Page\\Models\\Page','/blog',NULL,3,'News & Events',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(56,6,0,NULL,NULL,'/',NULL,4,'Careers',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(57,6,0,18,'Botble\\Page\\Models\\Page','/help-center',NULL,5,'Support',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(58,7,0,NULL,NULL,'/',NULL,0,'Project software',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(59,7,0,NULL,NULL,'/',NULL,1,'Resource software',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(60,7,0,NULL,NULL,'/',NULL,2,'Workflow automation',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(61,7,0,NULL,NULL,'/',NULL,3,'Gantt chart makers',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(62,7,0,NULL,NULL,'/',NULL,4,'Project dashboards',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49'),(63,7,0,NULL,NULL,'/',NULL,5,'Task software',NULL,'_self',0,'2025-10-26 20:13:49','2025-10-26 20:13:49');
/*!40000 ALTER TABLE `menu_nodes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `menus`
--
DROP TABLE IF EXISTS `menus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menus` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `menus_slug_unique` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `menus`
--
LOCK TABLES `menus` WRITE;
/*!40000 ALTER TABLE `menus` DISABLE KEYS */;
INSERT INTO `menus` VALUES (1,'Main menu','main-menu','published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(2,'About Us','about-us','published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(3,'Support','support','published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(4,'Useful links','useful-links','published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(5,'Footer bottom menu','footer-bottom-menu','published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(6,'Resources','resources','published','2025-10-26 20:13:49','2025-10-26 20:13:49'),(7,'We offer','we-offer','published','2025-10-26 20:13:49','2025-10-26 20:13:49');
/*!40000 ALTER TABLE `menus` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `meta_boxes`
--
DROP TABLE IF EXISTS `meta_boxes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `meta_boxes` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`meta_key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`meta_value` text COLLATE utf8mb4_unicode_ci,
`reference_id` bigint unsigned NOT NULL,
`reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `meta_boxes_reference_id_index` (`reference_id`)
) ENGINE=InnoDB AUTO_INCREMENT=113 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `meta_boxes`
--
LOCK TABLES `meta_boxes` WRITE;
/*!40000 ALTER TABLE `meta_boxes` DISABLE KEYS */;
INSERT INTO `meta_boxes` VALUES (1,'header_breadcrumb_style','[\"default\"]',22,'Botble\\Page\\Models\\Page','2025-10-26 20:13:30','2025-10-26 20:13:30'),(2,'header_breadcrumb_style','[\"default\"]',23,'Botble\\Page\\Models\\Page','2025-10-26 20:13:30','2025-10-26 20:13:30'),(3,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',1,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(4,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(5,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',3,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(6,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',4,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(7,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',5,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(8,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',6,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(9,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',7,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(10,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',8,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(11,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',9,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(12,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',10,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(13,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',11,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(14,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',12,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(15,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',13,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(16,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',14,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(17,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',15,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(18,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',16,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(19,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',17,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(20,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',18,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(21,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',19,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(22,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',20,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:39','2025-10-26 20:13:39'),(23,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',21,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(24,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',22,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(25,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',23,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(26,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',24,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(27,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',25,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(28,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',26,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(29,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',27,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(30,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',28,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(31,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',29,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(32,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',30,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(33,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',31,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(34,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',32,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(35,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',33,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(36,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',34,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(37,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',35,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(38,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',36,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(39,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',37,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(40,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',38,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(41,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',39,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(42,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',40,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(43,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',41,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(44,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',42,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(45,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',43,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(46,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',44,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(47,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',45,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(48,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',46,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(49,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',47,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(50,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',48,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(51,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',49,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(52,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',50,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(53,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',51,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(54,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',52,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(55,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',53,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(56,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',54,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(57,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',55,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(58,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',56,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(59,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',57,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(60,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',58,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(61,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',59,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(62,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',60,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(63,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',61,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(64,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',62,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(65,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',63,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(66,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',64,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(67,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"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.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"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.\"}]]]',65,'Botble\\Ecommerce\\Models\\Product','2025-10-26 20:13:40','2025-10-26 20:13:40'),(68,'title','[\"Satisfied client testimonial\"]',1,'Botble\\Testimonial\\Models\\Testimonial','2025-10-26 20:13:47','2025-10-26 20:13:47'),(69,'title','[\"98% of residents recommend us\"]',2,'Botble\\Testimonial\\Models\\Testimonial','2025-10-26 20:13:47','2025-10-26 20:13:47'),(70,'title','[\"Our success stories\"]',3,'Botble\\Testimonial\\Models\\Testimonial','2025-10-26 20:13:47','2025-10-26 20:13:47'),(71,'title','[\"This is simply unbelievable\"]',4,'Botble\\Testimonial\\Models\\Testimonial','2025-10-26 20:13:47','2025-10-26 20:13:47'),(72,'description','[\"Quae eos neque quia molestiae et rerum. Modi dignissimos quia earum asperiores harum deleniti.\"]',1,'Botble\\Team\\Models\\Team','2025-10-26 20:13:49','2025-10-26 20:13:49'),(73,'description','[\"Iste maiores saepe perspiciatis rerum corrupti. Exercitationem et soluta magni optio occaecati tenetur.\"]',2,'Botble\\Team\\Models\\Team','2025-10-26 20:13:49','2025-10-26 20:13:49'),(74,'description','[\"Sint qui dolorum ea saepe ut eos quod.\"]',3,'Botble\\Team\\Models\\Team','2025-10-26 20:13:49','2025-10-26 20:13:49'),(75,'description','[\"Veritatis vel ipsum dolores consequuntur quisquam vero.\"]',4,'Botble\\Team\\Models\\Team','2025-10-26 20:13:49','2025-10-26 20:13:49'),(76,'description','[\"Quod temporibus aut nihil quod. Est autem eum rerum eveniet.\"]',5,'Botble\\Team\\Models\\Team','2025-10-26 20:13:49','2025-10-26 20:13:49'),(77,'description','[\"Magni maiores modi quidem voluptas sunt ut ipsa.\"]',6,'Botble\\Team\\Models\\Team','2025-10-26 20:13:49','2025-10-26 20:13:49'),(78,'description','[\"Eaque nihil totam eum voluptatem dolores quos. Est ut nulla corporis est.\"]',7,'Botble\\Team\\Models\\Team','2025-10-26 20:13:49','2025-10-26 20:13:49'),(79,'description','[\"Reiciendis quo nihil aliquam fugit ut dolor aut. Aspernatur iure dolore aut mollitia aspernatur.\"]',8,'Botble\\Team\\Models\\Team','2025-10-26 20:13:49','2025-10-26 20:13:49'),(80,'description','[\"Consequatur illo ratione soluta saepe et at. Sapiente quisquam accusamus quas nemo enim perferendis.\"]',9,'Botble\\Team\\Models\\Team','2025-10-26 20:13:49','2025-10-26 20:13:49'),(81,'description','[\"Libero ut maiores mollitia eius nam et rerum. Et molestiae consectetur ut magni ad.\"]',10,'Botble\\Team\\Models\\Team','2025-10-26 20:13:49','2025-10-26 20:13:49'),(82,'description','[\"Ex porro esse nihil est in et.\"]',11,'Botble\\Team\\Models\\Team','2025-10-26 20:13:49','2025-10-26 20:13:49'),(83,'description','[\"Exercitationem sunt soluta occaecati aliquid. Dolores quo et ad.\"]',12,'Botble\\Team\\Models\\Team','2025-10-26 20:13:49','2025-10-26 20:13:49'),(84,'image','[\"general\\/job-details-thumb.png\"]',1,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(85,'icon','[\"icons\\/icon1.png\"]',1,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(86,'apply_url','[\"\\/contact\"]',1,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(87,'image','[\"general\\/job-details-thumb.png\"]',2,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(88,'icon','[\"icons\\/icon2.png\"]',2,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(89,'apply_url','[\"\\/contact\"]',2,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(90,'image','[\"general\\/job-details-thumb.png\"]',3,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(91,'icon','[\"icons\\/icon3.png\"]',3,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(92,'apply_url','[\"\\/contact\"]',3,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(93,'image','[\"general\\/job-details-thumb.png\"]',4,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(94,'icon','[\"icons\\/icon4.png\"]',4,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(95,'apply_url','[\"\\/contact\"]',4,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(96,'image','[\"general\\/job-details-thumb.png\"]',5,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(97,'icon','[\"icons\\/icon5.png\"]',5,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(98,'apply_url','[\"\\/contact\"]',5,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(99,'image','[\"general\\/job-details-thumb.png\"]',6,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(100,'icon','[\"icons\\/icon6.png\"]',6,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(101,'apply_url','[\"\\/contact\"]',6,'ArchiElite\\Career\\Models\\Career','2025-10-26 20:13:49','2025-10-26 20:13:49'),(102,'icon','[\"icons\\/cross-platform.png\"]',1,'Botble\\BusinessService\\Models\\ServiceCategory','2025-10-26 20:13:49','2025-10-26 20:13:49'),(103,'icon','[\"icons\\/brand-identity.png\"]',2,'Botble\\BusinessService\\Models\\ServiceCategory','2025-10-26 20:13:49','2025-10-26 20:13:49'),(104,'icon','[\"icons\\/social-media.png\"]',3,'Botble\\BusinessService\\Models\\ServiceCategory','2025-10-26 20:13:49','2025-10-26 20:13:49'),(105,'icon','[\"icons\\/business.png\"]',4,'Botble\\BusinessService\\Models\\ServiceCategory','2025-10-26 20:13:49','2025-10-26 20:13:49'),(106,'icon','[\"icons\\/creation.png\"]',5,'Botble\\BusinessService\\Models\\ServiceCategory','2025-10-26 20:13:49','2025-10-26 20:13:49'),(107,'icon','[\"business-services\\/free.png\"]',1,'Botble\\BusinessService\\Models\\Package','2025-10-26 20:13:49','2025-10-26 20:13:49'),(108,'icon','[\"business-services\\/standard.png\"]',2,'Botble\\BusinessService\\Models\\Package','2025-10-26 20:13:49','2025-10-26 20:13:49'),(109,'icon','[\"business-services\\/business.png\"]',3,'Botble\\BusinessService\\Models\\Package','2025-10-26 20:13:49','2025-10-26 20:13:49'),(110,'icon','[\"business-services\\/enterprise.png\"]',4,'Botble\\BusinessService\\Models\\Package','2025-10-26 20:13:49','2025-10-26 20:13:49'),(111,'child_style','[\"two_col\"]',1,'Botble\\Menu\\Models\\MenuNode','2025-10-26 20:13:49','2025-10-26 20:13:49'),(112,'child_style','[\"hr_per_2_child\"]',14,'Botble\\Menu\\Models\\MenuNode','2025-10-26 20:13:49','2025-10-26 20:13:49');
/*!40000 ALTER TABLE `meta_boxes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `migrations`
--
DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `migrations` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=257 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `migrations`
--
LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES (1,'0001_01_01_000001_create_cache_table',1),(2,'2013_04_09_032329_create_base_tables',1),(3,'2013_04_09_062329_create_revisions_table',1),(4,'2014_10_12_000000_create_users_table',1),(5,'2014_10_12_100000_create_password_reset_tokens_table',1),(6,'2016_06_10_230148_create_acl_tables',1),(7,'2016_06_14_230857_create_menus_table',1),(8,'2016_06_28_221418_create_pages_table',1),(9,'2016_10_05_074239_create_setting_table',1),(10,'2016_11_28_032840_create_dashboard_widget_tables',1),(11,'2016_12_16_084601_create_widgets_table',1),(12,'2017_05_09_070343_create_media_tables',1),(13,'2017_11_03_070450_create_slug_table',1),(14,'2019_01_05_053554_create_jobs_table',1),(15,'2019_08_19_000000_create_failed_jobs_table',1),(16,'2019_12_14_000001_create_personal_access_tokens_table',1),(17,'2022_04_20_100851_add_index_to_media_table',1),(18,'2022_04_20_101046_add_index_to_menu_table',1),(19,'2022_07_10_034813_move_lang_folder_to_root',1),(20,'2022_08_04_051940_add_missing_column_expires_at',1),(21,'2022_09_01_000001_create_admin_notifications_tables',1),(22,'2022_10_14_024629_drop_column_is_featured',1),(23,'2022_11_18_063357_add_missing_timestamp_in_table_settings',1),(24,'2022_12_02_093615_update_slug_index_columns',1),(25,'2023_01_30_024431_add_alt_to_media_table',1),(26,'2023_02_16_042611_drop_table_password_resets',1),(27,'2023_04_23_005903_add_column_permissions_to_admin_notifications',1),(28,'2023_05_10_075124_drop_column_id_in_role_users_table',1),(29,'2023_08_03_041207_remove_unused_plugins',1),(30,'2023_08_06_070140_fix_shortcode_name',1),(31,'2019_06_24_211801_create_career_table',2),(32,'2021_12_04_095357_create_careers_translations_table',2),(33,'2023_09_20_050420_add_missing_translation_column',2),(34,'2023_07_25_072632_create_business_services_tables',3),(35,'2023_08_09_035520_activate_business_services_plugin',1),(36,'2023_08_10_030324_migrate_old_shortcodes',1),(37,'2023_08_21_090810_make_page_content_nullable',1),(38,'2023_09_14_021936_update_index_for_slugs_table',1),(39,'2023_12_07_095130_add_color_column_to_media_folders_table',1),(40,'2023_12_17_162208_make_sure_column_color_in_media_folders_nullable',1),(41,'2024_01_07_072057_update_theme_option_for_login_page',1),(42,'2024_04_04_110758_update_value_column_in_user_meta_table',1),(43,'2024_05_12_091229_add_column_visibility_to_table_media_files',1),(44,'2024_07_07_091316_fix_column_url_in_menu_nodes_table',1),(45,'2024_07_12_100000_change_random_hash_for_media',1),(46,'2024_09_30_024515_create_sessions_table',1),(47,'2024_12_19_000001_create_device_tokens_table',1),(48,'2024_12_19_000002_create_push_notifications_table',1),(49,'2024_12_19_000003_create_push_notification_recipients_table',1),(50,'2024_12_30_000001_create_user_settings_table',1),(51,'2025_07_06_030754_add_phone_to_users_table',1),(52,'2025_07_31_add_performance_indexes_to_slugs_table',1),(53,'2024_04_27_100730_improve_analytics_setting',4),(54,'2023_08_11_060908_create_announcements_table',5),(55,'2015_06_29_025744_create_audit_history',6),(56,'2023_11_14_033417_change_request_column_in_table_audit_histories',6),(57,'2025_05_05_000001_add_user_type_to_audit_histories_table',6),(58,'2015_06_18_033822_create_blog_table',7),(59,'2021_02_16_092633_remove_default_value_for_author_type',7),(60,'2021_12_03_030600_create_blog_translations',7),(61,'2022_04_19_113923_add_index_to_table_posts',7),(62,'2023_08_29_074620_make_column_author_id_nullable',7),(63,'2024_07_30_091615_fix_order_column_in_categories_table',7),(64,'2025_01_06_033807_add_default_value_for_categories_author_type',7),(65,'2016_06_17_091537_create_contacts_table',8),(66,'2023_11_10_080225_migrate_contact_blacklist_email_domains_to_core',8),(67,'2024_03_20_080001_migrate_change_attribute_email_to_nullable_form_contacts_table',8),(68,'2024_03_25_000001_update_captcha_settings_for_contact',8),(69,'2024_04_19_063914_create_custom_fields_table',8),(70,'2020_03_05_041139_create_ecommerce_tables',9),(71,'2021_01_01_044147_ecommerce_create_flash_sale_table',9),(72,'2021_01_17_082713_add_column_is_featured_to_product_collections_table',9),(73,'2021_01_18_024333_add_zip_code_into_table_customer_addresses',9),(74,'2021_02_18_073505_update_table_ec_reviews',9),(75,'2021_03_10_024419_add_column_confirmed_at_to_table_ec_customers',9),(76,'2021_03_10_025153_change_column_tax_amount',9),(77,'2021_03_20_033103_add_column_availability_to_table_ec_products',9),(78,'2021_04_28_074008_ecommerce_create_product_label_table',9),(79,'2021_05_31_173037_ecommerce_create_ec_products_translations',9),(80,'2021_08_17_105016_remove_column_currency_id_in_some_tables',9),(81,'2021_08_30_142128_add_images_column_to_ec_reviews_table',9),(82,'2021_10_04_030050_add_column_created_by_to_table_ec_products',9),(83,'2021_10_05_122616_add_status_column_to_ec_customers_table',9),(84,'2021_11_03_025806_nullable_phone_number_in_ec_customer_addresses',9),(85,'2021_11_23_071403_correct_languages_for_product_variations',9),(86,'2021_11_28_031808_add_product_tags_translations',9),(87,'2021_12_01_031123_add_featured_image_to_ec_products',9),(88,'2022_01_01_033107_update_table_ec_shipments',9),(89,'2022_02_16_042457_improve_product_attribute_sets',9),(90,'2022_03_22_075758_correct_product_name',9),(91,'2022_04_19_113334_add_index_to_ec_products',9),(92,'2022_04_28_144405_remove_unused_table',9),(93,'2022_05_05_115015_create_ec_customer_recently_viewed_products_table',9),(94,'2022_05_18_143720_add_index_to_table_ec_product_categories',9),(95,'2022_06_16_095633_add_index_to_some_tables',9),(96,'2022_06_30_035148_create_order_referrals_table',9),(97,'2022_07_24_153815_add_completed_at_to_ec_orders_table',9),(98,'2022_08_14_032836_create_ec_order_returns_table',9),(99,'2022_08_14_033554_create_ec_order_return_items_table',9),(100,'2022_08_15_040324_add_billing_address',9),(101,'2022_08_30_091114_support_digital_products_table',9),(102,'2022_09_13_095744_create_options_table',9),(103,'2022_09_13_104347_create_option_value_table',9),(104,'2022_10_05_163518_alter_table_ec_order_product',9),(105,'2022_10_12_041517_create_invoices_table',9),(106,'2022_10_12_142226_update_orders_table',9),(107,'2022_10_13_024916_update_table_order_returns',9),(108,'2022_10_21_030830_update_columns_in_ec_shipments_table',9),(109,'2022_10_28_021046_update_columns_in_ec_shipments_table',9),(110,'2022_11_16_034522_update_type_column_in_ec_shipping_rules_table',9),(111,'2022_11_19_041643_add_ec_tax_product_table',9),(112,'2022_12_12_063830_update_tax_defadult_in_ec_tax_products_table',9),(113,'2022_12_17_041532_fix_address_in_order_invoice',9),(114,'2022_12_26_070329_create_ec_product_views_table',9),(115,'2023_01_04_033051_fix_product_categories',9),(116,'2023_01_09_050400_add_ec_global_options_translations_table',9),(117,'2023_01_10_093754_add_missing_option_value_id',9),(118,'2023_01_17_082713_add_column_barcode_and_cost_per_item_to_product_table',9),(119,'2023_01_26_021854_add_ec_customer_used_coupons_table',9),(120,'2023_02_08_015900_update_options_column_in_ec_order_product_table',9),(121,'2023_02_27_095752_remove_duplicate_reviews',9),(122,'2023_03_20_115757_add_user_type_column_to_ec_shipment_histories_table',9),(123,'2023_04_21_082427_create_ec_product_categorizables_table',9),(124,'2023_05_03_011331_add_missing_column_price_into_invoice_items_table',9),(125,'2023_05_17_025812_fix_invoice_issue',9),(126,'2023_05_26_073140_move_option_make_phone_field_optional_at_checkout_page_to_mandatory_fields',9),(127,'2023_05_27_144611_fix_exchange_rate_setting',9),(128,'2023_06_22_084331_add_generate_license_code_to_ec_products_table',9),(129,'2023_06_30_042512_create_ec_order_tax_information_table',9),(130,'2023_07_14_022724_remove_column_id_from_ec_product_collection_products',9),(131,'2023_08_09_012940_remove_column_status_in_ec_product_attributes',9),(132,'2023_08_15_064505_create_ec_tax_rules_table',9),(133,'2023_08_21_021819_make_column_address_in_ec_customer_addresses_nullable',9),(134,'2023_08_22_094114_drop_unique_for_barcode',9),(135,'2023_08_30_031811_add_apply_via_url_column_to_ec_discounts_table',9),(136,'2023_09_07_094312_add_index_to_product_sku_and_translations',9),(137,'2023_09_19_024955_create_discount_product_categories_table',9),(138,'2023_10_17_070728_add_icon_and_icon_image_to_product_categories_table',9),(139,'2023_11_22_154643_add_unique_in_table_ec_products_variations',9),(140,'2023_11_27_032313_add_price_columns_to_ec_product_cross_sale_relations_table',9),(141,'2023_12_06_023945_add_display_on_checkout_column_to_ec_discounts_table',9),(142,'2023_12_25_040604_ec_create_review_replies_table',9),(143,'2023_12_26_090340_add_private_notes_column_to_ec_customers_table',9),(144,'2024_01_16_070706_fix_translation_tables',9),(145,'2024_01_23_075227_add_proof_file_to_ec_orders_table',9),(146,'2024_03_26_041531_add_cancel_reason_to_ec_orders_table',9),(147,'2024_03_27_062402_create_ec_customer_deletion_requests_table',9),(148,'2024_03_29_042242_migrate_old_captcha_settings',9),(149,'2024_03_29_093946_create_ec_order_return_histories_table',9),(150,'2024_04_01_063523_add_customer_columns_to_ec_reviews_table',9),(151,'2024_04_15_092654_migrate_ecommerce_google_tag_manager_code_setting',9),(152,'2024_04_16_035713_add_min_max_order_quantity_columns_to_products_table',9),(153,'2024_05_07_073153_improve_table_wishlist',9),(154,'2024_05_07_093703_add_missing_zip_code_into_table_store_locators',9),(155,'2024_05_15_021503_fix_invoice_path',9),(156,'2024_06_20_160724_create_ec_shared_wishlists_table',9),(157,'2024_06_28_025104_add_notify_attachment_updated_column_to_ec_products_table',9),(158,'2024_07_03_030900_add_downloaded_at_column_to_ec_order_product_table',9),(159,'2024_07_14_071826_make_customer_email_nullable',9),(160,'2024_07_15_104916_add_video_media_column_to_ec_products_table',9),(161,'2024_07_26_052530_add_percentage_to_tax_rules_table',9),(162,'2024_08_14_123028_add_customer_delivered_confirmed_at_column_to_ec_shipments_table',9),(163,'2024_08_19_132849_create_specification_tables',9),(164,'2024_09_07_060744_add_author_column_to_specification_tables',9),(165,'2024_09_14_064023_add_can_use_with_flash_sale_column_to_ec_discounts_table',9),(166,'2024_09_25_073928_remove_wrong_product_slugs',9),(167,'2025_01_10_000000_fix_order_invoice_rounding_issues',9),(168,'2025_01_15_050230_migrate_old_theme_options',9),(169,'2025_01_15_optimize_products_export_index',9),(170,'2025_01_17_082713_correct_column_barcode_and_cost_per_item_to_product_table',9),(171,'2025_01_24_044641_migrate_old_country_data',9),(172,'2025_01_28_233602_add_private_notes_into_ec_orders_table',9),(173,'2025_02_13_021247_add_tax_translations',9),(174,'2025_02_24_152621_add_text_color_to_product_labels_table',9),(175,'2025_04_12_000001_add_payment_fee_to_ec_orders_table',9),(176,'2025_04_12_000002_add_payment_fee_to_ec_invoices_table',9),(177,'2025_05_05_092036_make_user_id_and_tax_amount_nullable',9),(178,'2025_05_15_082342_drop_email_unique_index_in_ec_customers_table',9),(179,'2025_06_07_081731_add_translations_for_specification_groups_and_tables',9),(180,'2025_06_17_091813_increase_note_in_shipments_table',9),(181,'2025_06_24_000001_create_ec_product_license_codes_table',9),(182,'2025_06_24_080427_add_license_code_type_to_products_table',9),(183,'2025_07_06_062402_create_ec_customer_deletion_requests_table',9),(184,'2025_07_07_161729_change_license_code_to_text_in_ec_product_license_codes_table',9),(185,'2025_07_08_162756_increase_license_code_column_size_in_ec_order_product_table',9),(186,'2025_07_09_000001_add_customer_address_fields_to_ec_invoices_table',9),(187,'2025_07_15_090809_create_ec_abandoned_carts_table',9),(188,'2025_07_24_120510_increase_barcode_column_length_in_ec_products_table',9),(189,'2025_07_31_133600_add_performance_indexes_to_ec_product_categories_table',9),(190,'2025_08_01_161205_optimize_product_variation_query_indexes',9),(191,'2025_08_08_145059_correct_tax_amount_in_order_and_invoice_tables',9),(192,'2025_09_05_025247_create_ec_product_specification_attribute_translations_table',9),(193,'2025_09_08_025516_add_variations_count_to_ec_products_table',9),(194,'2025_09_08_080248_add_slug_column_to_ec_product_categories_table',9),(195,'2025_09_08_080330_add_slug_column_to_ec_product_categories_translations_table',9),(196,'2025_09_08_080443_populate_slug_column_for_product_categories',9),(197,'2025_09_08_081216_add_slug_column_to_ec_products_table',9),(198,'2025_09_08_081237_add_slug_column_to_ec_products_translations_table',9),(199,'2025_09_08_081321_populate_slug_column_for_products',9),(200,'2025_09_10_073321_add_performance_indexes_to_ecommerce_tables',9),(201,'2025_09_18_093922_fix_tax_rounding_in_order_products_and_invoices',9),(202,'2025_09_21_030756_add_reviews_cache_to_ec_products_table',9),(203,'2025_09_30_090432_add_performance_indexes_to_ec_product_categories_table',9),(204,'2025_10_10_090331_add_number_format_style_to_ec_currencies_table',9),(205,'2025_10_10_092235_add_space_between_price_and_currency_to_ec_currencies_table',9),(206,'2025_10_11_074318_add_price_includes_tax_to_ec_products_table',9),(207,'2025_10_13_043527_generate_slugs_for_product_collections',9),(208,'2025_10_22_020518_add_verification_code_to_ec_customer_deletion_requests_table',9),(209,'2025_10_22_090000_remove_duplicate_order_addresses',9),(210,'2018_07_09_221238_create_faq_table',10),(211,'2021_12_03_082134_create_faq_translations',10),(212,'2023_11_17_063408_add_description_column_to_faq_categories_table',10),(213,'2016_10_13_150201_create_galleries_table',11),(214,'2021_12_03_082953_create_gallery_translations',11),(215,'2022_04_30_034048_create_gallery_meta_translations_table',11),(216,'2023_08_29_075308_make_column_user_id_nullable',11),(217,'2016_10_03_032336_create_languages_table',12),(218,'2023_09_14_022423_add_index_for_language_table',12),(219,'2021_10_25_021023_fix-priority-load-for-language-advanced',13),(220,'2021_12_03_075608_create_page_translations',13),(221,'2023_07_06_011444_create_slug_translations_table',13),(222,'2019_11_18_061011_create_country_table',14),(223,'2021_12_03_084118_create_location_translations',14),(224,'2021_12_03_094518_migrate_old_location_data',14),(225,'2021_12_10_034440_switch_plugin_location_to_use_language_advanced',14),(226,'2022_01_16_085908_improve_plugin_location',14),(227,'2022_08_04_052122_delete_location_backup_tables',14),(228,'2023_04_23_061847_increase_state_translations_abbreviation_column',14),(229,'2023_07_26_041451_add_more_columns_to_location_table',14),(230,'2023_07_27_041451_add_more_columns_to_location_translation_table',14),(231,'2023_08_15_073307_drop_unique_in_states_cities_translations',14),(232,'2023_10_21_065016_make_state_id_in_table_cities_nullable',14),(233,'2024_08_17_094600_add_image_into_countries',14),(234,'2025_01_08_093652_add_zip_code_to_cities',14),(235,'2025_07_31_083459_add_indexes_for_location_search_performance',14),(236,'2017_10_24_154832_create_newsletter_table',15),(237,'2024_03_25_000001_update_captcha_settings_for_newsletter',15),(238,'2017_05_18_080441_create_payment_tables',16),(239,'2021_03_27_144913_add_customer_type_into_table_payments',16),(240,'2021_05_24_034720_make_column_currency_nullable',16),(241,'2021_08_09_161302_add_metadata_column_to_payments_table',16),(242,'2021_10_19_020859_update_metadata_field',16),(243,'2022_06_28_151901_activate_paypal_stripe_plugin',16),(244,'2022_07_07_153354_update_charge_id_in_table_payments',16),(245,'2024_07_04_083133_create_payment_logs_table',16),(246,'2025_04_12_000003_add_payment_fee_to_payments_table',16),(247,'2025_05_22_000001_add_payment_fee_type_to_settings_table',16),(248,'2025_04_08_040931_create_social_logins_table',17),(249,'2022_11_02_092723_team_create_team_table',18),(250,'2023_08_11_094574_update_team_table',18),(251,'2023_11_30_085354_add_missing_description_to_team',18),(252,'2024_10_02_030027_add_more_columns_to_teams_translations_table',18),(253,'2018_07_09_214610_create_testimonial_table',19),(254,'2021_12_03_083642_create_testimonials_translations',19),(255,'2016_10_07_193005_create_translations_table',20),(256,'2023_12_12_105220_drop_translations_table',20);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `newsletters`
--
DROP TABLE IF EXISTS `newsletters`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletters` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'subscribed',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `newsletters`
--
LOCK TABLES `newsletters` WRITE;
/*!40000 ALTER TABLE `newsletters` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletters` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pages`
--
DROP TABLE IF EXISTS `pages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pages` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci,
`user_id` bigint unsigned DEFAULT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`template` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `pages_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pages`
--
LOCK TABLES `pages` WRITE;
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
INSERT INTO `pages` VALUES (1,'Homepage 1','<div>[hero-banner title=\"The data layer between your {{ business }} and its potential.\" subtitle=\"Optimize write performance with a document data model that maps to your application’s access patterns. Meet a wide range of query requirements via a single query API that supports everything from simple lookups to complex processing pipelines for data analytics and transformations.\" banner_primary=\"general/hero-banner.png\" button_primary_label=\"Download App\" button_primary_url=\"/app\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\"][/hero-banner]</div><div>[featured-brands title=\"Loved By Developers, Trusted By Enterprises\" subtitle=\"We helped these brands turn online assessments into success stories. Join them. Elevate your testing.\" quantity=\"6\" title_1=\"Cuebia\" image_1=\"product-categories/2.png\" url_1=\"https://www.cuebiq.com/\" is_open_new_tab_1=\"yes\" title_2=\"Factual\" image_2=\"product-categories/3.png\" url_2=\"http://factual.com\" is_open_new_tab_2=\"yes\" title_3=\"Kippa\" image_3=\"product-categories/5.png\" url_3=\"https://kippa.africa/\" is_open_new_tab_3=\"yes\" title_4=\"PlaceIQ\" image_4=\"product-categories/8.png\" url_4=\"https://www.placeiq.com/\" is_open_new_tab_4=\"yes\" image_5=\"product-categories/10.png\" url_5=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_5=\"yes\" title_6=\"Versed\" image_6=\"product-categories/12.png\" url_6=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_6=\"yes\" style=\"style-1\"][/featured-brands]</div><div>[services title=\"What We Offer\" subtitle=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" button_secondary_label=\"Learn more\" service_ids=\"1,2,3,4,5,6\" style=\"style-1\"][/services]</div><div>[intro-video title=\"Integrate with over 1,000 project management apps\" image=\"general/intro-video.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[pricing-plan title=\"Finger Choose The Best Plan\" subtitle=\"Pick your plan. Change whenever you want. No switching fees between packages\" icon_image=\"icons/bg-plan.png\" button_secondary_label=\"Compare Plans\" button_secondary_url=\"pricing\" style=\"style-1\" package_ids=\"1,2,3,4\"][/pricing-plan]</div><div>[faqs title=\"Frequently asked questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\" button_primary_label=\"Contact Us\" button_primary_url=\"contact\" button_secondary_label=\"Support Center\" button_secondary_url=\"contact\" image=\"general/bg-faqs.png\" faq_category_ids=\"1,2,3,4\"][/faqs]</div><div>[testimonials title=\"What our customers are saying\" subtitle=\"Hear from our users who have saved thousands on their Startup and SaaS solution spend\" image=\"general/plants-1.png\" limit=\"4\"][/testimonials]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"blog\" type=\"featured\" limit=\"5\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(2,'Homepage 2','<div>[hero-banner title=\"Iori dashboard will help your payments fast and secure\" subtitle=\"Social media networks are open to all. Social media is typically used for social interaction and access to news and information, and decision making.\" banner_primary=\"general/banner.png\" button_secondary_label=\"Learn more\" platform_google_play_logo=\"general/appstore-btn.png\" platform_apple_store_logo=\"general/google-play-btn.png\" style=\"style-2\"][/hero-banner]</div><div>[featured-brands title=\"Loved By Developers, Trusted By Enterprises\" quantity=\"6\" title_1=\"Cuebia\" image_1=\"product-categories/2.png\" url_1=\"https://www.cuebiq.com/\" is_open_new_tab_1=\"yes\" title_2=\"Factual\" image_2=\"product-categories/3.png\" url_2=\"http://factual.com\" is_open_new_tab_2=\"yes\" title_3=\"Kippa\" image_3=\"product-categories/5.png\" url_3=\"https://kippa.africa/\" is_open_new_tab_3=\"yes\" title_4=\"PlaceIQ\" image_4=\"product-categories/8.png\" url_4=\"https://www.placeiq.com/\" is_open_new_tab_4=\"yes\" image_5=\"product-categories/10.png\" url_5=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_5=\"yes\" title_6=\"Versed\" image_6=\"product-categories/12.png\" url_6=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_6=\"yes\" style=\"style-2\"][/featured-brands]</div><div>[why-choose-us title=\"See why we are trusted the world over\" subtitle=\"Why choose us?\" description=\"Necessary to deliver white glove, fully managed campaigns that surpass industry benchmarks.Take your career to next level. Apply to our team and see what we can do together. You’re good enough. Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature Id pro doctus mediocrem erroribus, diam nostro sed cu. Ea pri graeco tritani partiendo. Omittantur No tale choro fastidii his, pri cu epicuri perpetua. Enim dictas omittantur et duo, vocent lucilius quaestio mea ex. Ex illum officiis id\" button_primary_label=\"Download App\" button_primary_url=\"/app\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\" quantity=\"4\" title_1=\"Social followers\" data_1=\"469k\" title_2=\" Happy Clients\" data_2=\"5000+\" color_2=\"bg-brand-2\" title_3=\" Project Done\" data_3=\"756+\" color_3=\"bg-2\" title_4=\"Client Satisfaction\" data_4=\"100%\" color_4=\"bg-4\"][/why-choose-us]</div><div>[pricing-plan title=\"Finger Choose The Best Plan\" subtitle=\"Pick your plan. Change whenever you want. No switching fees between packages\" icon_image=\"logo/finger.png\" button_primary_label=\"Contact Us\" button_primary_url=\"/contact\" button_secondary_label=\"Compare Plans\" button_secondary_url=\"/pricing\" style=\"style-1\" package_ids=\"1,2,4\"][/pricing-plan]</div><div>[testimonials title=\"What our customers are saying\" subtitle=\"Hear from our users who have saved thousands on their Startup and SaaS solution spend\" image=\"general/customer.png\" limit=\"4\" style=\"style-2\"][/testimonials]</div><div>[get-in-touch title=\"Want to talk to a marketing expert?\" subtitle=\"Get In Touch\" description=\"You need to create an account to find the best and preferred job. lorem Ipsum is simply dummy text of the printing and typesetting industry the standard dummy text ever took.\" image=\"general/img-marketing.png\" button_primary_label=\"Contact Us\" button_primary_url=\"/contact\" button_secondary_label=\"Support Center\" button_secondary_url=\"/contact\"][/get-in-touch]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aeneas velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div><div>[how-to-start title=\"Bring your target users together on social media\" subtitle=\"How to start ?\" image=\"general/banner-how-to-start.png\" image_icon_primary=\"icons/certify.png\" image_icon_secondary=\"icons/fly.png\" quantity=\"3\" title_1=\"Create an account\" description_1=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" title_2=\"Build your founding team\" description_2=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" title_3=\"Launch and Scale\" description_3=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\"][/how-to-start]</div><div>[marketing-features title=\"Take your social media marketing prowess to the next level\" quantity=\"6\" title_1=\"Cross-Platform\" icon_image_1=\"icons/cross-platform.png\" description_1=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_1=\"Learn More\" url_1=\"/contact\" type_1=\"enterprise\" title_2=\"Social Media\" icon_image_2=\"icons/cross-platform.png\" description_2=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe\" label_2=\"Learn More\" url_2=\"/contact\" type_2=\"personal\" title_3=\"Brand Identity\" icon_image_3=\"icons/social-media.png\" description_3=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_3=\"Learn More\" url_3=\"/contact\" type_3=\"enterprise\" title_4=\"Customer Service\" icon_image_4=\"icons/trial-plan.png\" description_4=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_4=\"Learn More\" url_4=\"/contact\" type_4=\"personal\" title_5=\"Social advertising\" icon_image_5=\"icons/standard.png\" description_5=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_5=\"Learn More\" url_5=\"/contact\" type_5=\"personal\" title_6=\"Content creation\" icon_image_6=\"icons/business.png\" description_6=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_6=\"Learn More\" url_6=\"/contact\" type_6=\"enterprise\"][/marketing-features]</div><div>[what-we-do title=\"We facilitate the creation of strategy and design\" subtitle=\"What We Do, What You Get\" button_primary_label=\"Download App\" button_primary_url=\"/contact\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\" quantity=\"5\" title_1=\"Smart Installation Tools\" icon_image_1=\"icons/we-do.png\" description_1=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" label_1=\"Learn More\" url_1=\"/contact\" title_2=\"Manage budgets and resources\" icon_image_2=\"icons/case-study.png\" description_2=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" label_2=\"Learn More\" url_2=\"/contact\" title_3=\" Employee Assessments\" icon_image_3=\"icons/write.png\" description_3=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" label_3=\"Learn More\" url_3=\"/contact\" title_4=\" Collaborative to the core.\" icon_image_4=\"icons/user.png\" description_4=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" label_4=\"Learn More\" url_4=\"/contact\" title_5=\" Unlimited ways to work\" icon_image_5=\"icons/unlimited.png\" description_5=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" label_5=\"Learn More\" url_5=\"/contact\"][/what-we-do]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(3,'Homepage 3','<div>[hero-banner title=\"Grow your online business now\" subtitle=\"Get Started\" banner_primary=\"general/banner-homepage-3.png\" banner_image_1=\"general/chart2.png\" banner_image_2=\"general/chart1.png\" banner_image_3=\"general/chart.png\" button_primary_label=\"Play Video\" button_primary_url=\"contact\" style=\"style-3\"][/hero-banner]</div><div>[featured-brands quantity=\"6\" title_1=\"Cuebia\" image_1=\"product-categories/2.png\" url_1=\"https://www.cuebiq.com/\" is_open_new_tab_1=\"yes\" title_2=\"Factual\" image_2=\"product-categories/3.png\" url_2=\"http://factual.com\" is_open_new_tab_2=\"yes\" title_3=\"Kippa\" image_3=\"product-categories/5.png\" url_3=\"https://kippa.africa/\" is_open_new_tab_3=\"yes\" title_4=\"PlaceIQ\" image_4=\"product-categories/8.png\" url_4=\"https://www.placeiq.com/\" is_open_new_tab_4=\"yes\" image_5=\"product-categories/10.png\" url_5=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_5=\"yes\" title_6=\"Versed\" image_6=\"product-categories/12.png\" url_6=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_6=\"yes\" style=\"style-3\"][/featured-brands]</div><div>[what-we-do title=\"We facilitate the creation of strategy and design\" subtitle=\"What We Do, What You Get\" button_primary_label=\"Download App\" button_primary_url=\"/contact\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\" quantity=\"5\" title_1=\"Smart Installation Tools\" icon_image_1=\"icons/we-do.png\" description_1=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" label_1=\"Learn More\" url_1=\"/contact\" title_2=\"Manage budgets and resources\" icon_image_2=\"icons/case-study.png\" description_2=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" label_2=\"Learn More\" url_2=\"/contact\" title_3=\" Employee Assessments\" icon_image_3=\"icons/write.png\" description_3=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" label_3=\"Learn More\" url_3=\"/contact\" title_4=\" Collaborative to the core.\" icon_image_4=\"icons/user.png\" description_4=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" label_4=\"Learn More\" url_4=\"/contact\" title_5=\" Unlimited ways to work\" icon_image_5=\"icons/unlimited.png\" description_5=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" label_5=\"Learn More\" url_5=\"/contact\"][/what-we-do]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"469\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"255\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"756\" unit_3=\"K\" title_4=\"Global branch\" data_4=\"120\"][/site-statistics]</div><div>[how-it-work title=\"Grow your online business now\" subtitle=\"How it work\" description=\"Access advanced order types including limit, market, stop limit and dollar cost averaging. Track your total asset holdings, values and equity over time. Monitor markets, manage your portfolio, and trade crypto on the go. \" button_primary_label=\"Download App\" button_primary_url=\"/app\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\" quantity=\"8\" title_1=\"Cross-Platform\" description_1=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" icon_image_1=\"icons/cross-platform.png\" label_1=\"Learn More\" url_1=\"/contact\" display_1=\"show_full\" title_2=\"Social Media\" description_2=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" icon_image_2=\"icons/social-media.png\" label_2=\"Learn More\" url_2=\"/contact\" display_2=\"show_full\" title_3=\"Certification\" icon_image_3=\"icons/certification.png\" url_3=\"/contact\" display_3=\"show_title\" title_4=\"Conference\" icon_image_4=\"icons/conference.png\" url_4=\"/contact\" display_4=\"show_title\" title_5=\"Research\" icon_image_5=\"icons/research.png\" url_5=\"/contact\" display_5=\"show_title\" title_6=\"Dispersal\" icon_image_6=\"icons/cross-platform.png\" url_6=\"/contact\" display_6=\"show_title\" title_7=\"Enterprise\" icon_image_7=\"icons/research.png\" url_7=\"/contact\" display_7=\"show_title\" title_8=\"Team Building\" icon_image_8=\"general/img-marketing.png\" url_8=\"/contact\" display_8=\"show_title\"][/how-it-work]</div><div>[testimonials title=\"What our clients say about us\" subtitle=\"Testimonials\" description=\"Access advanced order types including limit, market, stop limit and dollar cost averaging. Track your total asset holdings, values and equity over time. Monitor markets, manage your portfolio, and trade crypto on the go.\" limit=\"4\" style=\"style-3\"][/testimonials]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(4,'Homepage 4','<div>[hero-banner title=\"Start for free Pay as you Grow\" subtitle=\"Collaborate, plan projects and manage resources with powerful features that your whole team can use. The latest news, tips and advice to help you run your business with less fuss.\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\" platform_google_play_logo=\"general/google.png\" platform_google_play_url=\"https://play.google.com/store/games\" platform_apple_store_logo=\"general/apple.png\" platform_apple_store_url=\"https://www.apple.com/vn/app-store/\" style=\"style-5\"][/hero-banner]</div><div>[featured-brands title=\"Loved By Developers Trusted By Enterprises\" subtitle=\"We helped these brands turn online assessments into success stories.\" quantity=\"6\" title_1=\"Cuebia\" image_1=\"product-categories/2.png\" url_1=\"https://www.cuebiq.com/\" is_open_new_tab_1=\"yes\" title_2=\"Factual\" image_2=\"product-categories/3.png\" url_2=\"http://factual.com\" is_open_new_tab_2=\"yes\" title_3=\"Kippa\" image_3=\"product-categories/5.png\" url_3=\"https://kippa.africa/\" is_open_new_tab_3=\"yes\" title_4=\"PlaceIQ\" image_4=\"product-categories/8.png\" url_4=\"https://www.placeiq.com/\" is_open_new_tab_4=\"yes\" image_5=\"product-categories/10.png\" url_5=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_5=\"yes\" title_6=\"Versed\" image_6=\"product-categories/12.png\" url_6=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_6=\"yes\" style=\"style-4\"][/featured-brands]</div><div>[branding-block title=\"Build your brand and reach out to social followers\" subtitle=\"Branding\" description=\"Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally, what you create, share or react to feeds into this public narrative. How you conduct yourself online is now just as important as your behavior offline especially when it comes to your digital marketing career.\" image=\"general/follower.png\" logo=\"icons/certify.png\" button_primary_label=\"Download App\" button_primary_url=\"https://www.apple.com/sg/app-store/\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\" quantity=\"6\" title_1=\"Send & Schedule Posts\" title_2=\"Push Notification\" title_3=\"Online Visitors\" title_4=\"Live Chat Request\" title_5=\"Create fully integrated campaigns\" title_6=\"Directly send or schedule posts\"][/branding-block]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"469\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"255\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"756\" unit_3=\"K\" title_4=\"Global branch\" data_4=\"120\"][/site-statistics]</div><div>[services title=\"What We Offer\" subtitle=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" button_primary_label=\"Download App\" button_primary_url=\"https://www.apple.com/sg/app-store/\" button_secondary_label=\"Learn more\" button_secondary_url=\"contact\" service_ids=\"1,2,3,4,5,6\" style=\"style-2\"][/services]</div><div>[pricing-plan title=\"Finger Choose The Best Plan\" subtitle=\"Pick your plan. Change whenever you want. No switching fees between packages\" icon_image=\"icons/bg-plan.png\" button_secondary_label=\"Compare Plans\" button_secondary_url=\"pricing\" style=\"style-1\" package_ids=\"1,2,3,4\"][/pricing-plan]</div><div>[faqs title=\"Frequently asked questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\" button_primary_label=\"Contact Us\" button_primary_url=\"contact\" button_secondary_label=\"Support Center\" button_secondary_url=\"contact\" image=\"general/bg-faqs.png\" faq_category_ids=\"1,2,3,4\"][/faqs]</div><div>[intro-video title=\"Integrate with over 1,000 project management apps\" subtitle=\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. \" image=\"general/img-video-2.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" icon_image=\"icons/bg-plan.png\" style=\"style-2\"][/intro-video]</div><div>[testimonials title=\"What our customers are saying\" subtitle=\"Hear from our users who have saved thousands on their Startup and SaaS solution spend\" image=\"general/customer.png\" limit=\"4\" style=\"style-2\"][/testimonials]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(5,'Homepage 5','<div>[hero-banner title=\"#1 Intelligence Software to Accelerate Your SaaS Sales\" subtitle=\"Great sales platform\" description=\"We’re lively, not corporate. We have the energy and boldness of a startup and the expertise and pragmatism of a scale-up. All in one place.\" top_description=\"Discover powerful features to boost your productivit. You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" banner_primary=\"general/banner-homepage-5.png\" quantity=\"2\" title_1=\"Connected\" url_1=\"/contact\" image_1=\"icons/free.png\" description_1=\"We come together wherever we are – across time zones, regions, offices and screens. You will receive support from your teammates anytime and anywhere.\" title_2=\"Flexible\" url_2=\"/contact\" image_2=\"icons/identity.png\" description_2=\"We believe in your freedom to work when and how you work best, to help us all thrive. Only freedom and independent work can bring out the best in you.\" style=\"style-6\"][/hero-banner]</div><div>[featured-brands quantity=\"6\" title_1=\"Cuebia\" image_1=\"product-categories/2.png\" url_1=\"https://www.cuebiq.com/\" is_open_new_tab_1=\"yes\" title_2=\"Factual\" image_2=\"product-categories/3.png\" url_2=\"http://factual.com\" is_open_new_tab_2=\"yes\" title_3=\"Kippa\" image_3=\"product-categories/5.png\" url_3=\"https://kippa.africa/\" is_open_new_tab_3=\"yes\" title_4=\"PlaceIQ\" image_4=\"product-categories/8.png\" url_4=\"https://www.placeiq.com/\" is_open_new_tab_4=\"yes\" image_5=\"product-categories/10.png\" url_5=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_5=\"yes\" title_6=\"Versed\" image_6=\"product-categories/12.png\" url_6=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_6=\"yes\" style=\"style-5\"][/featured-brands]</div><div>[marketing-features title=\"Take your social media marketing prowess to the next level\" style=\"style-2\" quantity=\"6\" title_1=\"Cross-Platform\" icon_image_1=\"icons/cross-platform.png\" description_1=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_1=\"Learn More\" url_1=\"/contact\" type_1=\"enterprise\" title_2=\"Social Media\" icon_image_2=\"icons/cross-platform.png\" description_2=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe\" label_2=\"Learn More\" url_2=\"/contact\" type_2=\"personal\" title_3=\"Brand Identity\" icon_image_3=\"icons/social-media.png\" description_3=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_3=\"Learn More\" url_3=\"/contact\" type_3=\"enterprise\" title_4=\"Customer Service\" icon_image_4=\"icons/trial-plan.png\" description_4=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_4=\"Learn More\" url_4=\"/contact\" type_4=\"personal\" title_5=\"Social advertising\" icon_image_5=\"icons/standard.png\" description_5=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_5=\"Learn More\" url_5=\"/contact\" type_5=\"personal\" title_6=\"Content creation\" icon_image_6=\"icons/business.png\" description_6=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_6=\"Learn More\" url_6=\"/contact\" type_6=\"enterprise\"][/marketing-features]</div><div>[business-strategy title=\"Integrate with over 1,000 project management apps\" subtitle=\"Business\" image=\"general/img-project.png\" icon_image=\"general/chart-homepage-5.png\" description=\"Business\" quantity=\"6\" title_1=\"Happy Clients\" title_2=\"Project Done\" title_3=\"Global branch\" title_4=\"Create task dependencies\" title_5=\"hare files, discuss\" title_6=\"Track time spent on each project\" counter_number_1=\"17\" counter_label_1=\"Happy Clients\" counter_number_2=\"516\" counter_label_2=\"Project Done\" counter_number_3=\"68\" counter_label_3=\"Global branch\"][/business-strategy]</div><div>[grow-business title=\"Grow your online business now\" subtitle=\"Business\" description=\"Access advanced order types including limit, market, stop limit and dollar cost averaging. Track your total asset holdings, values and equity over time. Monitor markets, manage your portfolio, and trade crypto on the go\" image=\"general/img-project2.png\" icon_image=\"logo/finger.png\" button_primary_label=\"Download App\" button_primary_url=\"/app\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\"][/grow-business]</div><div>[site-statistics title=\"See why we are trusted the world over\" quantity=\"4\" title_1=\"Social followers\" data_1=\"469\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"255\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"756\" unit_3=\"K\" title_4=\"Global branch\" data_4=\"120\"][/site-statistics]</div><div>[pricing-plan title=\"Finger Choose The Best Plan\" subtitle=\"Pick your plan. Change whenever you want. No switching fees between packages\" icon_image=\"general/icons/bg-plan.png\" button_primary_label=\"Contact Us\" button_primary_url=\"/contact\" button_secondary_label=\"Compare Plans\" button_secondary_url=\"/pricing\" style=\"style-2\" package_ids=\"1,2,3,4\"][/pricing-plan]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"blog\" type=\"featured\" limit=\"5\"][/from-our-blog]</div><div>[featured-services quantity=\"3\" title_1=\"Knowledge Base\" description_1=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_1=\"icons/document.png\" action_1=\"/contact\" label_1=\"Get Started\" title_2=\"Community Forums\" description_2=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_2=\"icons/forums.png\" action_2=\"/contact\" label_2=\"Get Started\" title_3=\"Documentation\" description_3=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_3=\"icons/knowledge.png\" action_3=\"/contact\" label_3=\"Get Started\"][/featured-services]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(6,'Homepage 6','<div>[hero-banner title=\"Innovative Solution to Move Your Business Forward\" subtitle=\"Think. Creative. Solve\" description=\"Collaborate, plan projects and manage resources with powerful features that your whole team can use. The latest news, tips and advice to help you run your business with less fuss.\" banner_primary=\"general/banner-homepage-6.png\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\" platform_google_play_logo=\"general/google.png\" platform_google_play_url=\"https://play.google.com/store\" platform_apple_store_logo=\"general/apple.png\" platform_apple_store_url=\"https://www.apple.com/store\" quantity=\"2\" image_1=\"general/testimonial.png\" image_2=\"general/testimonial1.png\" style=\"style-7\"][/hero-banner]</div><div>[featured-brands quantity=\"6\" title_1=\"Cuebia\" image_1=\"product-categories/2.png\" url_1=\"https://www.cuebiq.com/\" is_open_new_tab_1=\"yes\" title_2=\"Factual\" image_2=\"product-categories/3.png\" url_2=\"http://factual.com\" is_open_new_tab_2=\"yes\" title_3=\"Kippa\" image_3=\"product-categories/5.png\" url_3=\"https://kippa.africa/\" is_open_new_tab_3=\"yes\" title_4=\"PlaceIQ\" image_4=\"product-categories/8.png\" url_4=\"https://www.placeiq.com/\" is_open_new_tab_4=\"yes\" image_5=\"product-categories/10.png\" url_5=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_5=\"yes\" title_6=\"Versed\" image_6=\"product-categories/12.png\" url_6=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_6=\"yes\" style=\"style-5\"][/featured-brands]</div><div>[connect-with-us title=\"Crafting human connection through digital experience\" description=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" button_label=\"Contact Us\" button_url=\"/contact\" quantity=\"3\" title_1=\"Cross Platform\" image_1=\"general/connect-with-us-1.png\" description_1=\"Aut architecto consequatur sit error nemo sed dolorum suscipit 33 impedit dignissimos ut velit blanditiis qui quos magni id dolore dignissimos. Sit ipsa consectetur et sint harum et dicta consequuntur id cupiditate perferendis qui quisquam enim. Vel autem illo id error excepturi est dolorum voluptas qui maxime consequatur et culpa quibusdam in iusto vero sit amet Quis.\" title_2=\"Cross Platform\" image_2=\"general/connect-with-us-2.png\" description_2=\"Vel tenetur officiis ab reiciendis dolor aut quae doloremque est ipsum natus et consequatur animi aut sunt dolores ut quasi rerum. Aut velit velit id quasi velit eum reiciendis laudantium quo galisum incidunt aut velit animi hic temporibus blanditiis sit odit iure. Eum laborum dolores ea molestias fuga qui temporibus accusantium qui soluta aliquid ab vero soluta.\" title_3=\"Cross Platform\" image_3=\"general/connect-with-us-3.png\" description_3=\"Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature Id pro doctus mediocrem erroribus, diam nostro sed cu. Ea pri graeco tritani partiendo. Omittantur No tale choro fastidii his, pri cu epicuri perpetua. Enim dictas omittantur et duo, vocent lucilius quaestio mea ex. Ex illum officiis id.\"][/connect-with-us]</div><div>[services title=\"What We Offer\" subtitle=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" button_primary_label=\"Download App\" button_primary_url=\"https://www.apple.com/sg/app-store/\" button_secondary_label=\"Learn more\" button_secondary_url=\"contact\" service_ids=\"1,2,3,4,5,6\" style=\"style-3\"][/services]</div><div>[pricing-plan title=\"Finger Choose The Best Plan\" subtitle=\"Pick your plan. Change whenever you want. No switching fees between packages\" icon_image=\"icons/bg-plan.png\" button_secondary_label=\"Compare Plans\" button_secondary_url=\"pricing\" style=\"style-1\" package_ids=\"1,2,3,4\"][/pricing-plan]</div><div>[get-in-touch title=\"Want to talk to a marketing expert?\" subtitle=\"Get In Touch\" description=\"You need to create an account to find the best and preferred job. lorem Ipsum is simply dummy text of the printing and typesetting industry the standard dummy text ever took.\" image=\"general/img-marketing.png\" button_primary_label=\"Contact Us\" button_primary_url=\"/contact\" button_secondary_label=\"Support Center\" button_secondary_url=\"/contact\"][/get-in-touch]</div><div>[faqs title=\"Frequently asked questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\" faq_category_ids=\"1,2,3,4\" style=\"style-2\" quantity=\"3\" image_1=\"accounts/author.png\" image_2=\"accounts/author2.png\" image_3=\"accounts/author3.png\"][/faqs]</div><div>[featured-services quantity=\"3\" title_1=\"Knowledge Base\" description_1=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_1=\"icons/knowledge.png\" action_1=\"/contact\" label_1=\"Get Started\" title_2=\"Community Forums\" description_2=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_2=\"icons/forums.png\" action_2=\"/contact\" label_2=\"Get Started\" title_3=\"Documentation\" description_3=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_3=\"icons/document.png\" action_3=\"/contact\" label_3=\"Get Started\"][/featured-services]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(7,'Homepage 7','<div>[hero-banner title=\"We take care of your business to grow\" subtitle=\"Think. Creative. Solve\" description=\"Collaborate, plan projects and manage resources with powerful features that your whole team can use. The latest news, tips and advice to help you run your business with less fuss.\" customer_ids=\"2,5\" customer_description=\"Join thousands of users in using the iori platform!\" quantity=\"6\" image_1=\"general/banner-homepage-7-1.png\" image_2=\"general/banner-homepage-7-2.png\" image_3=\"general/banner-homepage-7-3.png\" image_4=\"general/banner-homepage-7-4.png\" image_5=\"general/banner-homepage-7-5.png\" image_6=\"general/banner-homepage-7-6.png\" style=\"style-8\"][/hero-banner]</div><div>[featured-brands-with-counter title=\"See why we are trusted the world over\" quantity=\"6,6\" number_1=\"753\" name_1=\"Project Done\" number_2=\"100\" name_2=\"Global branch\" title_1=\"Cuebia\" image_1=\"product-categories/2.png\" url_1=\"https://www.cuebiq.com/\" is_open_new_tab_1=\"yes\" title_2=\"Factual\" image_2=\"product-categories/4.png\" url_2=\"http://factual.com\" is_open_new_tab_2=\"yes\" title_3=\"Kippa\" image_3=\"product-categories/6.png\" url_3=\"https://kippa.africa/\" is_open_new_tab_3=\"no\" title_4=\"PlaceIQ\" image_4=\"product-categories/8.png\" url_4=\"https://www.placeiq.com/\" is_open_new_tab_4=\"yes\" title_5=\"Reedelsevier\" image_5=\"product-categories/10.png\" url_5=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_5=\"yes\" title_6=\"Versed\" image_6=\"product-categories/12.png\" url_6=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_6=\"yes\"][/featured-brands-with-counter]</div><div>[technology-block block_left_title=\"Financial Management\" block_left_description=\"Track, manage, and control your expenses. The only financial management tool you’ll ever need.\" google_play_logo=\"general/google.png\" google_play_url=\"https://play.google.com/store\" apple_store_logo=\"general/apple.png\" apple_store_url=\"https://www.apple.com/store\" block_left_image=\"general/img-financial.png\" block_right_title=\"Automated Platform\" block_right_description=\"Synchronize and automate all your business in the cloud. Save time and effort, enjoy great vacations.\" button_label=\"Get Started Now\" button_url=\"/contact\" block_right_image=\"general/automated.png\"][/technology-block]</div><div>[how-to-start title=\"Bring your target users together on social media\" subtitle=\"IORI Business Platform\" image=\"general/banner-how-to-start.png\" image_icon_primary=\"icons/certify.png\" image_icon_secondary=\"icons/fly.png\" style=\"style-2\" quantity=\"3\" title_1=\"Create an account\" description_1=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" title_2=\"Build your founding team\" description_2=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" title_3=\"Launch and Scale\" description_3=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\"][/how-to-start]</div><div>[branding-block title=\"Business can also be simple\" subtitle=\"Automatic Tools\" description=\"Access advanced order types including limit, market, stop limit and dollar cost averaging. Track your total asset holdings, values and equity over time. Monitor markets, manage your portfolio, and trade crypto on the go.\" image=\"general/branding-image.png\" logo=\"general/testimonial1.png\" button_primary_label=\"Download App\" button_primary_url=\"https://play.google.com/store\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\" counter_title=\"Happy Clients\" counter_data=\"25\" counter_unit=\"K+\" quantity=\"6\" title_1=\"Task tracking\" title_2=\"Task visualization\" title_3=\"Meet deadlines faster\" title_4=\"Create task dependencies\" title_5=\"hare files, discuss\" title_6=\"Track time spent on each project\" style=\"style-2\"][/branding-block]</div><div>[featured-services quantity=\"3\" title_1=\"Payment\" description_1=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_1=\"icons/payment.png\" action_1=\"/contact\" label_1=\"Learn More\" title_2=\"Save money\" description_2=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_2=\"icons/money.png\" action_2=\"/contact\" label_2=\"Learn More\" title_3=\"Quick support\" description_3=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_3=\"icons/support.png\" action_3=\"/contact\" label_3=\"Learn More\" style=\"style-2\"][/featured-services]</div><div>[teams title=\"Meet the amazing team behind Iori\" subtitle=\"Our leadership team\" team_ids=\"1,2,3,5\"][/teams]</div><div>[pricing-plan title=\"Finger Choose The Best Plan\" subtitle=\"Pick your plan. Change whenever you want. No switching fees between packages\" icon_image=\"icons/bg-plan.png\" button_primary_label=\"Contact Us\" button_primary_url=\"/contact\" button_secondary_label=\"Compare Plans\" button_secondary_url=\"/pricing\" style=\"style-2\" package_ids=\"1,2,3,4\"][/pricing-plan]</div><div>[testimonials title=\"What our loving users are saying about us\" limit=\"5\" style=\"style-5\"][/testimonials]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(8,'Homepage 8','<div>[banner-hero-with-teams title=\"Think. Creative. Solve\" subtitle=\"Innovative Solution to Move Your Business Forward\" description=\"Collaborate, plan projects and manage resources with powerful features that your whole team can use. The latest news, tips and advice to help you run your business with less fuss.\" google_play_logo=\"general/google.png\" google_play_url=\"https://play.google.com/store\" apple_store_logo=\"general/apple.png\" apple_store_url=\"https://www.apple.com/store\" team_ids=\"1,2,3,4,5\"][/banner-hero-with-teams]</div><div>[why-using-your-app title=\"Our app is great for individuals, startups and enterprises. It have never been easier to manage your finances\" subtitle=\"Why using our app\" description=\"Eos eveniet nesciunt et accusamus suscipit est magnam consequatur aut quisquam perferendis a reprehenderit quis aut voluptatem repellat est beatae reiciendis? Cum omnis corrupti cum incidunt veritatis vel libero provident aut reiciendis animi ut quod quaerat et velit animi et omnis illo. Sit quae harum eos incidunt sequi eum iste fugit ex omnis aliquam a explicabo quam.\" image_1=\"general/phone1.png\" image_2=\"general/phone2.png\" testimonial_id=\"1\"][/why-using-your-app]</div><div>[featured-brands title=\"Loved By Developers, Trusted By Enterprises\" quantity=\"6\" title_1=\"Cuebia\" image_1=\"product-categories/2.png\" url_1=\"https://www.cuebiq.com/\" is_open_new_tab_1=\"yes\" title_2=\"Factual\" image_2=\"product-categories/3.png\" url_2=\"http://factual.com\" is_open_new_tab_2=\"yes\" title_3=\"Kippa\" image_3=\"product-categories/5.png\" url_3=\"https://kippa.africa/\" is_open_new_tab_3=\"no\" title_4=\"PlaceIQ\" image_4=\"product-categories/8.png\" url_4=\"https://www.placeiq.com/\" is_open_new_tab_4=\"no\" image_5=\"product-categories/10.png\" url_5=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_5=\"no\" title_6=\"Versed\" image_6=\"product-categories/12.png\" url_6=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_6=\"no\" style=\"style-2\"][/featured-brands]</div><div>[business-statistics title=\"Our app is great for individuals, startups and enterprises. It have never been easier to manage your finances\" subtitle=\"Why using our app\" description=\"Eos eveniet nesciunt et accusamus suscipit est magnam consequatur aut quisquam perferendis a reprehenderit quis aut voluptatem repellat est beatae reiciendis? Cum omnis corrupti cum incidunt veritatis vel libero provident aut reiciendis animi ut quod quaerat et velit animi et omnis illo. Sit quae harum eos incidunt sequi eum iste fugit ex omnis aliquam a explicabo quam.\" image_1=\"general/chart.png\" image_2=\"general/chart1.png\" image_3=\"general/chart2.png\" testimonial_ids=\"1,3\" quantity=\"3\" title_1=\"Project Done\" data_1=\"592\" unit_1=\"+\" title_2=\"Social followers\" data_2=\"242\" unit_2=\"K\" title_3=\"Happy Clients\" data_3=\"12\" unit_3=\"K+\"][/business-statistics]</div><div>[everything-will-become-one title=\"Everything will become One\" subtitle=\"Iori Platformlets you take control of your money, balance your income and expenses, and understand where your money goes.\" image=\"general/phone-app.png\" quantity=\"8\" title_1=\"Total control\" image_1=\"icons/icon1.png\" description_1=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus malesuada felis eget finibus placerat. Aliquam sit amet vestibulum felis, sit amet porta neque\" title_2=\"Rapid experimentation\" image_2=\"icons/icon2.png\" description_2=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus malesuada felis eget finibus placerat. Aliquam sit amet vestibulum felis, sit amet porta neque\" title_3=\"Secure transfer\" image_3=\"icons/icon3.png\" description_3=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus malesuada felis eget finibus placerat. Aliquam sit amet vestibulum felis, sit amet porta neque\" title_4=\"Activity statistics\" image_4=\"icons/icon4.png\" description_4=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus malesuada felis eget finibus placerat. Aliquam sit amet vestibulum felis, sit amet porta neque\" title_5=\"Track your spending\" image_5=\"icons/icon5.png\" description_5=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus malesuada felis eget finibus placerat. Aliquam sit amet vestibulum felis, sit amet porta neque\" title_6=\"Fast Response\" image_6=\"icons/icon6.png\" description_6=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus malesuada felis eget finibus placerat. Aliquam sit amet vestibulum felis, sit amet porta neque\" title_7=\"AI automation\" image_7=\"icons/icon7.png\" description_7=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus malesuada felis eget finibus placerat. Aliquam sit amet vestibulum felis, sit amet porta neque\" title_8=\"Budget that works\" image_8=\"icons/icon8.png\" description_8=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus malesuada felis eget finibus placerat. Aliquam sit amet vestibulum felis, sit amet porta neque\"][/everything-will-become-one]</div><div>[featured-services title=\"Why You Should Consider Installing\" subtitle=\"We’re lively, not corporate. We have the energy and boldness of a startup and the expertise and pragmatism of a scale-up. All in one place.\" quantity=\"4\" title_1=\"Connected\" description_1=\"We come together wherever we are – across time zones, regions, offices and screens. You will receive support from your teammates anytime and anywhere.\" image_1=\"icons/free.png\" action_1=\"/contact\" title_2=\"Inclusive\" description_2=\"Our teams reflect the rich diversity of our world, with equitable access to opportunity for everyone. No matter where you come from\" image_2=\"icons/cross-platform.png\" action_2=\"/contact\" title_3=\"Flexible\" description_3=\"We believe in your freedom to work when and how you work best, to help us all thrive. Only freedom and independent work can bring out the best in you.\" image_3=\"icons/identity.png\" action_3=\"/contact\" title_4=\"Persuasion\" description_4=\"Knowing that there is real value to be gained from helping people to simplify whatever it is that they do and bring.\" image_4=\"icons/persuasion.png\" action_4=\"/contact\" style=\"style-3\"][/featured-services]</div><div>[testimonials title=\"What our customers are saying\" subtitle=\"Hear from our users who have saved thousands on their Startup and SaaS solution spend.\" limit=\"5\" style=\"style-6\"][/testimonials]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(9,'Homepage 9','<div>[hero-banner title=\"Promotes your business no matter what you do\" subtitle=\"Get Started\" youtube_video_url=\"https://www.youtube.com/watch?v=v2qeqkKgw7U\" description=\"Collaborate, plan projects and manage resources with powerful features that your whole team can use. The latest news, tips and advice to help you run your business with less fuss. banner_primary=\"general/banner-homepage-9.png\" button_youtube_label=\"Play video\" customer_ids=\"2,4,5,7,9\" customer_description=\"Join thousands of users in using the iori platform!\" quantity=\"3\" title_1=\"Unlimited design & dev requests\" title_2=\"No Card. No Contract. Cancel anytime\" title_3=\"Monthly flat-rate. Support 24/7\" style=\"style-9\"][/hero-banner]</div><div>[technology-block title=\"Crafting human connection through digital experience\" description=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" block_left_title=\"Social Media Platform\" block_left_description=\"Manage your media channels professionally and efficiently. Real-time and automatic reporting system.\" google_play_logo=\"general/google.png\" google_play_url=\"https://play.google.com/store\" apple_store_logo=\"general/apple.png\" apple_store_url=\"https://www.apple.com/vn/app-store/\" block_left_image=\"general/social-homepage.png\" block_right_title=\"Automated Platform\" block_right_description=\"Synchronize and automate all your business in the cloud. Save time and effort, enjoy great vacations.\" button_label=\"Get Started Now\" button_url=\"/contact\" block_right_image=\"general/platform-social.png\"][/technology-block]</div><div>[branding-block title=\"Business can also be simple\" subtitle=\"Automatic Tools\" description=\"Access advanced order types including limit, market, stop limit and dollar cost averaging. Track your total asset holdings, values and equity over time. Monitor markets, manage your portfolio, and trade crypto on the go.\" image=\"general/image-branding.png\" logo=\"general/testimonial.png\" button_primary_label=\"Help Center\" button_primary_url=\"/contact\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\" counter_title=\"Happy Clients\" counter_data=\"25\" counter_unit=\"K+\" quantity=\"6\" title_1=\"Task tracking\" title_2=\"Task visualization\" title_3=\"Meet deadlines faster\" title_4=\"Create task dependencies\" title_5=\"hare files, discuss\" title_6=\"Track time spent on each project\" style=\"style-3\"][/branding-block]</div><div>[marketing-features title=\"Take your social media marketing prowess to the next level\" quantity=\"6\" title_1=\"Cross-Platform\" icon_image_1=\"icons/cross-platform.png\" description_1=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_1=\"Learn More\" url_1=\"/contact\" type_1=\"enterprise\" title_2=\"Social Media\" icon_image_2=\"icons/cross-platform.png\" description_2=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe\" label_2=\"Learn More\" url_2=\"/contact\" type_2=\"personal\" title_3=\"Brand Identity\" icon_image_3=\"icons/social-media.png\" description_3=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_3=\"Learn More\" url_3=\"/contact\" type_3=\"enterprise\" title_4=\"Customer Service\" icon_image_4=\"icons/trial-plan.png\" description_4=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_4=\"Learn More\" url_4=\"/contact\" type_4=\"personal\" title_5=\"Social advertising\" icon_image_5=\"icons/standard.png\" description_5=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_5=\"Learn More\" url_5=\"/contact\" type_5=\"personal\" title_6=\"Content creation\" icon_image_6=\"icons/business.png\" description_6=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" label_6=\"Learn More\" url_6=\"/contact\" type_6=\"enterprise\"][/marketing-features]</div><div>[featured-brands title=\"Loved By Developers, Trusted By Enterprises\" subtitle=\"We helped these brands turn online assessments into success stories. Join them. Elevate your testing.\" quantity=\"6\" title_1=\"Cuebia\" image_1=\"product-categories/2.png\" url_1=\"https://www.cuebiq.com/\" is_open_new_tab_1=\"yes\" title_2=\"Factual\" image_2=\"product-categories/3.png\" url_2=\"http://factual.com\" is_open_new_tab_2=\"yes\" title_3=\"Kippa\" image_3=\"product-categories/5.png\" url_3=\"https://kippa.africa/\" is_open_new_tab_3=\"no\" title_4=\"PlaceIQ\" image_4=\"product-categories/8.png\" url_4=\"https://www.placeiq.com/\" is_open_new_tab_4=\"no\" image_5=\"product-categories/10.png\" url_5=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_5=\"no\" title_6=\"Versed\" image_6=\"product-categories/12.png\" url_6=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_6=\"no\" style=\"style-6\"][/featured-brands]</div><div>[banner-with-newsletter-form title=\"Start for free Pay as you Grow\" subtitle=\"Get Started\" description=\"Collaborate, plan projects and manage resources with powerful features that your whole team can use. The latest news, tips and advice to help you run your business with less fuss.\" show_newsletter_form=\"0,1\" subtitle_platform=\"Available on\" google_play_logo=\"general/google.png\" google_play_url=\"https://play.google.com/store\" apple_store_logo=\"general/apple.png\" apple_store_url=\"https://www.apple.com/store\" button_url=\"/contact\" button_label=\"Learn more\"][/banner-with-newsletter-form]</div><div>[faqs title=\"Frequently asked questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\" faq_category_ids=\"1,2,3,4\" style=\"style-3\" quantity=\"1\"][/faqs]</div><div>[featured-services quantity=\"3\" title_1=\"Knowledge Base\" description_1=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_1=\"icons/knowledge.png\" action_1=\"/contact\" label_1=\"Get Started\" title_2=\"Community Forums\" description_2=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_2=\"icons/forums.png\" action_2=\"/contact\" label_2=\"Get Started\" title_3=\"Documentation\" description_3=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_3=\"icons/document.png\" action_3=\"/contact\" label_3=\"Get Started\"][/featured-services]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(10,'Homepage 10','<div>[hero-banner-with-site-statistics title=\"We Are Leading Digital University\" description=\"Enable highly motivating non-cash micropayments and offer in-demand prepaid solutions – with a single connection.\" banner_image=\"general/banner-homepage-10.png\" button_primary_url=\"https://play.google.com/store\" button_primary_label=\"Download App\" button_secondary_url=\"/contact\" button_secondary_label=\"Lean More\" quantity=\"4\" title_1=\"Social followers\" data_1=\"469\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"25\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"756\" unit_3=\"+\" title_4=\"Global branch\" data_4=\"100\" unit_4=\"+\"][/hero-banner-with-site-statistics]</div><div>[explore-network title=\"Ready to capture every wonderful moment\" subtitle=\"EXPLORE NETWORK\" quantity=\"4\" key_1=\"Digital Cameras\" title_1=\" Integrate with over 1,000 project management apps\" subtitle_1=\"Business\" description_1=\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book\" image_1=\"general/img-tab-1.png\" checklists_1=\"Task tracking,Create task dependencies,Task visualization,hare files, discuss\" key_2=\"Mirrorless Camera\" title_2=\"Integrate with over 1,000 project management apps\" subtitle_2=\"Business\" description_2=\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book\" image_2=\"general/img-tab-2.png\" checklists_2=\"Task tracking,Create task dependencies,Task visualization\" key_3=\"Travel Camera\" title_3=\"Integrate with over 1,000 project management apps\" subtitle_3=\"Business\" description_3=\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book\" image_3=\"general/img-tab-3.png\" checklists_3=\"Task tracking,Create task dependencies,Task visualization\" key_4=\"Camera Flashes\" title_4=\"Integrate with over 1,000 project management apps\" subtitle_4=\"Business\" description_4=\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book\" image_4=\"general/img-tab-4.png\" checklists_4=\"Task tracking,Create task dependencies,Task visualization\"][/explore-network]</div><div>[featured-brands title=\"Loved By Developers, Trusted By Enterprises\" subtitle=\"We helped these brands turn online assessments into success stories. Join them. Elevate your testing.\" quantity=\"6\" title_1=\"Cuebia\" image_1=\"product-categories/2.png\" url_1=\"https://www.cuebiq.com/\" is_open_new_tab_1=\"yes\" title_2=\"Factual\" image_2=\"product-categories/3.png\" url_2=\"http://factual.com\" is_open_new_tab_2=\"yes\" title_3=\"Kippa\" image_3=\"product-categories/5.png\" url_3=\"https://kippa.africa/\" is_open_new_tab_3=\"no\" title_4=\"PlaceIQ\" image_4=\"product-categories/8.png\" url_4=\"https://www.placeiq.com/\" is_open_new_tab_4=\"no\" image_5=\"product-categories/10.png\" url_5=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_5=\"no\" title_6=\"Versed\" image_6=\"product-categories/12.png\" url_6=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_6=\"no\" style=\"style-5\"][/featured-brands]</div><div>[branding-block title=\"Build your brand and reach out to social followers\" subtitle=\"Branding\" description=\"Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally, what you create, share or react to feeds into this public narrative. How you conduct yourself online is now just as important as your behavior offline especially when it comes to your digital marketing career.\" image=\"general/branding-img-1.png\" logo=\"general/branding-img-2.png\" button_primary_label=\"Download App\" button_primary_url=\"https://play.google.com/store\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\" quantity=\"6\" title_1=\"Send & Schedule Posts\" title_2=\"Send & Schedule Posts\" title_3=\"Create fully integrated campaigns\" title_4=\"Push Notification\" title_5=\"Online Visitors\" title_6=\"Directly send or schedule posts\" style=\"style-4\"][/branding-block]</div><div>[pricing-plan title=\"Finger Choose The Best Plan\" subtitle=\"Pick your plan. Change whenever you want. No switching fees between packages\" icon_image=\"icons/bg-plan.png\" button_secondary_label=\"Compare Plans\" button_secondary_url=\"pricing\" style=\"style-1\" package_ids=\"1,2,3,4\"][/pricing-plan]</div><div>[testimonials title=\"What our customers are saying\" subtitle=\"Hear from our users who have saved thousands on their Startup and SaaS solution spend\" image=\"general/customer.png\" limit=\"4\" style=\"style-2\"][/testimonials]</div><div>[intro-video title=\"Integrate with over 1,000 project management apps\" image=\"general/intro-video.png\" tag=\"Business\" youtube_video_url=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" icon_image=\"icons/bg-plan.png\"][/intro-video]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(11,'Homepage 11','<div>[banner-slider google_play_logo=\"general/google.png\" google_play_url=\"https://play.google.com/store\" apple_store_logo=\"general/apple.png\" apple_store_url=\"https://www.apple.com/store\" quantity=\"3\" title_1=\"Bring your target users together on social media\" description_1=\"Duis justo nulla, pulvinar at dolor dapibus, finibus cursus massa. Praesent quam diam, faucibus tristique enim in, rhoncus aliquam lorem. Vestibulum vestibulum pellentesque nunc sit amet ullamcorper. Praesent ligula felis\" image_1=\"general/hero-1.png\" title_2=\"Let’s make something great together.\" description_2=\"Duis justo nulla, pulvinar at dolor dapibus, finibus cursus massa. Praesent quam diam, faucibus tristique enim in, rhoncus aliquam lorem. Vestibulum vestibulum pellentesque nunc sit amet ullamcorper. Praesent ligula felis\" image_2=\"general/hero-2.png\" title_3=\"Use flexible components to build an app quickly\" description_3=\"Duis justo nulla, pulvinar at dolor dapibus, finibus cursus massa. Praesent quam diam, faucibus tristique enim in, rhoncus aliquam lorem. Vestibulum vestibulum pellentesque nunc sit amet ullamcorper. Praesent ligula felis\" image_3=\"general/hero-3.png\"][/banner-slider]</div><div>[site-statistics title=\"See why we are trusted the world over\" description=\"Et quaerat deserunt et numquam voluptatem et laborum consectetur non consequatur temporibus ea repellat nihil vel consectetur dolores et rerum voluptas. Nam voluptas reiciendis non laborum perspiciatis eum omnis cumque ab impedit earum ex quos porro sit dolorem cupiditate ut ducimus autem.\" quantity=\"4\" title_1=\"Social followers\" data_1=\"469\" unit_1=\"K\" title_2=\"Happy Clients\" data_2=\"255\" unit_2=\"K+\" title_3=\"Project Done\" data_3=\"756\" unit_3=\"K\" title_4=\"Global branch\" data_4=\"120\" style=\"style-2\"][/site-statistics]</div><div>[services title=\"What We Offer\" subtitle=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" service_ids=\"1,2,3,4,5,6\" style=\"style-4\"][/services]</div><div>[dual-intro-video quantity=\"2\" title_1=\" Integrate with over 1,000 project management apps\" subtitle_1=\"Business\" description_1=\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\" image_1=\"general/intro-video.png\" youtube_video_url_1=\"https://www.youtube.com/watch?v=yCh9OVLI0SU\" button_label_1=\"Play video\" title_2=\"Integrate with over 1,000 project management apps\" subtitle_2=\"Business\" description_2=\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\" image_2=\"general/intro-video.png\" youtube_video_url_2=\"https://www.youtube.com/watch?v=yCh9OVLI0SU\" button_label_2=\"Play video\"][/dual-intro-video]</div><div>[testimonials title=\"What our loving users are saying about us\" limit=\"5\" style=\"style-5\"][/testimonials]</div><div>[faqs title=\"Frequently asked questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\" faq_category_ids=\"1,2,3,4\" style=\"style-3\" quantity=\"1\"][/faqs]</div><div>[featured-services quantity=\"3\" title_1=\"Payment\" description_1=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_1=\"icons/payment.png\" action_1=\"/contact\" label_1=\"Learn More\" title_2=\"Save money\" description_2=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_2=\"icons/money.png\" action_2=\"/contact\" label_2=\"Learn More\" title_3=\"Quick support\" description_3=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_3=\"icons/support.png\" action_3=\"/contact\" label_3=\"Learn More\" style=\"style-2\"][/featured-services]</div><div>[teams title=\"Meet the amazing team behind Iori\" subtitle=\"Our leadership team\" team_ids=\"1,2,3,5\"][/teams]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(12,'Homepage 12','<div>[hero-banner title=\" Think. Creative. Solve Innovative Solution to Move Your Business Forward\" subtitle=\"Think. Creative. Solve\" description=\"Collaborate, plan projects and manage resources with powerful features that your whole team can use. The latest news, tips and advice to help you run your business with less fuss.\" banner_primary=\"general/members.png\" quantity=\"6\" style=\"style-10\"][/hero-banner]</div><div>[featured-brands title=\"Loved By Developers, Trusted By Enterprises\" subtitle=\"We helped these brands turn online assessments into success stories. Join them. Elevate your testing.\" quantity=\"6\" title_1=\"Cuebia\" image_1=\"product-categories/2.png\" url_1=\"https://www.cuebiq.com/\" is_open_new_tab_1=\"yes\" title_2=\"Factual\" image_2=\"product-categories/3.png\" url_2=\"http://factual.com\" is_open_new_tab_2=\"yes\" title_3=\"Kippa\" image_3=\"product-categories/5.png\" url_3=\"https://kippa.africa/\" is_open_new_tab_3=\"no\" title_4=\"PlaceIQ\" image_4=\"product-categories/8.png\" url_4=\"https://www.placeiq.com/\" is_open_new_tab_4=\"no\" image_5=\"product-categories/10.png\" url_5=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_5=\"no\" title_6=\"Versed\" image_6=\"product-categories/12.png\" url_6=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_6=\"no\" style=\"style-7\"][/featured-brands]</div><div>[connect-with-us title=\"Crafting human connection through digital experience\" description=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den. Professional in their craft! All products were super amazing with strong attention to details, comps and overall vibe.\" button_label=\"Contact us\" button_url=\"/contact\" quantity=\"3\" title_1=\"Cross Platform\" image_1=\"general/human1.png\" description_1=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den\" title_2=\"Cross Platform\" image_2=\"general/human2.png\" description_2=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den.\" title_3=\"Cross Platform\" image_3=\"general/human3.png\" description_3=\"Discover powerful features to boost your productivity. You are always welcome to visit our little den.\"][/connect-with-us]</div><div>[how-to-start title=\"Bring your target users together on social media\" subtitle=\"IORI Business Platform\" image=\"general/banner-how-to-start.png\" image_icon_primary=\"icons/certify.png\" image_icon_secondary=\"icons/fly.png\" style=\"style-2\" quantity=\"3\" title_1=\"Create an account\" description_1=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" title_2=\"Build your founding team\" description_2=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" title_3=\"Launch and Scale\" description_3=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\"][/how-to-start]</div><div>[take-the-control title=\"Create a free account today.\" subtitle=\"Take the control\" image=\"general/account.png\" title_counter=\"Social followers\" data_counter=\"469\" unit_counter=\"K\" quantity=\"2\" title_1=\"Personal\" image_1=\"icons/personal.png\" description_1=\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\" title_2=\"Personal\" image_2=\"icons/building.png\" description_2=\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\"][/take-the-control]</div><div>[step-block title=\"Core values\" subtitle=\"We break down barriers so teams can focus on what matters – working together to create products their customers love.\" button_label=\"Get Started Now\" button_url=\"/contact\" quantity=\"6\" title_1=\"Customers First\" description_1=\"Our company exists to help merchants sell more. We make every decision and measure every outcome based on how well it serves our customers\" title_2=\"Act With Integrity\" description_2=\"We’re honest, transparent and committed to doing what’s best for our customers and our company. We openly collaborate in pursuit of the truth. We have no tolerance for politics, hidden agendas or passive-aggressive behavior.\" title_3=\"Make a Difference Every Day\" description_3=\"Our company exists to help merchants sell more. We make every decision and measure every outcome based on how well it serves our customers.\" title_4=\"Think Big\" description_4=\"Being the world’s leading commerce platform requires unrivaled vision, innovation and execution. We never settle. We challenge our ideas of what’s possible in order to better meet the needs of our customers.\" title_5=\" Do the right thing\" description_5=\"Integrity is the foundation for everything we do. We are admired and respected for our commitment to honesty, trust, and transparency.\" title_6=\"Stronger united\" description_6=\"We’ve created a positive and inclusive culture that fosters open, honest, and meaningful relationships.\"][/step-block]</div><div>[get-in-touch title=\"Want to talk to a marketing expert?\" subtitle=\"Get In Touch\" description=\"You need to create an account to find the best and preferred job. lorem Ipsum is simply dummy text of the printing and typesetting industry the standard dummy text ever took.\" image=\"general/img-marketing.png\" button_primary_label=\"Contact Us\" button_primary_url=\"/contact\" button_secondary_label=\"Support Center\" button_secondary_url=\"/contact\"][/get-in-touch]</div><div>[featured-services quantity=\"3\" title_1=\"Daily Updates\" description_1=\"Share updates instantly within our project management software, and get the entire team collaborating\" image_1=\"icons/sync.png\" action_1=\"/contact\" label_1=\"Learn more\" title_2=\"24/7 Support\" description_2=\"Share updates instantly within our project management software, and get the entire team collaborating\" image_2=\"icons/boat-circle.jpg\" action_2=\"/contact\" label_2=\"Learn more\" title_3=\"Weekly Reports\" description_3=\"Share updates instantly within our project management software, and get the entire team collaborating\" image_3=\"icons/report.png\" action_3=\"/contact\" label_3=\"Learn more\" style=\"style-4\"][/featured-services]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(13,'About Us','<div>[who-are-you title=\"We are a digital agency that tackles all your online challenges.\" subtitle=\"Who we are\" description=\"Social media networks are open to all. Social media is typically used for social interation and access to news and information, and decision making.\" quantity=\"5\" title_1=\"Social followers\" image_1=\"icons/identity.png\" data_1=\"469\" unit_1=\"K+\" title_2=\"Happy Clients\" image_2=\"icons/cross-platform.png\" data_2=\"25\" unit_2=\"K+\" title_3=\"Project Done\" image_3=\"icons/conference.png\" data_3=\"756\" unit_3=\"+\" title_4=\"Global branch\" image_4=\"icons/certification.png\" data_4=\"100\" unit_4=\"+\" title_5=\"Conference\" image_5=\"icons/dispersal.png\" data_5=\"240\" unit_5=\"+\"][/who-are-you]</div><div>[testimonials limit=\"2\" style=\"style-4\"][/testimonials]</div><div>[information title=\" Core values\" subtitle=\"We break down barriers so teams can focus on what matters – working together to create products their customers love.\" quantity=\"6\" title_1=\"Customers First\" description_1=\"Our company exists to help merchants sell more. We make every decision and measure every outcome based on how well it serves our customers.\" title_2=\"Act With Integrity\" description_2=\"We’re honest, transparent and committed to doing what’s best for our customers and our company. We openly collaborate in pursuit of the truth. We have no tolerance for politics, hidden agendas or passive-aggressive behavior.\" title_3=\" Make a Difference Every Day\" description_3=\"Our company exists to help merchants sell more. We make every decision and measure every outcome based on how well it serves our customers.\" title_4=\"Think Big\" description_4=\"Being the world leading commerce platform requires unrivaled vision, innovation and execution. We never settle. We challenge our ideas of what’s possible in order to better meet the needs of our customers.\" title_5=\"Do the right thing\" description_5=\"Integrity is the foundation for everything we do. We are admired and respected for our commitment to honesty, trust, and transparency.\" title_6=\" Stronger united\" description_6=\"We’ve created a positive and inclusive culture that fosters open, honest, and meaningful relationships.\"][/information]</div><div>[box-story quantity=\"2\" title_1=\"Behind every brand is aninteresting story\" subtitle_1=\"OUR STORY\" description_1=\"Ea nostrum temporibus ex nulla totam qui galisum quae a adipisci modi. In exercitationem culpa sed blanditiis corrupti sit doloremque maxime eos iusto molestiae ex laborum nulla in quas dignissimos 33 dolorum quis.\" image_1=\"general/box-image-1.png\" title_2=\"We have a mission to help businesses grow the best with existing conditions\" subtitle_2=\"OUR MISSION\" description_2=\"Ea nostrum temporibus ex nulla totam qui galisum quae a adipisci modi. In exercitationem culpa sed blanditiis corrupti sit doloremque maxime eos iusto molestiae ex laborum nulla in quas dignissimos 33 dolorum quis. Est dolor autem et voluptate autem id enim optio vel incidunt alias.\" image_2=\"general/box-image-2.png\"][/box-story]</div><div>[teams team_ids=\"1,2,3,4,6\"][/teams]</div><div>[get-in-touch title=\"Want to talk to a marketing expert?\" subtitle=\"Get In Touch\" description=\"You need to create an account to find the best and preferred job. lorem Ipsum is simply dummy text of the printing and typesetting industry the standard dummy text ever took.\" image=\"general/img-marketing.png\" button_primary_label=\"Contact Us\" button_primary_url=\"/contact\" button_secondary_label=\"Support Center\" button_secondary_url=\"/contact\"][/get-in-touch]</div><div>[testimonials title=\"What our clients say about us\" subtitle=\"Testimonials\" description=\"Access advanced order types including limit, market, stop limit and dollar cost averaging. Track your total asset holdings, values and equity over time. Monitor markets, manage your portfolio, and trade crypto on the go.\" limit=\"3\" style=\"style-3\"][/testimonials]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(14,'Blog','<div>[hero-banner title=\"All the important insights, guidance and news you need to know.\" subtitle=\"Keep up-to-date with all our latest company news and business content. The latest news, tips and advice to help you run your business with less fuss\" banner_primary=\"general/banner-blog.png\" style=\"style-4\"][/hero-banner]</div><div>[featured-post title=\"Latest Articles\" category_ids=\"1,2,3,4,5,6\"][/featured-post]</div><div>[post-category title=\"E-Commerce\" category_id=\"1\" limit=\"5\"][/post-category]</div><div>[post-category title=\"Industry Use Cases\" category_id=\"6\" limit=\"5\" style=\"style-2\"][/post-category]</div><div>[post-category title=\"Marketing Strategy\" category_id=\"7\" limit=\"5\"][/post-category]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(15,'Contact','<div>[contact-page-banner title=\"We’d love to hear from you\" subtitle=\"Get in Touch\" description=\"Request a demo, ask a question, or get in touch here. If you’re interested in working at Iori Corporation, check out our {{careers page}}.\" button_label=\"Learn More\" button_url=\"/about-us\" banner=\"general/contact-banner.png\" quantity=\"2\" title_1=\"Appstore\" image_1=\"general/apple.png\" title_2=\"Googleplay\" image_2=\"general/google.png\"][/contact-page-banner]</div><div>[contact-information quantity=\"4\" title_1=\"Help & support\" email_1=\"support@archielite.com\" description_1=\"For help with a current product or service or refer to FAQs and developer tools\" image_1=\"icons/headphone.png\" title_2=\"Call Us\" phone_2=\"(+01) 234 567 89, (+01) 456 789 21\" description_2=\"Call us to speak to a member of our team.\" image_2=\"icons/phone.png\" title_3=\"Business Department\" phone_3=\"(+01) 789 456 23\" description_3=\"Contact the sales department about cooperation projects\" image_3=\"icons/chart-1.png\" title_4=\"Global branch\" phone_4=\"(+01) 456 789 23, (+01) 456 789 23\" description_4=\"Contact us to open our branches globally.\" image_4=\"icons/earth.png\"][/contact-information]</div><div>[contact-form title=\"Get in touch\" subtitle=\"Do you want to know more or contact our sales department?\" title_button=\"Send Message\" quantity=\"3\" heading_1=\"Visit the Knowledge Base\" description_1=\"Browse customer support articles and step-by-step instructions for specific features.\" icon_1=\"icons/img1.png\" heading_2=\"Watch Product Videos\" description_2=\"Watch our video tutorials for visual walkthrough on how to use our features.\" icon_2=\"icons/img2.png\" heading_3=\"Get in touch with Sales\" description_3=\"Let us talk about how we can help your enterprise.\" icon_3=\"icons/img3.png\"][/contact-form]</div><div>[faqs title=\"Frequently asked questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\" button_label=\"Contact Us\" button_url=\"/contact\" button_secondary_label=\"Support Center\" button_secondary_url=\"contact\" faq_category_ids=\"1,2,3,4\" style=\"style-1\" quantity=\"1\"][/faqs]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(16,'Coming Soon','<div>[coming-soon title=\"We are coming soon\" subtitle=\"Under Construction\" description=\"Our design projects are fresh and simple and will benefit your business greatly. Learn more about our work!\" time=\"2025-05-19\" enable_snow_effect=\"0\" background_image=\"icons/coming-soon.png\"][/coming-soon]</div><div>[contact-information quantity=\"4\" title_1=\"Help & support\" email_1=\"support@archielite.com\" description_1=\"For help with a current product or service or refer to FAQs and developer tools\" image_1=\"icons/headphone.png\" title_2=\"Call Us\" phone_2=\"(+01) 234 567 89, (+01) 456 789 21\" description_2=\"Call us to speak to a member of our team.\" image_2=\"icons/phone.png\" title_3=\"Business Department\" phone_3=\"(+01) 789 456 23\" description_3=\"Contact the sales department about cooperation projects\" image_3=\"icons/chart-1.png\" title_4=\"Global branch\" phone_4=\"(+01) 456 789 23, (+01) 456 789 23\" description_4=\"Contact us to open our branches globally.\" image_4=\"icons/earth.png\"][/contact-information]</div>',1,NULL,'default',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(17,'Services','<div>[hero-banner title=\"Advanced analytics to grow your business\" subtitle=\"Available on\" description=\"Collaborate, plan projects and manage resources with powerful features that your whole team can use. The latest news, tips and advice to help you run your business with less fuss.\" banner_primary=\"general/banner-services.png\" platform_google_play_logo=\"general/google.png\" platform_google_play_url=\"https://play.google.com/store/\" platform_apple_store_logo=\"general/apple.png\" platform_apple_store_url=\"https://apps.apple.com/vn/app/apple-store\" quantity=\"6\" style=\"style-11\"][/hero-banner]</div><div>[services title=\"What We Offer\" subtitle=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" button_primary_label=\"Download App\" button_primary_url=\"https://www.apple.com/sg/app-store/\" button_secondary_label=\"Learn more\" button_secondary_url=\"contact\" service_ids=\"1,2,3,4,5,6\" style=\"style-3\"][/services]</div><div>[branding-block title=\"Business can also be simple\" subtitle=\"Automatic Tools\" description=\"Access advanced order types including limit, market, stop limit and dollar cost averaging. Track your total asset holdings, values and equity over time. Monitor markets, manage your portfolio, and trade crypto on the go.\" image=\"general/brand-services-1.png\" image_1=\"general/brand-services-2.png\" image_2=\"general/brand-services-3.png\" logo=\"general/testimonial1.png\" button_primary_label=\"Download App\" button_primary_url=\"https://play.google.com/store\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\" counter_title=\"Happy Clients\" counter_data=\"25\" counter_unit=\"K+\" counter_title_1=\"Social followers\" counter_data_1=\"125\" counter_unit_1=\"K\" quantity=\"6\" title_1=\"Task tracking\" title_2=\"Task visualization\" title_3=\"Meet deadlines faster\" title_4=\"Create task dependencies\" title_5=\"hare files, discuss\" title_6=\"Track time spent on each project\" style=\"style-5\"][/branding-block]</div><div>[pricing-plan title=\"Choose The Best Plan\" subtitle=\"Pick your plan. Change whenever you want. No switching fees between packages\" icon_image=\"icons/bg-plan.png\" button_primary_label=\"Contact Us\" button_primary_url=\"/contact\" button_secondary_label=\"Compare Plans\" button_secondary_url=\"/pricing\" style=\"style-2\" package_ids=\"1,2,3,4\"][/pricing-plan]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(18,'Help Center','<div>[banner-hero-with-search title=\"How can we help you?\" subtitle=\"Support Center\" suggested=\"guest users, create account, invoice, security\" description=\"Search here to get answers to your questions\" image_1=\"general/banner-help-center-1.png\" image_2=\"general/banner-help-center-2.png\"][/banner-hero-with-search]</div><div>[featured-services quantity=\"3\" title_1=\"Knowledge Base\" description_1=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_1=\"icons/document.png\" action_1=\"/contact\" label_1=\"Get Started\" title_2=\"Community Forums\" description_2=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_2=\"icons/forums.png\" action_2=\"/contact\" label_2=\"Get Started\" title_3=\"Documentation\" description_3=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus\" image_3=\"icons/knowledge.png\" action_3=\"/contact\" label_3=\"Get Started\"][/featured-services]</div><div>[services title=\"What We Offer\" subtitle=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" button_primary_label=\"Download App\" button_primary_url=\"https://www.apple.com/sg/app-store/\" button_secondary_label=\"Learn more\" button_secondary_url=\"contact\" service_ids=\"1,2,3,4,5,6\" style=\"style-3\"][/services]</div><div>[from-community-forums title=\"From Community Forums\" subtitle=\"Updated on September 24, 2023\" quantity=\"6\" title_1=\" Announcements\" description_1=\"Seamless importing and round-tripping of Microsoft Project plans, Excel files & CSV files.\" image_1=\"icons/cross-platform.png\" topics_1=\"3\" comments_1=\"16\" account_1=\"1\" title_2=\"iori User Feedback\" description_2=\"Seamless importing and round-tripping of Microsoft Project plans, Excel files & CSV files.\" image_2=\"icons/creation.png\" topics_2=\"3\" comments_2=\"19\" account_2=\"3\" title_3=\"Technology support center\" description_3=\"Seamless importing and round-tripping of Microsoft Project plans, Excel files & CSV files.\" image_3=\"icons/cross-platform.png\" topics_3=\"5\" comments_3=\"9\" account_3=\"1\" title_4=\" Product Support\" description_4=\"Seamless importing and round-tripping of Microsoft Project plans, Excel files & CSV files.\" image_4=\"icons/cross-platform.png\" topics_4=\"5\" comments_4=\"7\" account_4=\"3\" title_5=\" Cognitive Solution\" description_5=\"Seamless importing and round-tripping of Microsoft Project plans, Excel files & CSV files.\" image_5=\"icons/cross-platform.png\" topics_5=\"6\" comments_5=\"2\" account_5=\"4\" title_6=\"Market research\" description_6=\"Seamless importing and round-tripping of Microsoft Project plans, Excel files & CSV files.\" image_6=\"icons/certification.png\" topics_6=\"2\" comments_6=\"1\" account_6=\"5\"][/from-community-forums]</div><div>[get-in-touch title=\"Can’t find an answer?\" subtitle=\"More help\" description=\"Make use of a qualified tutor to get the answer\" image=\"general/answer.png\" button_primary_label=\"Asked a Question\" button_primary_url=\"/help-center\" button_secondary_label=\"Contact Us\" button_secondary_url=\"/contact\"][/get-in-touch]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(19,'Pricing','<div>[pricing-plan title=\"Finger Choose The Best Plan\" subtitle=\"Pick your plan. Change whenever you want. No switching fees between packages\" icon_image=\"icons/bg-plan.png\" button_secondary_label=\"Compare Plans\" button_secondary_url=\"pricing\" style=\"style-1\" package_ids=\"1,2,3,4\"][/pricing-plan]</div><div>[compare-plans quantity=\"6\" title_1=\"Requests Quota\" free_1=\"50k Requests/Day\" standard_1=\"100k Requests/Day\" business_1=\"500k Requests/Day\" enterprise_1=\"Unlimited\" title_2=\"Account Acess\" free_2=\"35\" standard_2=\"85\" business_2=\"120\" enterprise_2=\"Unlimited\" title_3=\"Service Analystic\" business_3=\"true\" enterprise_3=\"true\" title_4=\"Achive Nodes\" business_4=\"true\" enterprise_4=\"true\" title_5=\"Enriched APIs\" business_5=\"true\" title_6=\"Rosetta APIs\" business_6=\"true\" enterprise_6=\"true\"][/compare-plans]</div><div>[featured-services quantity=\"3\" title_1=\"Daily Updates\" description_1=\"Share updates instantly within our project management software, and get the entire team collaborating\" image_1=\"icons/sync.png\" action_1=\"/contact\" label_1=\"Learn more\" title_2=\"24/7 Support\" description_2=\"Share updates instantly within our project management software, and get the entire team collaborating\" image_2=\"icons/boat-circle.jpg\" action_2=\"/contact\" label_2=\"Learn more\" title_3=\"Weekly Reports\" description_3=\"Share updates instantly within our project management software, and get the entire team collaborating\" image_3=\"icons/report.png\" action_3=\"/contact\" label_3=\"Learn more\" style=\"style-4\"][/featured-services]</div><div>[faqs title=\"Frequently asked questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\" button_primary_label=\"Contact Us\" button_primary_url=\"contact\" button_secondary_label=\"Support Center\" button_secondary_url=\"contact\" image=\"general/bg-faqs.png\" faq_category_ids=\"1,2,3,4\"][/faqs]</div><div>[testimonials title=\"What our customers are saying\" subtitle=\"Hear from our users who have saved thousands on their Startup and SaaS solution spend.\" limit=\"5\" style=\"style-6\"][/testimonials]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(20,'Teams','<div>[banner-hero-with-teams title=\"Customers Love Our Creative Team, and So Will You\" description=\"“Highly recommend Iori Agency! They guide us on marketing initiatives and develop great strategies to increase our return on investment. The agency is excellent at being cooperative and responding quickly.”\" button_primary_label=\"Contact Us\" button_primary_url=\"/contact\" button_secondary_label=\"Support Center\" button_secondary_url=\"/contact\" team_ids=\"1,2,3,4,5\" style=\"style-2\"][/banner-hero-with-teams]</div><div>[featured-brands quantity=\"6\" title_1=\"Cuebia\" image_1=\"product-categories/2.png\" url_1=\"https://www.cuebiq.com/\" is_open_new_tab_1=\"yes\" title_2=\"Factual\" image_2=\"product-categories/3.png\" url_2=\"http://factual.com\" is_open_new_tab_2=\"yes\" title_3=\"Kippa\" image_3=\"product-categories/5.png\" url_3=\"https://kippa.africa/\" is_open_new_tab_3=\"no\" title_4=\"PlaceIQ\" image_4=\"product-categories/8.png\" url_4=\"https://www.placeiq.com/\" is_open_new_tab_4=\"no\" image_5=\"product-categories/10.png\" url_5=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_5=\"no\" title_6=\"Versed\" image_6=\"product-categories/12.png\" url_6=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_6=\"no\" style=\"style-3\"][/featured-brands]</div><div>[teams title=\"Meet the amazing team behind Iori\" subtitle=\"Our leadership team\" team_ids=\"1,2,3,5\"][/teams]</div><div>[board-members title=\"Together we are strong\" subtitle=\"Board members\" team_ids=\"6,7,8,9\"][/board-members]</div><div>[have-a-question title=\"Have a question? Our team is happy to help you\" description=\"Access advanced order types including limit, market, stop limit and dollar cost averaging. Track your total asset holdings, values and equity over time. Monitor markets, manage your portfolio, and trade crypto on the go.\" image_1=\"general/question1.png\" image_2=\"general/question2.png\" image_3=\"general/question3.png\" button_primary_label=\"Contact Us\" button_primary_url=\"/contact\" button_secondary_label=\"Learn more\" button_secondary_url=\"/contact\"][/have-a-question]</div><div>[step-block title=\"Core values\" subtitle=\"We break down barriers so teams can focus on what matters – working together to create products their customers love.\" button_label=\"JOIN OUR TEAM TODAY\" button_url=\"/contact\" quantity=\"6\" title_1=\"Customers First\" description_1=\"Our company exists to help merchants sell more. We make every decision and measure every outcome based on how well it serves our customers\" title_2=\"Act With Integrity\" description_2=\"We’re honest, transparent and committed to doing what’s best for our customers and our company. We openly collaborate in pursuit of the truth. We have no tolerance for politics, hidden agendas or passive-aggressive behavior.\" title_3=\"Make a Difference Every Day\" description_3=\"Our company exists to help merchants sell more. We make every decision and measure every outcome based on how well it serves our customers.\" title_4=\"Think Big\" description_4=\"Being the world’s leading commerce platform requires unrivaled vision, innovation and execution. We never settle. We challenge our ideas of what’s possible in order to better meet the needs of our customers.\" title_5=\" Do the right thing\" description_5=\"Integrity is the foundation for everything we do. We are admired and respected for our commitment to honesty, trust, and transparency.\" title_6=\"Stronger united\" description_6=\"We’ve created a positive and inclusive culture that fosters open, honest, and meaningful relationships.\"][/step-block]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(21,'Term and Conditions','<div>[term-and-conditions title=\"Terms and Conditions\" subtitle=\"Amet nulla facilisi morbi tempus iaculis urna\" image=\"general/banner-term-and-conditions.png\" quantity=\"10\" title_1=\"Limitation of Liability\" description_1=\"Under no circumstances shall Archi Elite be liable for any direct, indirect, special, incidental or consequential damages, including, but not limited to, loss of data or profit, arising out of the use, or the inability to use, the materials on this site, even if Archi Elite or an authorized representative has been advised of the possibility of such damages. If your use of materials from this site results in the need for servicing, repair or correction of equipment or data, you assume any costs thereof.\" title_2=\"Licensing Policy\" description_2=\"Archi e WordPress plugins and themes are released under the GNU General Public License v2 or later. Please refer to licensing policy page for licensing details.\" title_3=\"Product Compatibility\" description_3=\"The products are developed to be compatible with the latest version of WordPress because we always strive to stay up-to-date with the latest version of WordPress. You might experience certain performance or functionality glitches with the products if you use any version prior to that.\" title_4=\"Delivery\" description_4=\"Your purchased product(s) information will be emailed to the email address (that you will provide) once we receive your payment. Even though this usually takes a few minutes, it may also take up to 24 hours. You can contact us through our contact page if you do not receive your email after waiting for this time period. You will also have access to your purchased products from your account in Archi Elite after logging in.\" title_5=\"Ownership\" description_5=\"All the products are the property of Archi Elite. So you may not claim ownership (intellectual or exclusive) over any of our products, modified or unmodified. Our products come ‘as is’, without any kind of warranty, either expressed or implied. Under no circumstances can our juridical person be accountable for any damages including, but not limited to, direct, indirect, special, incidental or consequential damages or other losses originating from the employment of or incapacity to use our products.\" title_6=\"Browser Compatibility\" description_6=\"We consider it our duty to offer a great experience across most major browsers, which is why our products support the latest modern web browsers including (but not limited to) Firefox, Safari, Chrome & Internet Explorer 9+. However, the performance may vary between different browsers, versions, and operating systems.\" title_7=\"Updates\" description_7=\"Our themes are constantly updated to be compatible with the latest stable version of WordPress. Please ensure that you always use the most current version of our themes.\" title_8=\"Theme Support\" description_8=\"Please refer to Help and Support Policy page for details.\" title_9=\"Price Changes\" description_9=\"Reserves the right to modify or suspend (temporarily or permanently) a subscription at any point of time and from time to time with or without any notice.\" title_10=\"Refund Policy\" description_10=\"Please refer to Refund Policy page for details.\"][/term-and-conditions]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(22,'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,'page-detail',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(23,'Privacy policy','<h3>EU Privacy policy</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,'page-detail',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(24,'Career Listing','<div>[career-banner title="We’re Always Searching For <br> Amazing People to Join Our Team." subtitle="Take a look at our current openings" image="general/banner-career.png" logo="general/certify.png"][/career-banner]</div><div>[featured-services title=\"Why You Should Consider Applying\" subtitle=\"We`re lively, not corporate. We have the energy and boldness of a startup and the expertise and pragmatism of a scale-up. All in one place.\" quantity=\"4\" title_1=\"Connected\" description_1=\"We come together wherever we are – across time zones, regions, offices and screens. You will receive support from your teammates anytime and anywhere.\" image_1=\"icons/free.png\" action_1=\"/contact\" title_2=\"Inclusive\" description_2=\"Our teams reflect the rich diversity of our world, with equitable access to opportunity for everyone. No matter where you come from\" image_2=\"icons/cross-platform.png\" action_2=\"/contact\" title_3=\"Flexible\" description_3=\"We believe in your freedom to work when and how you work best, to help us all thrive. Only freedom and independent work can bring out the best in you.\" image_3=\"icons/identity.png\" action_3=\"/contact\" title_4=\"Persuasion\" description_4=\"Knowing that there is real value to be gained from helping people to simplify whatever it is that they do and bring.\" image_4=\"icons/persuasion.png\" action_4=\"/contact\" style=\"style-3\"][/featured-services]</div><div>[career-list title="Career Opportunities" subtitle="Explore our open roles for working totally remotely, from the <br> office or somewhere in between." button_primary_label="Contact Us" button_primary_url="/contact" button_secondary_label="Learn More" button_secondary_url="/job-listing" career_ids="1,2,3,4,5,6"][/career-list]</div><div>[step-block title=\"Core values\" subtitle=\"We break down barriers so teams can focus on what matters – working together to create products their customers love.\" button_label=\"Get Started Now\" button_url=\"/contact\" quantity=\"6\" title_1=\"Customers First\" description_1=\"Our company exists to help merchants sell more. We make every decision and measure every outcome based on how well it serves our customers\" title_2=\"Act With Integrity\" description_2=\"We’re honest, transparent and committed to doing what’s best for our customers and our company. We openly collaborate in pursuit of the truth. We have no tolerance for politics, hidden agendas or passive-aggressive behavior.\" title_3=\"Make a Difference Every Day\" description_3=\"Our company exists to help merchants sell more. We make every decision and measure every outcome based on how well it serves our customers.\" title_4=\"Think Big\" description_4=\"Being the world’s leading commerce platform requires unrivaled vision, innovation and execution. We never settle. We challenge our ideas of what’s possible in order to better meet the needs of our customers.\" title_5=\" Do the right thing\" description_5=\"Integrity is the foundation for everything we do. We are admired and respected for our commitment to honesty, trust, and transparency.\" title_6=\"Stronger united\" description_6=\"We’ve created a positive and inclusive culture that fosters open, honest, and meaningful relationships.\"][/step-block]</div><div>[featured-brands title=\"Loved By Developers Trusted By Enterprises\" subtitle=\"We helped these brands turn online assessments into success stories.\" quantity=\"6\" title_1=\"Cuebia\" image_1=\"product-categories/2.png\" url_1=\"https://www.cuebiq.com/\" is_open_new_tab_1=\"yes\" title_2=\"Factual\" image_2=\"product-categories/3.png\" url_2=\"http://factual.com\" is_open_new_tab_2=\"yes\" title_3=\"Kippa\" image_3=\"product-categories/5.png\" url_3=\"https://kippa.africa/\" is_open_new_tab_3=\"no\" title_4=\"PlaceIQ\" image_4=\"product-categories/8.png\" url_4=\"https://www.placeiq.com/\" is_open_new_tab_4=\"no\" image_5=\"product-categories/10.png\" url_5=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_5=\"no\" title_6=\"Versed\" image_6=\"product-categories/12.png\" url_6=\"https://www.reedelsevier.com.ph/\" is_open_new_tab_6=\"no\" style=\"style-4\"][/featured-brands]</div><div>[get-in-touch title=\"Want to talk to a marketing expert?\" subtitle=\"Get In Touch\" description=\"You need to create an account to find the best and preferred job. lorem Ipsum is simply dummy text of the printing and typesetting industry the standard dummy text ever took.\" image=\"general/img-marketing.png\" button_primary_label=\"Contact Us\" button_primary_url=\"/contact\" button_secondary_label=\"Support Center\" button_secondary_url=\"/contact\"][/get-in-touch]</div><div>[from-our-blog title=\"From our blog\" subtitle=\"Aenean velit nisl, aliquam eget diam eu, rhoncus tristique dolor. Aenean vulputate sodales urna ut vestibulum\" button_label=\"View all\" button_url=\"/blog\" type=\"featured\" limit=\"4\" style=\"style-2\"][/from-our-blog]</div>',1,NULL,'full-width',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(25,'Press & Media','<section>\n <h4>Latest News</h4>\n <p><strong>November 15, 2023:</strong> Our Company Expands to New Markets</p>\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac ligula sit amet velit bibendum volutpat. Nullam faucibus justo ac neque molestie, a ullamcorper dolor consequat.</p>\n</section>\n\n<section>\n <h4>Press Releases</h4>\n <p><strong>FOR IMMEDIATE RELEASE</strong></p>\n <p><strong>November 10, 2023:</strong> Our Company Announces Groundbreaking Innovation</p>\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac ligula sit amet velit bibendum volutpat. Nullam faucibus justo ac neque molestie, a ullamcorper dolor consequat.</p>\n</section>\n\n<section>\n <h4>Media Coverage</h4>\n <p><strong>Featured in Tech Today Magazine</strong></p>\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac ligula sit amet velit bibendum volutpat. Nullam faucibus justo ac neque molestie, a ullamcorper dolor consequat.</p>\n</section>\n',1,NULL,'page-detail',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(26,'Advertising','<section>\n <h4>Advertise with Us</h4>\n <p>Reach a wide audience by advertising with us. Whether you are promoting a product, service, or event, our platform provides an excellent opportunity to connect with potential customers.</p>\n <p>Contact us to discuss customized advertising solutions that suit your needs and budget.</p>\n <p>Email: <a href=\"mailto:advertising@example.com\">advertising@example.com</a></p>\n <p>Phone: 0123456789</p>\n</section>\n\n<section>\n <h4>Advertising Options</h4>\n <p>We offer a variety of advertising options to cater to different goals and preferences:</p>\n <ul>\n <li><strong>Display Ads:</strong> Prominently showcase your brand with visually appealing display advertisements.</li>\n <li><strong>Sponsored Content:</strong> Feature your content seamlessly within our platform to engage our audience.</li>\n <li><strong>Event Sponsorship:</strong> Associate your brand with our events and maximize visibility among our community.</li>\n </ul>\n</section>\n\n<section>\n <h4>Ad Guidelines</h4>\n <p>Before submitting your advertisement, please review our advertising guidelines to ensure compliance with our policies and standards. We reserve the right to reject or modify ads that do not meet our criteria.</p>\n</section>\n',1,NULL,'page-detail',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(27,'Testimonials','<section>\n <h4>What Our Clients Say</h4>\n\n <div class=\"testimonial\">\n <blockquote>\n <p>\"Working with Your Company has been an absolute pleasure. They exceeded our expectations and delivered outstanding results. Highly recommended!\"</p>\n </blockquote>\n <p>- John Doe, CEO of XYZ Company</p>\n </div>\n\n <div class=\"testimonial\">\n <blockquote>\n <p>\"The team at Your Company is truly professional and dedicated. Their attention to detail and commitment to excellence set them apart. We look forward to future collaborations.\"</p>\n </blockquote>\n <p>- Jane Smith, Marketing Director</p>\n </div>\n</section>\n\n<section>\n <h4>Share Your Experience</h4>\n <p>We value feedback from our clients. If you have worked with us, we would love to hear about your experience. Please share your testimonial with us by contacting <a href=\"mailto:feedback@example.com\">feedback@example.com</a>.</p>\n</section>\n',1,NULL,'page-detail',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(28,'Project management','<section>\n <h4>Our Approach to Project Management</h4>\n <p>At Your Company, we prioritize effective project management to ensure successful and timely delivery of every project. Our approach includes:</p>\n <ul>\n <li><strong>Project Planning:</strong> Thoroughly plan each project, defining goals, timelines, and milestones.</li>\n <li><strong>Team Collaboration:</strong> Foster open communication and collaboration among team members for optimal efficiency.</li>\n <li><strong>Progress Tracking:</strong> Regularly monitor and track project progress to identify and address potential issues early on.</li>\n <li><strong>Client Involvement:</strong> Involve clients in the project process to ensure alignment with their expectations and requirements.</li>\n </ul>\n</section>\n\n<section>\n <h4>Current Projects</h4>\n <p>Explore our ongoing projects and learn more about the exciting initiatives we are currently working on:</p>\n <ul>\n <li><strong>Project Alpha:</strong> A groundbreaking technology implementation to enhance user experience.</li>\n <li><strong>Project Beta:</strong> Development of a new product line to meet evolving market demands.</li>\n <li><strong>Project Gamma:</strong> Collaboration with industry leaders to drive innovation in sustainability.</li>\n </ul>\n</section>\n\n<section>\n <h4>Project Success Stories</h4>\n <p>Discover the success stories of some of our completed projects:</p>\n <ul>\n <li><strong>Project Delta:</strong> Increased customer satisfaction by 30% through the implementation of a streamlined support system.</li>\n <li><strong>Project Epsilon:</strong> Successfully launched a mobile app, reaching one million downloads within the first month.</li>\n </ul>\n</section>\n',1,NULL,'page-detail',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(29,'Solutions','<section>\n <h4>Customized Solutions for Your Needs</h4>\n <p>At Your Company, we understand that every business is unique. That\'s why we offer tailored solutions to address your specific challenges and opportunities. Our range of solutions includes:</p>\n <ul>\n <li><strong>Technology Solutions:</strong> Leverage cutting-edge technology to enhance efficiency and innovation.</li>\n <li><strong>Marketing Solutions:</strong> Drive your brand forward with strategic marketing and branding solutions.</li>\n <li><strong>Consulting Services:</strong> Benefit from our expertise through personalized consulting services.</li>\n <li><strong>Financial Solutions:</strong> Optimize your financial strategies for sustainable growth.</li>\n </ul>\n</section>\n\n<section>\n <h4>Industries We Serve</h4>\n <p>We cater to a diverse range of industries, providing solutions that align with industry-specific needs and trends:</p>\n <ul>\n <li>Technology and IT</li>\n <li>Healthcare</li>\n <li>Finance and Banking</li>\n <li>Manufacturing</li>\n <li>Retail</li>\n </ul>\n</section>\n\n<section>\n <h4>Client Success Stories</h4>\n <p>Explore how our solutions have made a positive impact on our clients\' businesses:</p>\n <ul>\n <li><strong>Client A:</strong> Achieved a 20% increase in revenue through our marketing solutions.</li>\n <li><strong>Client B:</strong> Streamlined operations and reduced costs with our customized technology solutions.</li>\n </ul>\n</section>\n',1,NULL,'page-detail',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(30,'Project Software','<section>\n <h4>Our Project Management Software</h4>\n <p>Empower your team and streamline your projects with our advanced project management software. Our software offers:</p>\n <ul>\n <li><strong>Intuitive Interface:</strong> User-friendly interface for easy navigation and quick adoption.</li>\n <li><strong>Task Management:</strong> Efficiently organize and track tasks to keep your projects on schedule.</li>\n <li><strong>Collaboration Tools:</strong> Foster teamwork with real-time collaboration features and communication tools.</li>\n <li><strong>Customizable Workflows:</strong> Tailor workflows to match your unique project requirements.</li>\n </ul>\n <p>Experience the next level of project management efficiency with our software solution.</p>\n</section>\n\n<section>\n <h4>Key Features</h4>\n <p>Our project software is packed with features designed to enhance project planning and execution:</p>\n <ul>\n <li>Task Assignment and Tracking</li>\n <li>Gantt Chart Visualization</li>\n <li>File Sharing and Document Management</li>\n <li>Team Collaboration Spaces</li>\n </ul>\n</section>\n\n<section>\n <h4>Get Started Today</h4>\n <p>Ready to elevate your project management experience? Contact us today to get started with our powerful project software.</p>\n <p>Email: <a href=\"mailto:info@example.com\">info@example.com</a></p>\n <p>Phone: +1 (555) 123-4567</p>\n</section>\n',1,NULL,'page-detail',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(31,'Resource Software','<section>\n <h4>Optimize Your Resources with Our Software</h4>\n <p>Unlock the full potential of your resources and enhance organizational efficiency with our resource management software. Our solution provides:</p>\n <ul>\n <li><strong>Resource Allocation:</strong> Effectively allocate and manage resources based on project requirements.</li>\n <li><strong>Capacity Planning:</strong> Plan and optimize resource capacity to ensure projects are well-supported.</li>\n <li><strong>Real-time Monitoring:</strong> Monitor resource usage and availability in real-time for proactive decision-making.</li>\n <li><strong>Reporting and Analytics:</strong> Gain insights into resource utilization and performance through detailed reports and analytics.</li>\n </ul>\n <p>Experience seamless resource management with our software solution.</p>\n</section>\n\n<section>\n <h4>Key Features</h4>\n <p>Our resource management software is equipped with features designed to streamline your resource-related processes:</p>\n <ul>\n <li>Resource Forecasting</li>\n <li>Time Tracking and Attendance</li>\n <li>Collaborative Scheduling</li>\n <li>Automated Notifications</li>\n </ul>\n</section>\n\n<section>\n <h4>Get Started Today</h4>\n <p>Ready to optimize your resource management? Contact us today to get started with our powerful resource management software.</p>\n <p>Email: <a href=\"mailto:info@example.com\">info@example.com</a></p>\n <p>Phone: +1 (555) 123-4567</p>\n</section>\n',1,NULL,'page-detail',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(32,'Workflow Automation','<section>\n <h4>Streamline Your Processes with Workflow Automation</h4>\n <p>Transform your business operations and increase efficiency with our advanced workflow automation solutions. Our platform offers:</p>\n <ul>\n <li><strong>Process Automation:</strong> Automate repetitive tasks and streamline complex workflows for increased productivity.</li>\n <li><strong>Integration Capabilities:</strong> Seamlessly integrate with your existing systems and tools for a unified business environment.</li>\n <li><strong>Customizable Workflows:</strong> Tailor workflows to match your unique business processes and requirements.</li>\n <li><strong>Real-time Monitoring:</strong> Monitor and analyze workflow performance in real-time for informed decision-making.</li>\n </ul>\n <p>Experience the power of automation with our workflow automation solutions.</p>\n</section>\n\n<section>\n <h4>Key Features</h4>\n <p>Our workflow automation platform is packed with features designed to enhance your business processes:</p>\n <ul>\n <li>Drag-and-Drop Workflow Builder</li>\n <li>Automated Notifications and Alerts</li>\n <li>Data Security and Compliance</li>\n <li>Reporting and Analytics Dashboard</li>\n </ul>\n</section>\n\n<section>\n <h4>Get Started Today</h4>\n <p>Ready to revolutionize your workflows? Contact us today to explore the possibilities of our workflow automation solutions.</p>\n <p>Email: <a href=\"mailto:info@example.com\">info@example.com</a></p>\n <p>Phone: 0123456789</p>\n</section>\n',1,NULL,'page-detail',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30'),(33,'Gantt chart makers','<section>\n <h4>Create and Visualize Projects with Gantt Charts</h4>\n <p>Efficient project planning is crucial for success. Discover powerful Gantt chart makers that help you visualize and manage your projects effectively. Our Gantt chart makers offer:</p>\n <ul>\n <li><strong>Intuitive Interface:</strong> User-friendly design for easy project planning and tracking.</li>\n <li><strong>Drag-and-Drop Functionality:</strong> Easily rearrange tasks and milestones with a simple drag-and-drop interface.</li>\n <li><strong>Collaboration Features:</strong> Facilitate teamwork by allowing team members to collaborate and update project progress.</li>\n <li><strong>Customization Options:</strong> Tailor Gantt charts to match your project\'s unique requirements and timelines.</li>\n </ul>\n <p>Explore the best Gantt chart makers to streamline your project management.</p>\n</section>\n\n<section>\n <h4>Key Features</h4>\n <p>Discover the key features offered by Gantt chart makers:</p>\n <ul>\n <li>Task and Subtask Management</li>\n <li>Dependency Tracking</li>\n <li>Timeline View and Zoom Functionality</li>\n <li>Export and Sharing Options</li>\n </ul>\n</section>\n\n<section>\n <h4>Get Started Today</h4>\n <p>Ready to visualize your projects with Gantt charts? Explore our featured Gantt chart makers and start planning your projects more efficiently.</p>\n <p>Email: <a href=\"mailto:info@example.com\">info@example.com</a></p>\n <p>Phone: 123456789</p>\n</section>\n',1,NULL,'page-detail',NULL,'published','2025-10-26 20:13:30','2025-10-26 20:13:30');
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pages_translations`
--
DROP TABLE IF EXISTS `pages_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pages_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`pages_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`lang_code`,`pages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pages_translations`
--
LOCK TABLES `pages_translations` WRITE;
/*!40000 ALTER TABLE `pages_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `pages_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `password_reset_tokens`
--
DROP TABLE IF EXISTS `password_reset_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `password_reset_tokens` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `password_reset_tokens`
--
LOCK TABLES `password_reset_tokens` WRITE;
/*!40000 ALTER TABLE `password_reset_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `password_reset_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payment_logs`
--
DROP TABLE IF EXISTS `payment_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_logs` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`payment_method` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`request` longtext COLLATE utf8mb4_unicode_ci,
`response` longtext COLLATE utf8mb4_unicode_ci,
`ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payment_logs`
--
LOCK TABLES `payment_logs` WRITE;
/*!40000 ALTER TABLE `payment_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `payment_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payments`
--
DROP TABLE IF EXISTS `payments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `payments` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`currency` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` bigint unsigned NOT NULL DEFAULT '0',
`charge_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`payment_channel` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`amount` decimal(15,2) unsigned NOT NULL,
`payment_fee` decimal(15,2) DEFAULT '0.00',
`order_id` bigint unsigned DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'pending',
`payment_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'confirm',
`customer_id` bigint unsigned DEFAULT NULL,
`refunded_amount` decimal(15,2) unsigned DEFAULT NULL,
`refund_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`customer_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`metadata` mediumtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payments`
--
LOCK TABLES `payments` WRITE;
/*!40000 ALTER TABLE `payments` DISABLE KEYS */;
/*!40000 ALTER TABLE `payments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personal_access_tokens`
--
DROP TABLE IF EXISTS `personal_access_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `personal_access_tokens` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`tokenable_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`abilities` text COLLATE utf8mb4_unicode_ci,
`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,
PRIMARY KEY (`id`),
UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personal_access_tokens`
--
LOCK TABLES `personal_access_tokens` WRITE;
/*!40000 ALTER TABLE `personal_access_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `personal_access_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `post_categories`
--
DROP TABLE IF EXISTS `post_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `post_categories` (
`category_id` bigint unsigned NOT NULL,
`post_id` bigint unsigned NOT NULL,
KEY `post_categories_category_id_index` (`category_id`),
KEY `post_categories_post_id_index` (`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `post_categories`
--
LOCK TABLES `post_categories` WRITE;
/*!40000 ALTER TABLE `post_categories` DISABLE KEYS */;
INSERT INTO `post_categories` VALUES (4,1),(7,1),(1,2),(6,2),(2,3),(7,3),(3,4),(7,4),(1,5),(5,5),(2,6),(7,6),(2,7),(6,7),(3,8),(7,8),(2,9),(5,9),(1,10),(7,10),(1,11),(5,11),(1,12),(5,12),(1,13),(7,13),(4,14),(6,14),(2,15),(6,15),(1,16),(5,16);
/*!40000 ALTER TABLE `post_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `post_tags`
--
DROP TABLE IF EXISTS `post_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `post_tags` (
`tag_id` bigint unsigned NOT NULL,
`post_id` bigint unsigned NOT NULL,
KEY `post_tags_tag_id_index` (`tag_id`),
KEY `post_tags_post_id_index` (`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `post_tags`
--
LOCK TABLES `post_tags` WRITE;
/*!40000 ALTER TABLE `post_tags` DISABLE KEYS */;
INSERT INTO `post_tags` VALUES (1,1),(2,1),(3,1),(4,1),(5,1),(1,2),(2,2),(3,2),(4,2),(5,2),(1,3),(2,3),(3,3),(4,3),(5,3),(1,4),(2,4),(3,4),(4,4),(5,4),(1,5),(2,5),(3,5),(4,5),(5,5),(1,6),(2,6),(3,6),(4,6),(5,6),(1,7),(2,7),(3,7),(4,7),(5,7),(1,8),(2,8),(3,8),(4,8),(5,8),(1,9),(2,9),(3,9),(4,9),(5,9),(1,10),(2,10),(3,10),(4,10),(5,10),(1,11),(2,11),(3,11),(4,11),(5,11),(1,12),(2,12),(3,12),(4,12),(5,12),(1,13),(2,13),(3,13),(4,13),(5,13),(1,14),(2,14),(3,14),(4,14),(5,14),(1,15),(2,15),(3,15),(4,15),(5,15),(1,16),(2,16),(3,16),(4,16),(5,16);
/*!40000 ALTER TABLE `post_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `posts`
--
DROP TABLE IF EXISTS `posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `posts` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`author_id` bigint unsigned DEFAULT NULL,
`author_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`is_featured` tinyint unsigned NOT NULL DEFAULT '0',
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`views` int unsigned NOT NULL DEFAULT '0',
`format_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `posts_status_index` (`status`),
KEY `posts_author_id_index` (`author_id`),
KEY `posts_author_type_index` (`author_type`),
KEY `posts_created_at_index` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `posts`
--
LOCK TABLES `posts` WRITE;
/*!40000 ALTER TABLE `posts` DISABLE KEYS */;
INSERT INTO `posts` VALUES (1,'The Top 2020 Handbag Trends to Know','Odio eos non dolore ea sint. Quia et sunt corporis sit dolor ut. Ipsum et fugiat fuga dolores blanditiis. Id et molestiae quo qui cumque deserunt est. Sit velit aut et ullam quam voluptas fugiat.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/1.jpg',1952,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(2,'Top Search Engine Optimization Strategies!','Ut voluptates est dolore dolore quae dolor veniam. Ex ut velit doloribus sint minus. Deleniti incidunt necessitatibus sed facere culpa.','<div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/2.jpg',1850,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(3,'Which Company Would You Choose?','Tempora maiores consectetur odit quidem amet officia quo magni. Dolorem velit animi aut error perspiciatis.','<div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/3.jpg',2289,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(4,'Used Car Dealer Sales Tricks Exposed','Ipsum minima at omnis harum. Deserunt iure praesentium blanditiis est sed quia et. Sit odio consectetur eligendi.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/4.jpg',1561,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(5,'20 Ways To Sell Your Product Faster','Enim minus rerum optio. Laudantium facere fuga qui dolorum quo et. Autem eveniet adipisci sed.','<div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/5.jpg',945,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(6,'The Secrets Of Rich And Famous Writers','Et fugiat aliquam vitae ut consequatur libero. In ipsam et placeat eos ad occaecati aut.','<div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/6.jpg',294,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(7,'Imagine Losing 20 Pounds In 14 Days!','Sit incidunt quaerat animi saepe. Et molestiae enim quam aut ullam sit odit. Ab voluptatem laborum doloremque quibusdam.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/7.jpg',1527,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(8,'Are You Still Using That Slow, Old Typewriter?','Repudiandae voluptatem error et atque hic. Harum sed omnis dolore est. Quod omnis ratione occaecati perspiciatis dolores ex sit.','<div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/8.jpg',2223,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(9,'A Skin Cream That’s Proven To Work','Voluptatem sed mollitia optio quae. Quaerat dolores ipsum voluptatum et aliquam quis dolores. Omnis libero non explicabo quia ipsa debitis.','<div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/9.jpg',406,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(10,'10 Reasons To Start Your Own, Profitable Website!','Enim eveniet totam sint quis voluptatum impedit sint. Itaque velit quis autem.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/10.jpg',801,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(11,'Simple Ways To Reduce Your Unwanted Wrinkles!','Libero accusantium at porro sit aut repudiandae in. Praesentium facilis saepe nihil. Non iure cum molestias voluptas.','<div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/11.jpg',1339,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(12,'Apple iMac with Retina 5K display review','Ducimus rerum minima exercitationem. Ut id ducimus in et optio. Vitae atque aut quaerat pariatur non quia perferendis.','<div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/12.jpg',388,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(13,'10,000 Web Site Visitors In One Month:Guaranteed','Commodi quam impedit ut. Aliquam ea asperiores saepe cupiditate quis. Libero beatae illo aut a voluptatibus odio dolores. Vitae neque ut esse sit.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/13.jpg',2162,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(14,'Unlock The Secrets Of Selling High Ticket Items','Expedita dolorem et ratione rem sunt totam. Est minima enim velit et quia eius incidunt. At praesentium hic a.','<div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/14.jpg',1248,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(15,'4 Expert Tips On How To Choose The Right Men’s Wallet','Et nihil ipsum dicta quo dolorem quae suscipit eligendi. Magni quis qui molestiae qui. Est et in ea vitae atque dolorem dicta in.','<div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/15.jpg',353,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48'),(16,'Sexy Clutches: How to Buy & Wear a Designer Clutch Bag','Sequi dolore id nisi hic qui consequatur est dolores. Aut explicabo aut incidunt ut qui. Deleniti voluptatibus sequi minima incidunt dicta ea nisi.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><div class=\'content-detail\'>\n <div class=\'mb-40\'><img alt=\'iori\'\n class=\'bd-rd8\'\n src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img.png\'></div>\n <p class=\'color-grey-900 font-lg-bold mb-25\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <p class=\'font-md color-grey-500\'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ornare\n pellentesque sollicitudin. Suspendisse potenti. Fusce ex risus, iaculis sit amet sapien nec, finibus malesuada\n mi. Proin at turpis eget sapien pulvinar luctus. Vestibulum bibendum pharetra lorem eu aliquam. In feugiat\n placerat risus, sed rutrum neque mattis sit amet. Nullam vestibulum ante ac quam tempor, id venenatis velit\n eleifend. Duis id iaculis risus, quis ullamcorper augue. Nunc tristique venenatis ipsum at euismod. Pellentesque\n id arcu est. </p>\n <h4 class=\'color-brand-1\'>Freelance invoices: your legal requirements</h4>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills</li>\n <li>Aware of trends inmobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n </ul>\n <p>Phasellus enim magna, varius et commodo ut, ultricies vitae velit. Ut nulla tellus, eleifend euismod pellentesque\n vel, sagittis vel justo. In libero urna, venenatis sit amet ornare non, suscipit nec risus. Sed consequat justo\n non mauris pretium at tempor justo sodales. Quisque tincidunt laoreet malesuada. Cum sociis natoque penatibus et\n magnis dis parturient montes, nascetur ridiculus mus. Integer vitae ante enim. Fusce sed elit est. Suspendisse\n sit amet mauris in quam pretium faucibus et aliquam odio. </p>\n <h4>Different ways to issue your invoices as a freelancer</h4>\n <div class=\'row align-items-start\'>\n <div class=\'col-xl-4 col-lg-12 col-md-5\'>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img2.png\'></p>\n </div>\n <div class=\'col-xl-8 col-lg-12 col-md-7\'>\n <p>Qui laboriosam ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores\n exercitationem ut ipsam velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem\n officiis id harum facere aut minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia\n reiciendis in ducimus fugit qui dolores aspernatur aut quis error et aspernatur pariatur? Ut dolor quas\n cum beatae explicabo ex velit voluptatum ut temporibus illum. Vel voluptate galisum qui cupiditate nobis\n a perferendis sunt ut deserunt omnis eum dolor aperiam? Et voluptatem velit et voluptatem cumque vel\n voluptatem nemo ex ipsum voluptatem non distinctio rerum ut neque ipsum non aspernatur corporis. Et\n perspiciatis laboriosam a sint iste et quis minus aut aspernatur voluptatibus aut velit omnis aut\n excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut aliquam aperiam et atque Quis\n qui delectus illum cum atque officiis 33 cumque error. Ut vero provident eum minus pariatur ab\n consequuntur galisum rem internos ipsum. Qui labore libero qui vero ipsum ut voluptas consequatur in\n nihil similique aut exercitationem adipisci sed totam quia. Est cumque galisum ut nihil eveniet et\n consequatur quae qui enim earum ad voluptatem modi in explicabo recusandae. Et autem sint est placeat\n veritatis et animi facilis est beatae assumenda non recusandae fugiat.</p>\n </div>\n </div>\n <h4>Invoicing as a freelancer</h4>\n <p class=\'column-2\'>\n Lorem ipsum dolor sit amet. Sit veniam dolorum est minus nisi et adipisci sequi. Non velit quia non nisi esse\n non rerum voluptate. Et doloribus atque qui corporis aliquam et quia harum. Sit voluptas illo quo tenetur dolore\n ut ipsum eaque et autem tenetur sit debitis nisi et quae dolorem et quos vero?<br><br>Et dolorem aliquid non\n rerum culpa sit quia pariatur quo unde ratione vel quia ipsa et corrupti rerum. Et optio officia aut explicabo\n odio ea ratione voluptatem eos aliquam tempora qui impedit ipsam. Sit officia eius ut quas adipisci aut\n laudantium quia.<br><br>Et temporibus fuga aut perferendis assumenda ex odit vero ad rerum numquam. Qui dolorum\n delectus aut maiores molestiae aut odio ratione ut itaque illum et Quis facilis aut galisum tenetur est rerum\n recusandae. Eum sint illum eum cupiditate repellat ea culpa quaerat aut asperiores facere! <br>Qui laboriosam\n ipsa non similique omnis id officia assumenda. Aut perspiciatis accusamus et dolores exercitationem ut ipsam\n velit. Ut nihil dolorem eos nemo temporibus ut sunt aspernatur! Est voluptatem officiis id harum facere aut\n minus mollitia in commodi sint sed placeat quia cum ipsum quis. Et quia reiciendis in ducimus fugit qui dolores\n aspernatur aut quis error et aspernatur pariatur? Ut dolor quas cum beatae explicabo ex velit voluptatum ut\n temporibus illum. Vel voluptate galisum qui cupiditate nobis a perferendis sunt ut deserunt omnis eum dolor\n aperiam? Et voluptatem velit et voluptatem cumque vel voluptatem nemo ex ipsum voluptatem non distinctio rerum\n ut neque ipsum non aspernatur corporis. Et perspiciatis laboriosam a sint iste et quis minus aut aspernatur\n voluptatibus aut velit omnis aut excepturi sunt ut sapiente optio! Non nihil facilis ut molestiae rerum aut\n aliquam aperiam et atque Quis qui delectus illum cum</p>\n <p><img alt=\'iori\' src=\'http://wp.alithemes.com/html/iori/demos/assets/imgs/page/blog-detail/img3.png\'></p>\n <h4>Different ways</h4>\n <p>\n Est amet nostrum non harum sunt eum quos dolorem aut esse odio. Aut similique sint est nihil quod aut provident\n laborum aut placeat voluptates ea omnis omnis et iure voluptas qui molestiae adipisci. Et quia mollitia vel\n optio eaque sit impedit facere et libero sapiente.Et neque dicta ea dignissimos voluptatem id fugit laboriosam\n sed inventore explicabo et voluptatibus assumenda ut accusantium nulla in dolorem magni. Et ratione dolores et\n adipisci similique sed culpa similique. Et iste corrupti id commodi omnis aut dolor voluptas et laboriosam\n aspernatur vel odit officia. Est distinctio eaque rem nihil voluptatem est aspernatur rerum aut quisquam\n obcaecati est voluptas deserunt qui voluptatem facilis.</p>\n <p>At quisquam dolorem et nobis culpa ut laudantium quae id velit inventore! Eos omnis temporibus cum exercitationem\n iusto eos quia quod! Hic inventore voluptas hic asperiores facere cum necessitatibus aliquam qui omnis officia.\n Eos voluptatibus iste eum iusto nobis sit aspernatur iusto ab atque animi ut voluptas dolorem.</p>\n</div>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/16.jpg',862,NULL,'2025-10-26 20:13:48','2025-10-26 20:13:48');
/*!40000 ALTER TABLE `posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `posts_translations`
--
DROP TABLE IF EXISTS `posts_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `posts_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`posts_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`lang_code`,`posts_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `posts_translations`
--
LOCK TABLES `posts_translations` WRITE;
/*!40000 ALTER TABLE `posts_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `posts_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `push_notification_recipients`
--
DROP TABLE IF EXISTS `push_notification_recipients`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `push_notification_recipients` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`push_notification_id` bigint unsigned NOT NULL,
`user_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint unsigned NOT NULL,
`device_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`platform` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sent',
`sent_at` timestamp NULL DEFAULT NULL,
`delivered_at` timestamp NULL DEFAULT NULL,
`read_at` timestamp NULL DEFAULT NULL,
`clicked_at` timestamp NULL DEFAULT NULL,
`fcm_response` json DEFAULT NULL,
`error_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `pnr_notification_user_index` (`push_notification_id`,`user_type`,`user_id`),
KEY `pnr_user_status_index` (`user_type`,`user_id`,`status`),
KEY `pnr_user_read_index` (`user_type`,`user_id`,`read_at`),
KEY `pnr_status_index` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `push_notification_recipients`
--
LOCK TABLES `push_notification_recipients` WRITE;
/*!40000 ALTER TABLE `push_notification_recipients` DISABLE KEYS */;
/*!40000 ALTER TABLE `push_notification_recipients` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `push_notifications`
--
DROP TABLE IF EXISTS `push_notifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `push_notifications` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'general',
`target_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`target_value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`action_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`data` json DEFAULT NULL,
`status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sent',
`sent_count` int NOT NULL DEFAULT '0',
`failed_count` int NOT NULL DEFAULT '0',
`delivered_count` int NOT NULL DEFAULT '0',
`read_count` int NOT NULL DEFAULT '0',
`scheduled_at` timestamp NULL DEFAULT NULL,
`sent_at` timestamp NULL DEFAULT NULL,
`created_by` bigint unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `push_notifications_type_created_at_index` (`type`,`created_at`),
KEY `push_notifications_status_scheduled_at_index` (`status`,`scheduled_at`),
KEY `push_notifications_created_by_index` (`created_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `push_notifications`
--
LOCK TABLES `push_notifications` WRITE;
/*!40000 ALTER TABLE `push_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `push_notifications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `revisions`
--
DROP TABLE IF EXISTS `revisions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `revisions` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`revisionable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`revisionable_id` bigint unsigned NOT NULL,
`user_id` bigint unsigned DEFAULT NULL,
`key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`old_value` text COLLATE utf8mb4_unicode_ci,
`new_value` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `revisions_revisionable_id_revisionable_type_index` (`revisionable_id`,`revisionable_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `revisions`
--
LOCK TABLES `revisions` WRITE;
/*!40000 ALTER TABLE `revisions` DISABLE KEYS */;
/*!40000 ALTER TABLE `revisions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `role_users`
--
DROP TABLE IF EXISTS `role_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_users` (
`user_id` bigint unsigned NOT NULL,
`role_id` bigint unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`user_id`,`role_id`),
KEY `role_users_user_id_index` (`user_id`),
KEY `role_users_role_id_index` (`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `role_users`
--
LOCK TABLES `role_users` WRITE;
/*!40000 ALTER TABLE `role_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `role_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `roles`
--
DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `roles` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`slug` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`permissions` text COLLATE utf8mb4_unicode_ci,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_default` tinyint unsigned NOT NULL DEFAULT '0',
`created_by` bigint unsigned NOT NULL,
`updated_by` bigint unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `roles_slug_unique` (`slug`),
KEY `roles_created_by_index` (`created_by`),
KEY `roles_updated_by_index` (`updated_by`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `roles`
--
LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` VALUES (1,'admin','Admin','{\"users.index\":true,\"users.create\":true,\"users.edit\":true,\"users.destroy\":true,\"roles.index\":true,\"roles.create\":true,\"roles.edit\":true,\"roles.destroy\":true,\"core.system\":true,\"core.cms\":true,\"core.manage.license\":true,\"systems.cronjob\":true,\"core.tools\":true,\"tools.data-synchronize\":true,\"media.index\":true,\"files.index\":true,\"files.create\":true,\"files.edit\":true,\"files.trash\":true,\"files.destroy\":true,\"folders.index\":true,\"folders.create\":true,\"folders.edit\":true,\"folders.trash\":true,\"folders.destroy\":true,\"settings.index\":true,\"settings.common\":true,\"settings.options\":true,\"settings.email\":true,\"settings.media\":true,\"settings.admin-appearance\":true,\"settings.cache\":true,\"settings.datatables\":true,\"settings.email.rules\":true,\"settings.others\":true,\"menus.index\":true,\"menus.create\":true,\"menus.edit\":true,\"menus.destroy\":true,\"optimize.settings\":true,\"pages.index\":true,\"pages.create\":true,\"pages.edit\":true,\"pages.destroy\":true,\"plugins.index\":true,\"plugins.edit\":true,\"plugins.remove\":true,\"plugins.marketplace\":true,\"sitemap.settings\":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,\"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,\"plugins.business-services\":true,\"business-services.service-categories.index\":true,\"business-services.service-categories.create\":true,\"business-services.service-categories.edit\":true,\"business-services.service-categories.destroy\":true,\"business-services.services.index\":true,\"business-services.services.create\":true,\"business-services.services.edit\":true,\"business-services.services.destroy\":true,\"business-services.packages.index\":true,\"business-services.packages.create\":true,\"business-services.packages.edit\":true,\"business-services.packages.destroy\":true,\"captcha.settings\":true,\"careers.index\":true,\"careers.create\":true,\"careers.edit\":true,\"careers.destroy\":true,\"contacts.index\":true,\"contacts.edit\":true,\"contacts.destroy\":true,\"contact.custom-fields\":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,\"ecommerce.customers.import\":true,\"ecommerce.customers.export\":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.shipping-rule-items.index\":true,\"ecommerce.shipping-rule-items.create\":true,\"ecommerce.shipping-rule-items.edit\":true,\"ecommerce.shipping-rule-items.destroy\":true,\"ecommerce.shipping-rule-items.bulk-import\":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,\"translations.import\":true,\"translations.export\":true,\"property-translations.import\":true,\"property-translations.export\":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,\"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,\"social-login.settings\":true,\"team.index\":true,\"team.create\":true,\"team.edit\":true,\"team.destroy\":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,\"api.settings\":true,\"api.sanctum-token.index\":true,\"api.sanctum-token.create\":true,\"api.sanctum-token.destroy\":true}','Admin users role',1,1,1,'2025-10-26 20:13:21','2025-10-26 20:13:21');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sessions`
--
DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sessions` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint unsigned DEFAULT NULL,
`ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_agent` text COLLATE utf8mb4_unicode_ci,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`last_activity` int NOT NULL,
PRIMARY KEY (`id`),
KEY `sessions_user_id_index` (`user_id`),
KEY `sessions_last_activity_index` (`last_activity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sessions`
--
LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `settings`
--
DROP TABLE IF EXISTS `settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `settings` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `settings_key_unique` (`key`)
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `settings`
--
LOCK TABLES `settings` WRITE;
/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
INSERT INTO `settings` VALUES (1,'media_random_hash','1de427afbf38a91df43abe00a262b014',NULL,'2025-10-26 20:13:52'),(2,'api_enabled','0',NULL,'2025-10-26 20:13:52'),(3,'activated_plugins','[\"language\",\"language-advanced\",\"ai-writer\",\"analytics\",\"announcement\",\"audit-log\",\"backup\",\"blog\",\"business-services\",\"captcha\",\"career\",\"contact\",\"cookie-consent\",\"ecommerce\",\"faq\",\"gallery\",\"location\",\"mollie\",\"newsletter\",\"payment\",\"paypal\",\"paystack\",\"razorpay\",\"rss-feed\",\"shippo\",\"social-login\",\"sslcommerz\",\"stripe\",\"team\",\"testimonial\",\"translation\"]',NULL,'2025-10-26 20:13:52'),(4,'ai_writer_proxy_enable','0',NULL,'2025-10-26 20:13:52'),(5,'ai_writer_proxy_protocol',NULL,NULL,'2025-10-26 20:13:52'),(6,'ai_writer_proxy_ip',NULL,NULL,'2025-10-26 20:13:52'),(7,'ai_writer_proxy_port',NULL,NULL,'2025-10-26 20:13:52'),(8,'ai_writer_proxy_username',NULL,NULL,'2025-10-26 20:13:52'),(9,'ai_writer_proxy_password',NULL,NULL,'2025-10-26 20:13:52'),(10,'ai_writer_prompt_template','[{\"title\":\"Product Content\",\"content\":\"You will be a marketer. I will give the information of the product, you will write an introductory article about that product, the article requires google seo standards and is highly persuasive to increase the rate of users closing orders.\\nParameters product:\"},{\"title\":\"Post Content\",\"content\":\"You will be a marketer. Articles about:\"}]',NULL,'2025-10-26 20:13:52'),(11,'ai_writer_openai_key',NULL,NULL,'2025-10-26 20:13:52'),(12,'ai_writer_openai_temperature','1',NULL,'2025-10-26 20:13:52'),(13,'ai_writer_openai_max_tokens','2000',NULL,'2025-10-26 20:13:52'),(14,'ai_writer_openai_frequency_penalty','0',NULL,'2025-10-26 20:13:52'),(15,'ai_writer_openai_presence_penalty','0',NULL,'2025-10-26 20:13:52'),(16,'ai_writer_openai_models','[\"gpt-3.5-turbo\"]',NULL,'2025-10-26 20:13:52'),(17,'ai_writer_openai_default_model','gpt-3.5-turbo',NULL,'2025-10-26 20:13:52'),(18,'ai_writer_spin_template','[]',NULL,'2025-10-26 20:13:52'),(19,'analytics_dashboard_widgets','0','2025-10-26 20:13:16','2025-10-26 20:13:16'),(20,'enable_recaptcha_botble_contact_forms_fronts_contact_form','1','2025-10-26 20:13:17','2025-10-26 20:13:17'),(21,'api_layer_api_key','',NULL,'2025-10-26 20:13:52'),(24,'enable_recaptcha_botble_newsletter_forms_fronts_newsletter_form','1','2025-10-26 20:13:20','2025-10-26 20:13:20'),(25,'payment_cod_fee_type','fixed',NULL,'2025-10-26 20:13:52'),(26,'payment_bank_transfer_fee_type','fixed',NULL,'2025-10-26 20:13:52'),(27,'theme','iori',NULL,'2025-10-26 20:13:52'),(28,'show_admin_bar','1',NULL,'2025-10-26 20:13:52'),(29,'language_hide_default','1',NULL,'2025-10-26 20:13:52'),(31,'language_display','all',NULL,'2025-10-26 20:13:52'),(32,'language_hide_languages','[]',NULL,'2025-10-26 20:13:52'),(33,'payment_cod_status','1',NULL,'2025-10-26 20:13:52'),(34,'payment_bank_transfer_status','1',NULL,'2025-10-26 20:13:52'),(35,'language_switcher_display','dropdown',NULL,'2025-10-26 20:13:52'),(36,'admin_favicon','logo/favicon.png',NULL,'2025-10-26 20:13:52'),(37,'admin_logo','logo/logo-white.png',NULL,'2025-10-26 20:13:52'),(38,'permalink-botble-blog-models-post','blog',NULL,'2025-10-26 20:13:52'),(39,'permalink-botble-blog-models-category','blog',NULL,'2025-10-26 20:13:52'),(40,'payment_cod_description','Please pay money directly to the postman, if you choose cash on delivery method (COD).',NULL,'2025-10-26 20:13:52'),(41,'payment_bank_transfer_description','Please send money to our bank account: ACB - 69270 213 19.',NULL,'2025-10-26 20:13:52'),(42,'payment_stripe_payment_type','stripe_checkout',NULL,'2025-10-26 20:13:52'),(43,'plugins_ecommerce_customer_new_order_status','0',NULL,'2025-10-26 20:13:52'),(44,'plugins_ecommerce_admin_new_order_status','0',NULL,'2025-10-26 20:13:52'),(45,'ecommerce_is_enabled_support_digital_products','1',NULL,'2025-10-26 20:13:52'),(46,'ecommerce_load_countries_states_cities_from_location_plugin','0',NULL,'2025-10-26 20:13:52'),(47,'payment_bank_transfer_display_bank_info_at_the_checkout_success_page','1',NULL,'2025-10-26 20:13:52'),(48,'ecommerce_product_sku_format','IO-2443-[%S]',NULL,'2025-10-26 20:13:52'),(49,'theme-iori-site_name','Iori',NULL,'2025-10-26 20:13:52'),(50,'theme-iori-site_title','Multipurpose Startup Laravel Script.',NULL,'2025-10-26 20:13:52'),(51,'theme-iori-site_description','Iori is a Multipurpose Agency Laravel Script. It is a powerful, clean, modern, and fully responsive template. It is designed for agency, business, corporate, creative, freelancer, portfolio, photography, personal, resume, and any kind of creative fields.',NULL,'2025-10-26 20:13:52'),(52,'theme-iori-copyright','©2025 Archi Elite JSC. All right reserved.',NULL,'2025-10-26 20:13:52'),(53,'theme-iori-favicon','logo/favicon.png',NULL,'2025-10-26 20:13:52'),(54,'theme-iori-logo','logo/logo.png',NULL,'2025-10-26 20:13:52'),(55,'theme-iori-primary_font','Manrope',NULL,'2025-10-26 20:13:52'),(56,'theme-iori-primary_color','#024430',NULL,'2025-10-26 20:13:52'),(57,'theme-iori-success_color','#06D6A0',NULL,'2025-10-26 20:13:52'),(58,'theme-iori-danger_color','#EF476F',NULL,'2025-10-26 20:13:52'),(59,'theme-iori-warning_color','#FFD166',NULL,'2025-10-26 20:13:52'),(60,'theme-iori-secondary_color','#066a4c',NULL,'2025-10-26 20:13:52'),(61,'theme-iori-homepage_id','1',NULL,'2025-10-26 20:13:52'),(62,'theme-iori-login_background','general/banner-authentication.png',NULL,'2025-10-26 20:13:52'),(63,'theme-iori-hotline','0123456789',NULL,'2025-10-26 20:13:52'),(64,'theme-iori-action_button_text','Get Started',NULL,'2025-10-26 20:13:52'),(65,'theme-iori-action_button_url','/register',NULL,'2025-10-26 20:13:52'),(66,'theme-iori-header_top_enabled','1',NULL,'2025-10-26 20:13:52'),(67,'theme-iori-cookie_consent_message','Your experience on this site will be improved by allowing cookies',NULL,'2025-10-26 20:13:52'),(68,'theme-iori-cookie_consent_learn_more_url','/cookie-policy',NULL,'2025-10-26 20:13:52'),(69,'theme-iori-cookie_consent_learn_more_text','Cookie Policy',NULL,'2025-10-26 20:13:52'),(70,'theme-iori-social_links','[[{\"key\":\"social-name\",\"value\":\"Facebook\"},{\"key\":\"social-icon\",\"value\":\"icons\\/facebook.png\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.facebook.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"Twitter\"},{\"key\":\"social-icon\",\"value\":\"icons\\/twitter.png\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.twitter.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"Instagram\"},{\"key\":\"social-icon\",\"value\":\"icons\\/instagram.png\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.instagram.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"Linkedin\"},{\"key\":\"social-icon\",\"value\":\"icons\\/linkedin.png\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.linkedin.com\\/\"}]]',NULL,'2025-10-26 20:13:52'),(71,'theme-iori-404_page_image','icons/404.png',NULL,'2025-10-26 20:13:52'),(72,'announcement_max_width','1390',NULL,NULL),(73,'announcement_text_color','#024430',NULL,NULL),(74,'announcement_background_color','#FFE7BB',NULL,NULL),(75,'announcement_text_alignment','start',NULL,NULL),(76,'announcement_dismissible','1',NULL,NULL);
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `slugs`
--
DROP TABLE IF EXISTS `slugs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `slugs` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`reference_id` bigint unsigned NOT NULL,
`reference_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`prefix` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT '',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `slugs_reference_id_index` (`reference_id`),
KEY `slugs_key_index` (`key`),
KEY `slugs_prefix_index` (`prefix`),
KEY `slugs_reference_index` (`reference_id`,`reference_type`),
KEY `idx_slugs_reference` (`reference_type`,`reference_id`)
) ENGINE=InnoDB AUTO_INCREMENT=356 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `slugs`
--
LOCK TABLES `slugs` WRITE;
/*!40000 ALTER TABLE `slugs` DISABLE KEYS */;
INSERT INTO `slugs` VALUES (1,'homepage-1',1,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(2,'homepage-2',2,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(3,'homepage-3',3,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(4,'homepage-4',4,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(5,'homepage-5',5,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(6,'homepage-6',6,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(7,'homepage-7',7,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(8,'homepage-8',8,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(9,'homepage-9',9,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(10,'homepage-10',10,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(11,'homepage-11',11,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(12,'homepage-12',12,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(13,'about-us',13,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(14,'blog',14,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(15,'contact',15,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(16,'coming-soon',16,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(17,'services',17,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(18,'help-center',18,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(19,'pricing',19,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(20,'teams',20,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(21,'term-and-conditions',21,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(22,'cookie-policy',22,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(23,'privacy-policy',23,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(24,'career-listing',24,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(25,'press-media',25,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(26,'advertising',26,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(27,'testimonials',27,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(28,'project-management',28,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(29,'solutions',29,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(30,'project-software',30,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(31,'resource-software',31,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(32,'workflow-automation',32,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(33,'gantt-chart-makers',33,'Botble\\Page\\Models\\Page','','2025-10-26 20:13:30','2025-10-26 20:13:30'),(34,'desktop-pc',1,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2025-10-26 20:13:30','2025-10-26 20:13:30'),(35,'headphone',2,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2025-10-26 20:13:30','2025-10-26 20:13:30'),(36,'laptop',3,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2025-10-26 20:13:30','2025-10-26 20:13:30'),(37,'mobile-phone',4,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2025-10-26 20:13:30','2025-10-26 20:13:30'),(38,'printer',5,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2025-10-26 20:13:30','2025-10-26 20:13:30'),(39,'books',6,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2025-10-26 20:13:30','2025-10-26 20:13:30'),(40,'tablet',7,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2025-10-26 20:13:30','2025-10-26 20:13:30'),(41,'usb-flash',8,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2025-10-26 20:13:30','2025-10-26 20:13:30'),(42,'game-mouse',9,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2025-10-26 20:13:30','2025-10-26 20:13:30'),(43,'security',10,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2025-10-26 20:13:30','2025-10-26 20:13:30'),(44,'watch',11,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2025-10-26 20:13:30','2025-10-26 20:13:30'),(45,'scanner',12,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2025-10-26 20:13:30','2025-10-26 20:13:30'),(46,'foodpound',1,'Botble\\Ecommerce\\Models\\Brand','brands','2025-10-26 20:13:31','2025-10-26 20:13:31'),(47,'itea-jsc',2,'Botble\\Ecommerce\\Models\\Brand','brands','2025-10-26 20:13:31','2025-10-26 20:13:31'),(48,'soda-brand',3,'Botble\\Ecommerce\\Models\\Brand','brands','2025-10-26 20:13:31','2025-10-26 20:13:31'),(49,'farmart',4,'Botble\\Ecommerce\\Models\\Brand','brands','2025-10-26 20:13:31','2025-10-26 20:13:31'),(50,'dual-camera-20mp-digital',1,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(51,'smart-watches',2,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(52,'beat-headphone',3,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(53,'red-black-headphone',4,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(54,'smart-watch-external-digital',5,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(55,'nikon-hd-camera',6,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(56,'audio-equipment',7,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(57,'smart-televisions',8,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(58,'samsung-smart-phone-digital',9,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(59,'herschel-leather-duffle-bag-in-brown-color',10,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(60,'xbox-one-wireless-controller-black-color',11,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(61,'epsion-plaster-printer',12,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(62,'sound-intone-i65-earphone-white-version-digital',13,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(63,'bo-play-mini-bluetooth-speaker',14,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(64,'apple-macbook-air-retina-133-inch-laptop',15,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(65,'apple-macbook-air-retina-12-inch-laptop',16,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(66,'samsung-gear-vr-virtual-reality-headset-digital',17,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(67,'aveeno-moisturizing-body-shower-450ml',18,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(68,'nyx-beauty-couton-pallete-makeup-12',19,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(69,'nyx-beauty-couton-pallete-makeup-12',20,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:39','2025-10-26 20:13:39'),(70,'mvmth-classical-leather-watch-in-black-digital',21,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(71,'baxter-care-hair-kit-for-bearded-mens',22,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(72,'ciate-palemore-lipstick-bold-red-color',23,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(73,'vimto-squash-remix-apple-15-litres',24,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(74,'crock-pot-slow-cooker-digital',25,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(75,'taylors-of-harrogate-yorkshire-coffee',26,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(76,'soft-mochi-galeto-ice-cream',27,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(77,'naked-noodle-egg-noodles-singapore',28,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(78,'saute-pan-silver-digital',29,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(79,'bar-s-classic-bun-length-franks',30,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(80,'broccoli-crowns',31,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(81,'slimming-world-vegan-mac-greens',32,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(82,'haagen-dazs-salted-caramel-digital',33,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(83,'iceland-3-solo-exotic-burst',34,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(84,'extreme-budweiser-light-can',35,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(85,'iceland-macaroni-cheese-traybake',36,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(86,'dolmio-bolognese-pasta-sauce-digital',37,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(87,'sitema-bakeit-plastic-box',38,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(88,'wayfair-basics-dinner-plate-storage',39,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(89,'miko-the-panda-water-bottle',40,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(90,'sesame-seed-bread-digital',41,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(91,'morrisons-the-best-beef',42,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(92,'avocado-hass-large',43,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(93,'italia-beef-lasagne',44,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(94,'maxwell-house-classic-roast-mocha-digital',45,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(95,'bottled-pure-water-500ml',46,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(96,'famart-farmhouse-soft-white',47,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(97,'coca-cola-original-taste',48,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(98,'casillero-diablo-cabernet-sauvignon-digital',49,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(99,'arla-organic-free-range-milk',50,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(100,'aptamil-follow-on-baby-milk',51,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(101,'cuisinart-chefs-classic-hard-anodized',52,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(102,'corn-yellow-sweet-digital',53,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(103,'hobnobs-the-nobbly-biscuit',54,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(104,'honest-organic-still-lemonade',55,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(105,'ice-becks-beer-350ml-x-24-pieces',56,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(106,'iceland-6-hot-cross-buns-digital',57,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(107,'iceland-luxury-4-panini-rolls',58,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(108,'iceland-soft-scoop-vanilla',59,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(109,'iceland-spaghetti-bolognese',60,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(110,'kelloggs-coco-pops-cereal-digital',61,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(111,'kit-kat-chunky-milk-chocolate',62,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(112,'large-green-bell-pepper',63,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(113,'pice-94w-beasley-journal',64,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(114,'province-piece-glass-drinking-glass-digital',65,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:40','2025-10-26 20:13:40'),(115,'electronic',1,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2025-10-26 20:13:47','2025-10-26 20:13:47'),(116,'mobile',2,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2025-10-26 20:13:47','2025-10-26 20:13:47'),(117,'iphone',3,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2025-10-26 20:13:47','2025-10-26 20:13:47'),(118,'printer',4,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2025-10-26 20:13:47','2025-10-26 20:13:47'),(119,'office',5,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2025-10-26 20:13:47','2025-10-26 20:13:47'),(120,'it',6,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2025-10-26 20:13:47','2025-10-26 20:13:47'),(121,'design',1,'Botble\\Blog\\Models\\Category','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(122,'lifestyle',2,'Botble\\Blog\\Models\\Category','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(123,'travel-tips',3,'Botble\\Blog\\Models\\Category','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(124,'healthy',4,'Botble\\Blog\\Models\\Category','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(125,'travel-tips',5,'Botble\\Blog\\Models\\Category','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(126,'hotel',6,'Botble\\Blog\\Models\\Category','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(127,'nature',7,'Botble\\Blog\\Models\\Category','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(128,'general',1,'Botble\\Blog\\Models\\Tag','tag','2025-10-26 20:13:48','2025-10-26 20:13:48'),(129,'design',2,'Botble\\Blog\\Models\\Tag','tag','2025-10-26 20:13:48','2025-10-26 20:13:48'),(130,'fashion',3,'Botble\\Blog\\Models\\Tag','tag','2025-10-26 20:13:48','2025-10-26 20:13:48'),(131,'branding',4,'Botble\\Blog\\Models\\Tag','tag','2025-10-26 20:13:48','2025-10-26 20:13:48'),(132,'modern',5,'Botble\\Blog\\Models\\Tag','tag','2025-10-26 20:13:48','2025-10-26 20:13:48'),(133,'the-top-2020-handbag-trends-to-know',1,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(134,'top-search-engine-optimization-strategies',2,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(135,'which-company-would-you-choose',3,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(136,'used-car-dealer-sales-tricks-exposed',4,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(137,'20-ways-to-sell-your-product-faster',5,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(138,'the-secrets-of-rich-and-famous-writers',6,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(139,'imagine-losing-20-pounds-in-14-days',7,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(140,'are-you-still-using-that-slow-old-typewriter',8,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(141,'a-skin-cream-thats-proven-to-work',9,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(142,'10-reasons-to-start-your-own-profitable-website',10,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(143,'simple-ways-to-reduce-your-unwanted-wrinkles',11,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(144,'apple-imac-with-retina-5k-display-review',12,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(145,'10000-web-site-visitors-in-one-monthguaranteed',13,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(146,'unlock-the-secrets-of-selling-high-ticket-items',14,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(147,'4-expert-tips-on-how-to-choose-the-right-mens-wallet',15,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(148,'sexy-clutches-how-to-buy-wear-a-designer-clutch-bag',16,'Botble\\Blog\\Models\\Post','blog','2025-10-26 20:13:48','2025-10-26 20:13:48'),(149,'senior-full-stack-engineer-creator-success-full-time',1,'ArchiElite\\Career\\Models\\Career','careers','2025-10-26 20:13:49','2025-10-26 20:13:49'),(150,'data-science-specialist-analytics-division',2,'ArchiElite\\Career\\Models\\Career','careers','2025-10-26 20:13:49','2025-10-26 20:13:49'),(151,'product-marketing-manager-growth-team',3,'ArchiElite\\Career\\Models\\Career','careers','2025-10-26 20:13:49','2025-10-26 20:13:49'),(152,'uxui-designer-user-experience-team',4,'ArchiElite\\Career\\Models\\Career','careers','2025-10-26 20:13:49','2025-10-26 20:13:49'),(153,'operations-manager-supply-chain-division',5,'ArchiElite\\Career\\Models\\Career','careers','2025-10-26 20:13:49','2025-10-26 20:13:49'),(154,'financial-analyst-investment-group',6,'ArchiElite\\Career\\Models\\Career','careers','2025-10-26 20:13:49','2025-10-26 20:13:49'),(155,'techboost-solutions',1,'Botble\\BusinessService\\Models\\Service','services','2025-10-26 20:13:49','2025-10-26 20:13:49'),(156,'ecogreen-landscaping',2,'Botble\\BusinessService\\Models\\Service','services','2025-10-26 20:13:49','2025-10-26 20:13:49'),(157,'precision-financial-advisors',3,'Botble\\BusinessService\\Models\\Service','services','2025-10-26 20:13:49','2025-10-26 20:13:49'),(158,'healthhub-wellness-programs',4,'Botble\\BusinessService\\Models\\Service','services','2025-10-26 20:13:49','2025-10-26 20:13:49'),(159,'swiftdelivery-logistics',5,'Botble\\BusinessService\\Models\\Service','services','2025-10-26 20:13:49','2025-10-26 20:13:49'),(160,'in-house-logistics-services',6,'Botble\\BusinessService\\Models\\Service','services','2025-10-26 20:13:49','2025-10-26 20:13:49'),(161,'trial-plan',1,'Botble\\BusinessService\\Models\\Package','packages','2025-10-26 20:13:49','2025-10-26 20:13:49'),(162,'standard',2,'Botble\\BusinessService\\Models\\Package','packages','2025-10-26 20:13:49','2025-10-26 20:13:49'),(163,'business',3,'Botble\\BusinessService\\Models\\Package','packages','2025-10-26 20:13:49','2025-10-26 20:13:49'),(164,'enterprise',4,'Botble\\BusinessService\\Models\\Package','packages','2025-10-26 20:13:49','2025-10-26 20:13:49'),(165,'perfect',1,'Botble\\Gallery\\Models\\Gallery','galleries','2025-10-26 20:13:53','2025-10-26 20:13:53'),(166,'new-day',2,'Botble\\Gallery\\Models\\Gallery','galleries','2025-10-26 20:13:53','2025-10-26 20:13:53'),(167,'happy-day',3,'Botble\\Gallery\\Models\\Gallery','galleries','2025-10-26 20:13:53','2025-10-26 20:13:53'),(168,'nature',4,'Botble\\Gallery\\Models\\Gallery','galleries','2025-10-26 20:13:53','2025-10-26 20:13:53'),(169,'morning',5,'Botble\\Gallery\\Models\\Gallery','galleries','2025-10-26 20:13:53','2025-10-26 20:13:53'),(170,'sunset',6,'Botble\\Gallery\\Models\\Gallery','galleries','2025-10-26 20:13:53','2025-10-26 20:13:53'),(171,'ocean-views',7,'Botble\\Gallery\\Models\\Gallery','galleries','2025-10-26 20:13:53','2025-10-26 20:13:53'),(172,'adventure-time',8,'Botble\\Gallery\\Models\\Gallery','galleries','2025-10-26 20:13:53','2025-10-26 20:13:53'),(173,'dual-camera-20mp-digital',66,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(174,'smart-watches',67,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(175,'smart-watches',68,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(176,'smart-watches',69,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(177,'beat-headphone',70,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(178,'red-black-headphone',71,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(179,'smart-watch-external-digital',72,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(180,'smart-watch-external-digital',73,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(181,'smart-watch-external-digital',74,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(182,'nikon-hd-camera',75,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(183,'nikon-hd-camera',76,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(184,'nikon-hd-camera',77,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(185,'audio-equipment',78,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(186,'audio-equipment',79,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(187,'audio-equipment',80,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(188,'audio-equipment',81,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(189,'smart-televisions',82,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(190,'smart-televisions',83,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(191,'smart-televisions',84,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(192,'samsung-smart-phone-digital',85,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(193,'herschel-leather-duffle-bag-in-brown-color',86,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(194,'herschel-leather-duffle-bag-in-brown-color',87,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(195,'herschel-leather-duffle-bag-in-brown-color',88,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(196,'herschel-leather-duffle-bag-in-brown-color',89,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(197,'xbox-one-wireless-controller-black-color',90,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(198,'xbox-one-wireless-controller-black-color',91,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(199,'epsion-plaster-printer',92,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(200,'epsion-plaster-printer',93,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(201,'epsion-plaster-printer',94,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(202,'epsion-plaster-printer',95,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(203,'sound-intone-i65-earphone-white-version-digital',96,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(204,'sound-intone-i65-earphone-white-version-digital',97,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(205,'sound-intone-i65-earphone-white-version-digital',98,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(206,'bo-play-mini-bluetooth-speaker',99,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(207,'bo-play-mini-bluetooth-speaker',100,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(208,'bo-play-mini-bluetooth-speaker',101,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(209,'bo-play-mini-bluetooth-speaker',102,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(210,'apple-macbook-air-retina-133-inch-laptop',103,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(211,'apple-macbook-air-retina-12-inch-laptop',104,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(212,'apple-macbook-air-retina-12-inch-laptop',105,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(213,'apple-macbook-air-retina-12-inch-laptop',106,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(214,'samsung-gear-vr-virtual-reality-headset-digital',107,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(215,'samsung-gear-vr-virtual-reality-headset-digital',108,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(216,'samsung-gear-vr-virtual-reality-headset-digital',109,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(217,'samsung-gear-vr-virtual-reality-headset-digital',110,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(218,'aveeno-moisturizing-body-shower-450ml',111,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(219,'nyx-beauty-couton-pallete-makeup-12',112,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(220,'nyx-beauty-couton-pallete-makeup-12',113,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(221,'nyx-beauty-couton-pallete-makeup-12',114,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(222,'nyx-beauty-couton-pallete-makeup-12',115,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(223,'nyx-beauty-couton-pallete-makeup-12',116,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(224,'nyx-beauty-couton-pallete-makeup-12',117,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(225,'mvmth-classical-leather-watch-in-black-digital',118,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(226,'mvmth-classical-leather-watch-in-black-digital',119,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(227,'baxter-care-hair-kit-for-bearded-mens',120,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(228,'ciate-palemore-lipstick-bold-red-color',121,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(229,'vimto-squash-remix-apple-15-litres',122,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(230,'vimto-squash-remix-apple-15-litres',123,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(231,'vimto-squash-remix-apple-15-litres',124,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(232,'crock-pot-slow-cooker-digital',125,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(233,'crock-pot-slow-cooker-digital',126,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(234,'crock-pot-slow-cooker-digital',127,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(235,'crock-pot-slow-cooker-digital',128,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(236,'taylors-of-harrogate-yorkshire-coffee',129,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(237,'taylors-of-harrogate-yorkshire-coffee',130,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(238,'taylors-of-harrogate-yorkshire-coffee',131,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(239,'taylors-of-harrogate-yorkshire-coffee',132,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(240,'soft-mochi-galeto-ice-cream',133,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(241,'soft-mochi-galeto-ice-cream',134,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(242,'soft-mochi-galeto-ice-cream',135,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(243,'naked-noodle-egg-noodles-singapore',136,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(244,'naked-noodle-egg-noodles-singapore',137,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(245,'saute-pan-silver-digital',138,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(246,'saute-pan-silver-digital',139,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(247,'bar-s-classic-bun-length-franks',140,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(248,'bar-s-classic-bun-length-franks',141,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(249,'bar-s-classic-bun-length-franks',142,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(250,'broccoli-crowns',143,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(251,'slimming-world-vegan-mac-greens',144,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(252,'slimming-world-vegan-mac-greens',145,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(253,'haagen-dazs-salted-caramel-digital',146,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(254,'haagen-dazs-salted-caramel-digital',147,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(255,'iceland-3-solo-exotic-burst',148,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(256,'iceland-3-solo-exotic-burst',149,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(257,'iceland-3-solo-exotic-burst',150,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(258,'iceland-3-solo-exotic-burst',151,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(259,'extreme-budweiser-light-can',152,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(260,'iceland-macaroni-cheese-traybake',153,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(261,'iceland-macaroni-cheese-traybake',154,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(262,'iceland-macaroni-cheese-traybake',155,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(263,'dolmio-bolognese-pasta-sauce-digital',156,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(264,'dolmio-bolognese-pasta-sauce-digital',157,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(265,'dolmio-bolognese-pasta-sauce-digital',158,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(266,'sitema-bakeit-plastic-box',159,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(267,'sitema-bakeit-plastic-box',160,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(268,'sitema-bakeit-plastic-box',161,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(269,'wayfair-basics-dinner-plate-storage',162,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(270,'miko-the-panda-water-bottle',163,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(271,'miko-the-panda-water-bottle',164,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(272,'miko-the-panda-water-bottle',165,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(273,'sesame-seed-bread-digital',166,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(274,'sesame-seed-bread-digital',167,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(275,'morrisons-the-best-beef',168,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(276,'morrisons-the-best-beef',169,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(277,'avocado-hass-large',170,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(278,'avocado-hass-large',171,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(279,'avocado-hass-large',172,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(280,'avocado-hass-large',173,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(281,'italia-beef-lasagne',174,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(282,'italia-beef-lasagne',175,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(283,'maxwell-house-classic-roast-mocha-digital',176,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(284,'maxwell-house-classic-roast-mocha-digital',177,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(285,'maxwell-house-classic-roast-mocha-digital',178,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(286,'maxwell-house-classic-roast-mocha-digital',179,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(287,'bottled-pure-water-500ml',180,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(288,'famart-farmhouse-soft-white',181,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(289,'famart-farmhouse-soft-white',182,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(290,'coca-cola-original-taste',183,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(291,'coca-cola-original-taste',184,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(292,'coca-cola-original-taste',185,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(293,'coca-cola-original-taste',186,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(294,'casillero-diablo-cabernet-sauvignon-digital',187,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(295,'casillero-diablo-cabernet-sauvignon-digital',188,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(296,'arla-organic-free-range-milk',189,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(297,'aptamil-follow-on-baby-milk',190,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(298,'aptamil-follow-on-baby-milk',191,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(299,'aptamil-follow-on-baby-milk',192,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(300,'cuisinart-chefs-classic-hard-anodized',193,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(301,'cuisinart-chefs-classic-hard-anodized',194,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(302,'cuisinart-chefs-classic-hard-anodized',195,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(303,'cuisinart-chefs-classic-hard-anodized',196,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(304,'corn-yellow-sweet-digital',197,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(305,'corn-yellow-sweet-digital',198,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(306,'hobnobs-the-nobbly-biscuit',199,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(307,'hobnobs-the-nobbly-biscuit',200,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(308,'honest-organic-still-lemonade',201,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(309,'honest-organic-still-lemonade',202,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(310,'honest-organic-still-lemonade',203,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(311,'honest-organic-still-lemonade',204,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(312,'ice-becks-beer-350ml-x-24-pieces',205,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(313,'iceland-6-hot-cross-buns-digital',206,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(314,'iceland-luxury-4-panini-rolls',207,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(315,'iceland-luxury-4-panini-rolls',208,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(316,'iceland-luxury-4-panini-rolls',209,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(317,'iceland-soft-scoop-vanilla',210,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(318,'iceland-soft-scoop-vanilla',211,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(319,'iceland-spaghetti-bolognese',212,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(320,'iceland-spaghetti-bolognese',213,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(321,'iceland-spaghetti-bolognese',214,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(322,'iceland-spaghetti-bolognese',215,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(323,'iceland-spaghetti-bolognese',216,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(324,'kelloggs-coco-pops-cereal-digital',217,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(325,'kelloggs-coco-pops-cereal-digital',218,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(326,'kelloggs-coco-pops-cereal-digital',219,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(327,'kit-kat-chunky-milk-chocolate',220,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(328,'kit-kat-chunky-milk-chocolate',221,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(329,'kit-kat-chunky-milk-chocolate',222,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(330,'large-green-bell-pepper',223,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(331,'large-green-bell-pepper',224,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(332,'large-green-bell-pepper',225,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(333,'large-green-bell-pepper',226,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(334,'pice-94w-beasley-journal',227,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(335,'pice-94w-beasley-journal',228,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(336,'pice-94w-beasley-journal',229,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(337,'province-piece-glass-drinking-glass-digital',230,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(338,'province-piece-glass-drinking-glass-digital',231,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(339,'province-piece-glass-drinking-glass-digital',232,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(340,'province-piece-glass-drinking-glass-digital',233,'Botble\\Ecommerce\\Models\\Product','products','2025-10-26 20:13:53','2025-10-26 20:13:53'),(341,'new-arrival',1,'Botble\\Ecommerce\\Models\\ProductCollection','collections','2025-10-26 20:13:53','2025-10-26 20:13:53'),(342,'best-sellers',2,'Botble\\Ecommerce\\Models\\ProductCollection','collections','2025-10-26 20:13:53','2025-10-26 20:13:53'),(343,'special-offer',3,'Botble\\Ecommerce\\Models\\ProductCollection','collections','2025-10-26 20:13:53','2025-10-26 20:13:53'),(344,'devon-lane',1,'Botble\\Team\\Models\\Team','teams','2025-10-26 20:13:53','2025-10-26 20:13:53'),(345,'jennie-tho',2,'Botble\\Team\\Models\\Team','teams','2025-10-26 20:13:53','2025-10-26 20:13:53'),(346,'symon-lesin',3,'Botble\\Team\\Models\\Team','teams','2025-10-26 20:13:53','2025-10-26 20:13:53'),(347,'xao-shin',4,'Botble\\Team\\Models\\Team','teams','2025-10-26 20:13:53','2025-10-26 20:13:53'),(348,'peter-cop',5,'Botble\\Team\\Models\\Team','teams','2025-10-26 20:13:53','2025-10-26 20:13:53'),(349,'darrell-steward',6,'Botble\\Team\\Models\\Team','teams','2025-10-26 20:13:53','2025-10-26 20:13:53'),(350,'guy-hawkins',7,'Botble\\Team\\Models\\Team','teams','2025-10-26 20:13:53','2025-10-26 20:13:53'),(351,'ronald-richards',8,'Botble\\Team\\Models\\Team','teams','2025-10-26 20:13:53','2025-10-26 20:13:53'),(352,'kathryn-murphy',9,'Botble\\Team\\Models\\Team','teams','2025-10-26 20:13:53','2025-10-26 20:13:53'),(353,'floyd-miles',10,'Botble\\Team\\Models\\Team','teams','2025-10-26 20:13:53','2025-10-26 20:13:53'),(354,'devon-lane',11,'Botble\\Team\\Models\\Team','teams','2025-10-26 20:13:53','2025-10-26 20:13:53'),(355,'cameron-williamson',12,'Botble\\Team\\Models\\Team','teams','2025-10-26 20:13:53','2025-10-26 20:13:53');
/*!40000 ALTER TABLE `slugs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `slugs_translations`
--
DROP TABLE IF EXISTS `slugs_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `slugs_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`slugs_id` bigint unsigned NOT NULL,
`key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`prefix` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT '',
PRIMARY KEY (`lang_code`,`slugs_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `slugs_translations`
--
LOCK TABLES `slugs_translations` WRITE;
/*!40000 ALTER TABLE `slugs_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `slugs_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `social_logins`
--
DROP TABLE IF EXISTS `social_logins`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `social_logins` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint unsigned NOT NULL,
`provider` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`provider_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` text COLLATE utf8mb4_unicode_ci,
`refresh_token` text COLLATE utf8mb4_unicode_ci,
`token_expires_at` timestamp NULL DEFAULT NULL,
`provider_data` json DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `social_logins_provider_provider_id_unique` (`provider`,`provider_id`),
KEY `social_logins_user_type_user_id_index` (`user_type`,`user_id`),
KEY `social_logins_user_id_user_type_index` (`user_id`,`user_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `social_logins`
--
LOCK TABLES `social_logins` WRITE;
/*!40000 ALTER TABLE `social_logins` DISABLE KEYS */;
/*!40000 ALTER TABLE `social_logins` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `states`
--
DROP TABLE IF EXISTS `states`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `states` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`abbreviation` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`country_id` bigint unsigned DEFAULT NULL,
`order` tinyint NOT NULL DEFAULT '0',
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_default` tinyint unsigned NOT NULL DEFAULT '0',
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `states_slug_unique` (`slug`),
KEY `idx_states_name` (`name`),
KEY `idx_states_status` (`status`),
KEY `idx_states_country_id` (`country_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `states`
--
LOCK TABLES `states` WRITE;
/*!40000 ALTER TABLE `states` DISABLE KEYS */;
/*!40000 ALTER TABLE `states` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `states_translations`
--
DROP TABLE IF EXISTS `states_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `states_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`states_id` bigint unsigned NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`abbreviation` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`states_id`),
KEY `idx_states_trans_state_lang` (`states_id`,`lang_code`),
KEY `idx_states_trans_name` (`name`),
KEY `idx_states_trans_states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `states_translations`
--
LOCK TABLES `states_translations` WRITE;
/*!40000 ALTER TABLE `states_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `states_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tags`
--
DROP TABLE IF EXISTS `tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tags` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`author_id` bigint unsigned DEFAULT NULL,
`author_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tags`
--
LOCK TABLES `tags` WRITE;
/*!40000 ALTER TABLE `tags` DISABLE KEYS */;
INSERT INTO `tags` VALUES (1,'General',1,'Botble\\ACL\\Models\\User',NULL,'published','2025-10-26 20:13:48','2025-10-26 20:13:48'),(2,'Design',1,'Botble\\ACL\\Models\\User',NULL,'published','2025-10-26 20:13:48','2025-10-26 20:13:48'),(3,'Fashion',1,'Botble\\ACL\\Models\\User',NULL,'published','2025-10-26 20:13:48','2025-10-26 20:13:48'),(4,'Branding',1,'Botble\\ACL\\Models\\User',NULL,'published','2025-10-26 20:13:48','2025-10-26 20:13:48'),(5,'Modern',1,'Botble\\ACL\\Models\\User',NULL,'published','2025-10-26 20:13:48','2025-10-26 20:13:48');
/*!40000 ALTER TABLE `tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tags_translations`
--
DROP TABLE IF EXISTS `tags_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tags_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`tags_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`tags_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tags_translations`
--
LOCK TABLES `tags_translations` WRITE;
/*!40000 ALTER TABLE `tags_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `tags_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `teams`
--
DROP TABLE IF EXISTS `teams`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `teams` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`socials` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci,
`phone` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`website` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `teams`
--
LOCK TABLES `teams` WRITE;
/*!40000 ALTER TABLE `teams` DISABLE KEYS */;
INSERT INTO `teams` VALUES (1,'Devon Lane','teams/1.png','CEO','USA','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,NULL,NULL,NULL,NULL,NULL),(2,'Jennie Tho','teams/2.png','Finance Manager','Qatar','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,NULL,NULL,NULL,NULL,NULL),(3,'Symon Lesin','teams/3.png','Technology Manager','India','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,NULL,NULL,NULL,NULL,NULL),(4,'Xao Shin','teams/4.png','Developer Fullstack','China','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,NULL,NULL,NULL,NULL,NULL),(5,'Peter Cop','teams/5.png','Designer','Russia','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,NULL,NULL,NULL,NULL,NULL),(6,'Darrell Steward','teams/4.png','Product Designer','USA','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,NULL,NULL,NULL,NULL,NULL),(7,'Guy Hawkins','teams/4.png','Computer Programmer','Denmark','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,NULL,NULL,NULL,NULL,NULL),(8,'Ronald Richards','teams/4.png','Data scientist','Sweden','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,NULL,NULL,NULL,NULL,NULL),(9,'Kathryn Murphy','teams/2.png','Network administrator','Finland','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,NULL,NULL,NULL,NULL,NULL),(10,'Floyd Miles','teams/4.png','Computer analyst','Latvia','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,NULL,NULL,NULL,NULL,NULL),(11,'Devon Lane','teams/5.png','Computer scientist','Iceland','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,NULL,NULL,NULL,NULL,NULL),(12,'Cameron Williamson','teams/3.png','Product Designer','Estonia','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2025-10-26 20:13:49','2025-10-26 20:13:49',NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `teams` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `teams_translations`
--
DROP TABLE IF EXISTS `teams_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `teams_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`teams_id` int NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci,
`address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`teams_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `teams_translations`
--
LOCK TABLES `teams_translations` WRITE;
/*!40000 ALTER TABLE `teams_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `teams_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `testimonials`
--
DROP TABLE IF EXISTS `testimonials`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `testimonials` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`company` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `testimonials`
--
LOCK TABLES `testimonials` WRITE;
/*!40000 ALTER TABLE `testimonials` DISABLE KEYS */;
INSERT INTO `testimonials` VALUES (1,'Wade Warren','Even factoring differences in body weight between children and adults into account.','testimonials/1.png','Louis Vuitton','published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(2,'Brooklyn Simmons','So yes, the alcohol (ethanol) in hand sanitizers can be absorbed through the skin, but no, it would not cause intoxication.','testimonials/2.png','Nintendo','published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(3,'Jenny Wilson','Their blood alcohol levels rose to 0.007 to 0.02 o/oo (parts per thousand), or 0.7 to 2.0 mg/L.','testimonials/3.png','Starbucks','published','2025-10-26 20:13:47','2025-10-26 20:13:47'),(4,'Albert Flores','So yes, the alcohol (ethanol) in hand sanitizers can be absorbed through the skin, but no, it would not cause intoxication.','testimonials/4.png','Bank of America','published','2025-10-26 20:13:47','2025-10-26 20:13:47');
/*!40000 ALTER TABLE `testimonials` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `testimonials_translations`
--
DROP TABLE IF EXISTS `testimonials_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `testimonials_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`testimonials_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci,
`company` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`testimonials_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `testimonials_translations`
--
LOCK TABLES `testimonials_translations` WRITE;
/*!40000 ALTER TABLE `testimonials_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `testimonials_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_meta`
--
DROP TABLE IF EXISTS `user_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_meta` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`key` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`value` text COLLATE utf8mb4_unicode_ci,
`user_id` bigint unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `user_meta_user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_meta`
--
LOCK TABLES `user_meta` WRITE;
/*!40000 ALTER TABLE `user_meta` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_meta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_settings`
--
DROP TABLE IF EXISTS `user_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_settings` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint unsigned NOT NULL,
`key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` json NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `user_settings_user_type_user_id_key_unique` (`user_type`,`user_id`,`key`),
KEY `user_settings_user_type_user_id_index` (`user_type`,`user_id`),
KEY `user_settings_key_index` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_settings`
--
LOCK TABLES `user_settings` WRITE;
/*!40000 ALTER TABLE `user_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`first_name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`last_name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`username` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`avatar_id` bigint unsigned DEFAULT NULL,
`super_user` tinyint(1) NOT NULL DEFAULT '0',
`manage_supers` tinyint(1) NOT NULL DEFAULT '0',
`permissions` text COLLATE utf8mb4_unicode_ci,
`last_login` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`),
UNIQUE KEY `users_username_unique` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'bernier.thelma@heller.biz',NULL,NULL,'$2y$12$F0H5nnQzXKBPJInXvi6X7.xQ/9PoUgYonvMzGIGvWag7wpT3FDQL.',NULL,'2025-10-26 20:13:21','2025-10-26 20:13:21','Tyrel','Okuneva','admin',NULL,1,1,NULL,NULL);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `widgets`
--
DROP TABLE IF EXISTS `widgets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `widgets` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`widget_id` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`sidebar_id` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`theme` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`position` tinyint unsigned NOT NULL DEFAULT '0',
`data` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `widgets`
--
LOCK TABLES `widgets` WRITE;
/*!40000 ALTER TABLE `widgets` DISABLE KEYS */;
INSERT INTO `widgets` VALUES (1,'NewsletterWidget','pre_footer_sidebar','iori',0,'{\"name\":\"Subscribe to Newsletter.\",\"description\":\"Subscribe to get latest updates and information.\",\"title\":\"Subscribe our newsletter\",\"subtitle\":\"By clicking the button, you are agreeing with our Term & Conditions\",\"image\":\"general\\/newsletter-image.png\",\"icon_primary\":\"logo\\/logo-circle.png\"}','2025-10-26 20:13:49','2025-10-26 20:13:49'),(2,'SiteInformationWidget','footer_menu','iori',1,'{\"logo\":\"logo\\/logo.png\",\"url\":\"#\",\"address\":\"4517 Washington Ave.Manchester, Kentucky 39495\",\"working_hours\":\"08:00 - 17:00\"}','2025-10-26 20:13:49','2025-10-26 20:13:49'),(3,'Botble\\Widget\\Widgets\\CoreSimpleMenu','footer_menu','iori',2,'{\"id\":\"Botble\\\\Widget\\\\Widgets\\\\CoreSimpleMenu\",\"name\":\"About Us\",\"items\":[[{\"key\":\"label\",\"value\":\"Mission & Vision\"},{\"key\":\"url\",\"value\":\"\\/about-us\"}],[{\"key\":\"label\",\"value\":\"Our Team\"},{\"key\":\"url\",\"value\":\"\\/teams\"}],[{\"key\":\"label\",\"value\":\"Press & Media\"},{\"key\":\"url\",\"value\":\"\\/press-media\"}],[{\"key\":\"label\",\"value\":\"Advertising\"},{\"key\":\"url\",\"value\":\"\\/advertising\"}],[{\"key\":\"label\",\"value\":\"Testimonials\"},{\"key\":\"url\",\"value\":\"\\/testimonials\"}]]}','2025-10-26 20:13:49','2025-10-26 20:13:49'),(4,'Botble\\Widget\\Widgets\\CoreSimpleMenu','footer_menu','iori',3,'{\"id\":\"Botble\\\\Widget\\\\Widgets\\\\CoreSimpleMenu\",\"name\":\"Resources\",\"items\":[[{\"key\":\"label\",\"value\":\"Project management\"},{\"key\":\"url\",\"value\":\"\\/project-management\"}],[{\"key\":\"label\",\"value\":\"Solutions\"},{\"key\":\"url\",\"value\":\"\\/solutions\"}],[{\"key\":\"label\",\"value\":\"Customers\"},{\"key\":\"url\",\"value\":\"\\/teams\"}],[{\"key\":\"label\",\"value\":\"News & Events\"},{\"key\":\"url\",\"value\":\"\\/blog\"}],[{\"key\":\"label\",\"value\":\"Careers\"},{\"key\":\"url\",\"value\":\"\\/career-listing\"}],[{\"key\":\"label\",\"value\":\"Support\"},{\"key\":\"url\",\"value\":\"\\/help-center\"}]]}','2025-10-26 20:13:49','2025-10-26 20:13:49'),(5,'Botble\\Widget\\Widgets\\CoreSimpleMenu','footer_menu','iori',4,'{\"id\":\"Botble\\\\Widget\\\\Widgets\\\\CoreSimpleMenu\",\"name\":\"We offer\",\"items\":[[{\"key\":\"label\",\"value\":\"Project software\"},{\"key\":\"url\",\"value\":\"\\/project-software\"}],[{\"key\":\"label\",\"value\":\"Resource software\"},{\"key\":\"url\",\"value\":\"\\/resource-software\"}],[{\"key\":\"label\",\"value\":\"Workflow automation\"},{\"key\":\"url\",\"value\":\"\\/workflow-automation\"}],[{\"key\":\"label\",\"value\":\"Gantt chart makers\"},{\"key\":\"url\",\"value\":\"\\/gantt-chart-makers\"}],[{\"key\":\"label\",\"value\":\"Project dashboards\"},{\"key\":\"url\",\"value\":\"\\/project-software\"}],[{\"key\":\"label\",\"value\":\"Task software\"},{\"key\":\"url\",\"value\":\"\\/resource-software\"}]]}','2025-10-26 20:13:49','2025-10-26 20:13:49'),(6,'AppsDownloadWidget','footer_menu','iori',5,'{\"id\":\"AppsDownloadWidget\",\"title\":\"App & Payment\",\"subtitle\":\"Download our Apps and get extra 15% Discount on your first Order.\",\"platform_google_play_logo\":\"general\\/google.png\",\"platform_google_play_url\":\"https:\\/\\/play.google.com\\/store\",\"platform_apple_store_logo\":\"general\\/apple.png\",\"platform_apple_store_url\":\"https:\\/\\/www.apple.com\\/store\"}','2025-10-26 20:13:49','2025-10-26 20:13:49'),(7,'BlogSearchWidget','blog_sidebar','iori',1,'{\"id\":\"BlogSearchWidget\",\"name\":\"Blog Search\"}','2025-10-26 20:13:49','2025-10-26 20:13:49'),(8,'BlogCategoriesWidget','blog_sidebar','iori',2,'{\"id\":\"BlogCategoriesWidget\",\"name\":\"Blog Categories\"}','2025-10-26 20:13:49','2025-10-26 20:13:49'),(9,'BlogPostsWidget','blog_sidebar','iori',3,'{\"id\":\"BlogPostsWidget\",\"name\":\"Blog Posts\",\"type\":\"popular\",\"limit\":5,\"style\":\"sidebar\"}','2025-10-26 20:13:49','2025-10-26 20:13:49'),(10,'BlogTagsWidget','blog_sidebar','iori',4,'{\"id\":\"BlogTagsWidget\",\"name\":\"Blog Tags\"}','2025-10-26 20:13:49','2025-10-26 20:13:49'),(11,'FeaturedProductCategoryWidget','product_sidebar','iori',1,'{\"id\":\"FeaturedProductCategoryWidget\",\"title\":\"Ready to capture every wonderful moment\",\"subtitle\":\"CAMERA COLLECTION\",\"image_primary\":\"general\\/banner-product.png\",\"image_secondary\":\"general\\/bg-banner-secondary.png\",\"category_ids\":[\"2\",\"3\",\"4\",\"5\"]}','2025-10-26 20:13:49','2025-10-26 20:13:49'),(12,'ProductsWidget','product_list_sidebar','iori',1,'{\"id\":\"ProductsWidget\",\"title\":\"Popular Items\",\"number_of_display\":6}','2025-10-26 20:13:49','2025-10-26 20:13:49');
/*!40000 ALTER TABLE `widgets` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2025-10-27 10:13:55