-- phpMyAdmin SQL Dump -- version 5.2.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Feb 04, 2025 at 11:09 AM -- Server version: 10.4.32-MariaDB -- PHP Version: 8.2.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `nextdestina_v2` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) DEFAULT NULL, `username` varchar(50) DEFAULT NULL, `email` varchar(191) DEFAULT NULL, `password` varchar(191) DEFAULT NULL, `image` varchar(191) DEFAULT NULL, `image_driver` varchar(50) DEFAULT NULL, `phone` varchar(191) DEFAULT NULL, `address` text DEFAULT NULL, `admin_access` text DEFAULT NULL, `last_login` varchar(50) DEFAULT NULL, `last_seen` datetime DEFAULT NULL, `status` tinyint(1) DEFAULT 0, `remember_token` varchar(100) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admins` -- INSERT INTO `admins` (`id`, `name`, `username`, `email`, `password`, `image`, `image_driver`, `phone`, `address`, `admin_access`, `last_login`, `last_seen`, `status`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'admin', 'admin', 'admin@finder.com', '$2a$12$PdGoWWk/0pF256zeELw3Ke/9MLziP6NSeyL7Fx.rocHOKuKNklwDe', 'adminProfileImage/MJGbtM2d8vCESRutAJmWT2HKolLwhL.avif', 'local', '+4455541455', 'Dhaka, Bangladesh', NULL, '2024-09-19 17:44:15', '2025-02-04 16:08:22', 1, 'QDpnMpB6dwEN4rVRlAUejZt0uz8gyVXvmEVBsmY17ndZZw2vgHT1uePkFoRQ', NULL, '2025-02-04 10:08:22'); -- -------------------------------------------------------- -- -- Table structure for table `basic_controls` -- CREATE TABLE `basic_controls` ( `id` bigint(20) UNSIGNED NOT NULL, `site_title` varchar(255) DEFAULT NULL, `theme` varchar(50) DEFAULT NULL, `home_style` varchar(255) DEFAULT 'layout_1', `adventure_primary_color` varchar(50) DEFAULT NULL, `adventure_secondary_color` varchar(50) DEFAULT NULL, `relaxation_primary_color` varchar(50) DEFAULT NULL, `relaxation_secondary_color` varchar(50) DEFAULT NULL, `time_zone` varchar(50) DEFAULT NULL, `base_currency` varchar(20) DEFAULT NULL, `currency_symbol` varchar(20) DEFAULT NULL, `admin_prefix` varchar(191) DEFAULT NULL, `is_currency_position` varchar(191) NOT NULL DEFAULT 'left' COMMENT 'left, right', `has_space_between_currency_and_amount` tinyint(1) NOT NULL DEFAULT 0, `is_force_ssl` tinyint(1) NOT NULL DEFAULT 0, `is_maintenance_mode` tinyint(1) NOT NULL DEFAULT 0, `paginate` int(11) DEFAULT NULL, `user_paginate` int(11) NOT NULL DEFAULT 15, `strong_password` tinyint(1) NOT NULL DEFAULT 0, `registration` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0 => disable, 1 => enable', `fraction_number` int(11) DEFAULT NULL, `sender_email` varchar(255) DEFAULT NULL, `sender_email_name` varchar(255) DEFAULT NULL, `email_description` text DEFAULT NULL, `push_notification` tinyint(1) NOT NULL DEFAULT 0, `in_app_notification` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0 => inactive, 1 => active', `email_notification` tinyint(1) NOT NULL DEFAULT 0, `email_verification` tinyint(1) NOT NULL DEFAULT 0, `sms_notification` tinyint(1) NOT NULL DEFAULT 0, `sms_verification` tinyint(1) NOT NULL DEFAULT 0, `tawk_id` varchar(255) DEFAULT NULL, `tawk_status` tinyint(1) NOT NULL DEFAULT 0, `fb_messenger_status` tinyint(1) NOT NULL DEFAULT 0, `fb_app_id` varchar(255) DEFAULT NULL, `fb_page_id` varchar(255) DEFAULT NULL, `manual_recaptcha` tinyint(1) DEFAULT 0 COMMENT '0 =>inactive, 1 => active ', `google_recaptcha` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0=>inactive, 1 =>active', `manual_recaptcha_admin_login` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0 => inactive, 1 => active ', `manual_recaptcha_login` tinyint(1) DEFAULT 0 COMMENT '0 = inactive, 1 = active', `manual_recaptcha_register` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0 = inactive, 1 = active', `google_recaptcha_admin_login` tinyint(1) DEFAULT 0 COMMENT '0 = inactive, 1 = active', `google_recaptcha_login` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0 = inactive, 1 = active', `google_recaptcha_register` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0 = inactive, 1 = active', `measurement_id` varchar(255) DEFAULT NULL, `analytic_status` tinyint(1) DEFAULT NULL, `error_log` tinyint(1) DEFAULT NULL, `is_active_cron_notification` tinyint(1) DEFAULT NULL, `logo` varchar(255) DEFAULT NULL, `logo_driver` varchar(20) DEFAULT NULL, `favicon` varchar(255) DEFAULT NULL, `favicon_driver` varchar(20) DEFAULT NULL, `admin_logo` varchar(255) DEFAULT NULL, `admin_logo_driver` varchar(20) DEFAULT NULL, `admin_dark_mode_logo` varchar(255) DEFAULT NULL, `admin_dark_mode_logo_driver` varchar(50) DEFAULT NULL, `automatic_payout_permission` tinyint(1) NOT NULL DEFAULT 0, `date_time_format` varchar(255) DEFAULT NULL, `cookie_status` tinyint(1) NOT NULL DEFAULT 0, `cookie_heading` varchar(255) DEFAULT NULL, `cookie_description` text DEFAULT NULL, `cookie_button` varchar(255) DEFAULT NULL, `cookie_button_link` varchar(255) DEFAULT NULL, `cookie_image` varchar(255) DEFAULT NULL, `cookie_image_driver` varchar(255) DEFAULT NULL, `isKycMandatory` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `basic_controls` -- INSERT INTO `basic_controls` (`id`, `site_title`, `theme`, `home_style`, `adventure_primary_color`, `adventure_secondary_color`, `relaxation_primary_color`, `relaxation_secondary_color`, `time_zone`, `base_currency`, `currency_symbol`, `admin_prefix`, `is_currency_position`, `has_space_between_currency_and_amount`, `is_force_ssl`, `is_maintenance_mode`, `paginate`, `user_paginate`, `strong_password`, `registration`, `fraction_number`, `sender_email`, `sender_email_name`, `email_description`, `push_notification`, `in_app_notification`, `email_notification`, `email_verification`, `sms_notification`, `sms_verification`, `tawk_id`, `tawk_status`, `fb_messenger_status`, `fb_app_id`, `fb_page_id`, `manual_recaptcha`, `google_recaptcha`, `manual_recaptcha_admin_login`, `manual_recaptcha_login`, `manual_recaptcha_register`, `google_recaptcha_admin_login`, `google_recaptcha_login`, `google_recaptcha_register`, `measurement_id`, `analytic_status`, `error_log`, `is_active_cron_notification`, `logo`, `logo_driver`, `favicon`, `favicon_driver`, `admin_logo`, `admin_logo_driver`, `admin_dark_mode_logo`, `admin_dark_mode_logo_driver`, `automatic_payout_permission`, `date_time_format`, `cookie_status`, `cookie_heading`, `cookie_description`, `cookie_button`, `cookie_button_link`, `cookie_image`, `cookie_image_driver`, `isKycMandatory`, `created_at`, `updated_at`) VALUES (1, 'Next Destina', 'relaxation', 'home_202', '#16a085', '#03292e', '#033f1b', '#ff8e3f', 'Asia/Dhaka', 'USD', '$', 'admin', 'left', 0, 0, 0, 10, 15, 0, 1, 2, 'support@achi.com', 'Bug Admin', 'Hello [[name]],

[[message]]\r\n

 Sincerely,\r\nTeam Bug Finder', 0, 0, 1, 1, 0, 0, 'OSLDSF465DD', 0, 0, 'KLSDKF789', '654646977', 0, 0, 0, 0, 0, 0, 1, 1, 'aaaaaa', 1, 0, 1, 'logo/OHxX2eWvCf6U5UQAwNVsm6Z928pieC.webp', 'local', 'logo/NR8016eBrEO4rdt5K8N0a52xeJUQ2E.webp', 'local', 'logo/EtGKaDaui40Vel3WCFHS4vYEI0Zmxx.webp', 'local', 'logo/iDxAJOnWP3SO4lpqEzcO1ljBcTfMO1.webp', 'local', 0, 'd/m/Y', 1, 'We Use Cookies!', 'We use cookies to ensure that give you the best experience on your website.', 'See more', 'cookie-policy', 'cookie/RCOlNZfCzNhUiG375SfqoTPHSdadAd.webp', 'local', 0, '2023-06-13 18:35:41', '2025-01-14 11:33:25'); -- -------------------------------------------------------- -- -- Table structure for table `blogs` -- CREATE TABLE `blogs` ( `id` bigint(20) UNSIGNED NOT NULL, `author_id` int(11) DEFAULT NULL, `blog_category_id` int(11) DEFAULT NULL, `blog_image` varchar(255) DEFAULT NULL, `blogThumb` varchar(255) DEFAULT NULL, `blogThumb_driver` varchar(40) DEFAULT NULL, `blog_image_driver` varchar(255) DEFAULT NULL, `blog_status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1=> Active, 0=>Inactive', `breadcrumb_status` varchar(255) DEFAULT NULL, `breadcrumb_image` varchar(255) DEFAULT NULL, `breadcrumb_image_driver` varchar(255) DEFAULT NULL, `page_title` varchar(191) DEFAULT NULL, `meta_title` varchar(191) DEFAULT NULL, `meta_keywords` varchar(191) DEFAULT NULL, `meta_description` text DEFAULT NULL, `og_description` text DEFAULT NULL, `meta_robots` varchar(255) DEFAULT NULL, `meta_image` varchar(191) DEFAULT NULL, `meta_image_driver` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `blogs` -- INSERT INTO `blogs` (`id`, `author_id`, `blog_category_id`, `blog_image`, `blogThumb`, `blogThumb_driver`, `blog_image_driver`, `blog_status`, `breadcrumb_status`, `breadcrumb_image`, `breadcrumb_image_driver`, `page_title`, `meta_title`, `meta_keywords`, `meta_description`, `og_description`, `meta_robots`, `meta_image`, `meta_image_driver`, `created_at`, `updated_at`) VALUES (5, 1, 9, 'blog/Fkhs99ZsOgQQA0MRlwutBiHftcpIob.webp', 'blog/hmuXVUR8KgYoyRMtZBVgraATAAxmKY.webp', 'local', 'local', 1, '1', 'blog/A4E5AulsMxUX074MP2mgeMaje21y4B.webp', 'local', 'Blog Details', 'Blog Details', '[\"Must-Visit Hidden Gems in Maldivs\",\"blog\"]', 'Must-Visit Hidden Gems in Maldives\r\nMust-Visit Hidden Gems in Maldives\r\nMust-Visit Hidden Gems in Maldives\r\nMust-Visit Hidden Gems in Maldives\r\nMust-Visit Hidden Gems in Maldives', 'Must-Visit Hidden Gems in Maldives\r\nMust-Visit Hidden Gems in Maldives\r\nMust-Visit Hidden Gems in Maldives\r\nMust-Visit Hidden Gems in Maldives\r\nMust-Visit Hidden Gems in Maldives', '[\"index\",\"noindex\"]', '/Zyxwhi715Ym9oUX1nTVniFJlbr3FLo.webp', 'local', '2024-04-04 03:47:35', '2024-09-09 09:55:12'), (6, 1, 8, 'blog/i8XNkvF2lzOHnAdsqFfOsTUqKovQeV.webp', 'blog/QnhHYlKwBomBvD5nBYfKx48jdnVmGP.webp', 'local', 'local', 1, '1', 'blog/DhDdaKhILJLcRm1iSAIr29lnnn9V0z.webp', 'local', 'Blog Details', 'Blog Details', '[\"blog\",\"The Ultimate Guide to Solo Travel: Tips and Destinations\"]', 'The Ultimate Guide to Solo Travel: Tips and Destinations\r\nThe Ultimate Guide to Solo Travel: Tips and Destinations\r\nThe Ultimate Guide to Solo Travel: Tips and Destinations', 'The Ultimate Guide to Solo Travel: Tips and Destinations\r\nThe Ultimate Guide to Solo Travel: Tips and Destinations\r\nThe Ultimate Guide to Solo Travel: Tips and Destinations\r\nThe Ultimate Guide to Solo Travel: Tips and Destinations', '[\"index\",\"noindex\"]', '/51q8apu1WyoVLCvjGzP7pTvpQOpN97.webp', 'local', '2024-04-04 03:49:50', '2024-09-09 09:55:19'), (8, 1, 6, 'blog/0WkIc5Huzn59nCLKNsKrY80lS7PhDN.webp', 'blog/enmbbL4oNxOz20N6GhYhvp5bLX2Mdz.webp', 'local', 'local', 1, '1', 'blog/1Gd2Oxa8fa629UCRT1F28iqyuClExW.webp', 'local', 'Blog Details', 'Blog Details', '[\"blog\",\"The Impact of COVID-19 on the Travel Industry: Trends and Recovery\"]', 'The Impact of COVID-19 on the Travel Industry: Trends and Recovery\r\nThe Impact of COVID-19 on the Travel Industry: Trends and Recovery\r\nThe Impact of COVID-19 on the Travel Industry: Trends and Recovery', 'The Impact of COVID-19 on the Travel Industry: Trends and Recovery\r\nThe Impact of COVID-19 on the Travel Industry: Trends and Recovery\r\nThe Impact of COVID-19 on the Travel Industry: Trends and Recovery', '[\"index\",\"noindex\"]', '/EYQnVlOl66vCl6k2zJlKPt9BTGINYT.webp', 'local', '2024-04-04 03:52:43', '2024-09-09 09:55:26'), (17, 1, 6, 'blog/uAcHJ67RBnXIbiGLTU0xZK8yUKkiMm.webp', 'blog/OIlKBjZzkOaJvKcFw8Fg2tLbLiBveZ.webp', 'local', 'local', 1, '1', 'blog/lpnrjlmy0iWzLFGxS1nbHNoxIYOrS5.webp', 'local', 'Blog Details', 'Blog Details', '[\"Nepal Travel Guide From Dhaka Bangladesh: Everything\",\"blog\"]', 'Nepal Travel Guide From Dhaka Bangladesh: Everything\r\nNepal Travel Guide From Dhaka Bangladesh: Everything\r\nNepal Travel Guide From Dhaka Bangladesh: Everything', 'Nepal Travel Guide From Dhaka Bangladesh: Everything\r\nNepal Travel Guide From Dhaka Bangladesh: Everything\r\nNepal Travel Guide From Dhaka Bangladesh: Everything', '[\"index\",\"noindex\"]', '/QP7qFaqutu9MtEEoOlmQgIaZ1LXvXM.webp', 'local', '2024-08-10 02:57:52', '2024-09-09 09:58:59'), (18, 1, 6, 'blog/6d96mwxcvO1mzK0FeU0kxl90hsWiPF.webp', 'blog/8p7CZInmKTRVz0XwpICUIfh9QCnPuV.webp', 'local', 'local', 1, '1', 'blog/Ei1rtsPFj1NmQj9hnXVo7MPxm64BGG.webp', 'local', 'Blog Details', 'Blog Details', '[\"blog\",\"Exploring the Hidden Gems of Argentina\"]', 'Exploring the Hidden Gems of Argentina ... Exploring the Hidden Gems of Argentina', 'Exploring the Hidden Gems of Argentina Og Description', '[\"index\",\"noindex\"]', '/A1A2B3dUsWiwinCBcCDqD6um0uIHpX.webp', 'local', '2024-08-25 11:01:31', '2024-09-09 09:55:55'), (19, 1, 7, 'blog/a7ft7QwAOLJhgp9oRY9z6HdAEkEdXG.webp', 'blog/pCTLnr3SSxU9z4tJzc7CYfyaSG4Hj5.webp', 'local', 'local', 1, '1', 'blog/1Ba9yiYp2vDcsLRlTAJueQKJ22wbMh.webp', 'local', 'Blog Details', 'Blog Details', '[\"Blog\",\"The Future of Technology: Innovations Shaping Our World\"]', 'The Future of Technology: Innovations Shaping Our World.. The Future of Technology: Innovations Shaping Our World', 'The Future of Technology: Innovations Shaping Our World.. The Future of Technology: Innovations Shaping Our World Meta Description', '[\"index\",\"noindex\"]', '/IWBPLa2TcMy9qk0uH3BgahCCW9y52U.webp', 'local', '2024-08-25 11:08:35', '2024-09-19 05:27:20'); -- -------------------------------------------------------- -- -- Table structure for table `blog_categories` -- CREATE TABLE `blog_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) DEFAULT NULL, `slug` varchar(100) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `blog_categories` -- INSERT INTO `blog_categories` (`id`, `name`, `slug`, `status`, `created_at`, `updated_at`) VALUES (4, 'Industry Updates', 'industry-updates', 1, '2024-04-04 03:41:50', '2024-04-04 03:41:50'), (6, 'Email Design and Optimization', 'email-design-and-optimization', 1, '2024-04-04 03:42:16', '2024-04-04 03:42:16'), (7, 'Metrics and Analytics', 'metrics-and-analytics', 1, '2024-04-04 03:42:24', '2024-04-16 03:33:20'), (8, 'Email Automation and Personalization', 'email-automation-and-personalization', 1, '2024-04-04 03:42:33', '2024-08-29 04:50:15'); -- -------------------------------------------------------- -- -- Table structure for table `blog_details` -- CREATE TABLE `blog_details` ( `id` bigint(20) UNSIGNED NOT NULL, `blog_id` int(11) DEFAULT NULL, `language_id` int(11) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `blog_details` -- INSERT INTO `blog_details` (`id`, `blog_id`, `language_id`, `title`, `slug`, `description`, `created_at`, `updated_at`) VALUES (5, 5, 1, 'Must-Visit Hidden Gems in Maldivs', 'must-visit-hidden-gems-in-maldivs', '

While the Maldives is often associated with its iconic luxury resorts and crystal-clear waters, there are several hidden gems that offer a more authentic and varied experience of this tropical paradise. For instance, the island of Fuvahmulah stands out with its distinct freshwater lake and a unique combination of marine life, including rare species that are not commonly found in other parts of the Maldives. This island provides an off-the-beaten-path adventure with opportunities for diving in its deep-sea trenches and exploring its lush landscapes.

The island of Gan in the southernmost atoll of Addu offers a blend of history and natural beauty. It’s known for its rich cultural heritage, including remnants of British colonial architecture, and its lush mangroves and clear lagoons. Gan\'s less commercialized environment allows for a more relaxed and immersive experience, where visitors can enjoy serene bike rides along the island\'s scenic routes and explore local markets.

For those looking to experience the Maldives from a different perspective, the island of Maalhos in the North Ari Atoll provides a picturesque setting with its traditional Maldivian village atmosphere. Visitors here can engage in local crafts, enjoy community-based tourism initiatives, and explore the island\'s beautiful, relatively undiscovered beaches.

Similarly, the island of Dhunikolhu, located in the Baa Atoll, offers a quiet retreat with stunning natural scenery, including mangrove forests and rich marine biodiversity. This island\'s untouched beaches and the opportunity for eco-tourism activities like turtle watching and snorkeling in pristine coral reefs make it a unique destination for nature enthusiasts.

Lastly, the island of Hinnavaru in the Laccadive Atoll is a hidden treasure with its charming village life and unspoiled landscapes. It is an ideal spot for visitors seeking a tranquil escape, where they can enjoy snorkeling in vibrant coral gardens, relaxing on tranquil beaches, and experiencing the genuine hospitality of the local community.

Each of these hidden gems presents a different facet of the Maldives, offering travelers a chance to explore beyond the typical resort experience and uncover the diverse natural and cultural wonders that this stunning archipelago has to offer.

', '2024-04-04 03:47:35', '2024-09-16 07:38:29'), (6, 6, 1, 'The Ultimate Guide to Solo Travel: Tips and Destinations', 'the-ultimate-guide-to-solo-travel-tips-and-destinations', '

Embarking on a solo travel adventure offers a unique blend of freedom, self-discovery, and unparalleled experiences. The journey begins with selecting the right destination, ideally one that aligns with your interests and comfort level. For many first-time solo travelers, cities known for their safety and welcoming atmosphere, such as Copenhagen, Tokyo, or Barcelona, provide a good starting point. Thorough research is essential to ensure a smooth experience; understanding local customs, transportation options, and safety tips can significantly enhance your trip. Learning a few basic phrases in the local language and being aware of local currency and emergency contacts will make your travels more comfortable and secure.

Packing smart is crucial, as traveling light and efficiently helps in managing your journey better. Essential items include versatile clothing, a reliable travel backpack, a portable charger, and a first-aid kit. Staying connected is also important, whether through a local SIM card or an international phone plan, to keep in touch with family and friends and access useful travel apps. Financial management should be handled carefully; carrying a mix of cash and cards, using a secure travel wallet, and budgeting wisely can prevent unnecessary stress.

One of the greatest joys of solo travel is the freedom to create your own itinerary. This allows you to follow your interests, whether exploring museums, hiking trails, or simply enjoying local markets at your own pace. Engaging with fellow travelers and locals can enrich your experience; staying in hostels, joining group tours, or participating in local events can provide valuable connections and new perspectives. Flexibility is key, as the best experiences often come from spontaneous adventures and unexpected encounters.

Destinations such as Kyoto, Japan, with its tranquil temples and gardens, Reykjavik, Iceland, known for its stunning landscapes and warm hospitality, and Lisbon, Portugal, with its rich history and vibrant culture, are ideal for solo travelers. Vancouver, Canada, offers a mix of outdoor activities and urban exploration, while Melbourne, Australia, is perfect for those seeking a diverse cultural scene. Edinburgh, Scotland, with its historic charm and lively festivals, also makes for an engaging solo travel destination. Each of these places provides a distinct experience, ensuring that solo travelers can find their ideal adventure, filled with opportunities for personal growth and memorable encounters.

', '2024-04-04 03:49:50', '2024-09-16 07:37:17'), (7, 7, 1, 'Sustainable Travel: How to Reduce Your Carbon Footprint on Your Next Trip', 'sustainable-travel-how-to-reduce-your-carbon-footprint-on-your-next-trip', '
Share data on the carbon footprint of travel, eco-friendly
destinations, and sustainable travel practices. Lorem ipsum dolor, sit amet consectetur
adipisicing elit. Ratione, eligendi sapiente eveniet sequi consectetur quidem corporis
quaerat repellendus aliquam fuga minus modi dolorum dolore, natus nihil molestias eius
ad est.
', '2024-04-04 03:50:31', '2024-04-04 03:50:31'), (8, 8, 1, 'The Impact of COVID-19 on the Travel Industry', 'the-impact-of-covid-19-on-the-travel-industry-trends-and-tecovery', '

The impact of COVID-19 on the travel industry has been both profound and far-reaching, altering the landscape in ways that will likely have lasting effects. Initially, the pandemic caused an immediate and severe downturn, with the World Travel and Tourism Council estimating a significant decline in global travel and tourism revenue. 

Global Travel Restrictions: How lockdowns and border closures halted international and domestic travel.

Economic Impact: The financial losses faced by airlines, hotels, and tourism-dependent businesses.

Shift in Traveler Behavior: A rise in local tourism, road trips, and a preference for remote, uncrowded destinations.

Health and Safety Protocols: New travel requirements such as testing, quarantine, and enhanced hygiene measures.

Digital Transformation: Increased reliance on contactless technologies, digital bookings, and virtual tourism experiences.

Industry Recovery: Efforts by airlines, hotels, and governments to stimulate travel and adapt to new demands.

Future of Travel: Long-term changes in travel trends and how the industry is evolving post-pandemic.
', '2024-04-04 03:52:43', '2024-09-17 07:40:28'), (18, 8, 2, 'The Impact of COVID-19 on the Travel Industry: Trends and Recovery', 'the-impact-of-covid-19-on-the-travel-industry-trends-and-tecovery', '

El impacto de la COVID-19 en la industria de los viajes ha sido profundo y de largo alcance, alterando el panorama de maneras que probablemente tendrán efectos duraderos. Inicialmente, la pandemia causó una recesión inmediata y severa, y el Consejo Mundial de Viajes y Turismo estimó una disminución significativa de los ingresos globales por viajes y turismo.


  1. Restricciones globales de viajes: cómo los confinamientos y los cierres de fronteras detuvieron los viajes internacionales y nacionales.
  2. Impacto económico: las pérdidas financieras que enfrentan las aerolíneas, los hoteles y las empresas dependientes del turismo.
  3. Cambio en el comportamiento de los viajeros: un aumento del turismo local, los viajes por carretera y la preferencia por destinos remotos y no abarrotados.
  4. Protocolos de salud y seguridad: nuevos requisitos de viaje, como pruebas, cuarentena y medidas de higiene mejoradas.
  5. Transformación digital: mayor dependencia de las tecnologías sin contacto, las reservas digitales y las experiencias turísticas virtuales.
  6. Recuperación de la industria: esfuerzos de las aerolíneas, los hoteles y los gobiernos para estimular los viajes y adaptarse a las nuevas demandas.
  7. El futuro de los viajes: cambios a largo plazo en las tendencias de viajes y cómo evoluciona la industria después de la pandemia.
', '2024-08-10 02:34:59', '2024-09-17 07:39:14'), (19, 6, 2, 'The Ultimate Guide to Solo Travel: Tips and Destinations', 'the-ultimate-guide-to-solo-travel-tips-and-destinations', '

Solo travel can be an incredibly rewarding experience, offering the freedom to explore the world on your terms. This ultimate guide to solo travel covers essential tips, advice, and inspiration to ensure your journey is safe, enjoyable, and memorable.

1. Planning Your Trip

', '2024-08-10 02:54:49', '2024-08-28 12:28:13'), (20, 5, 2, 'Must-Visit Hidden Gems in Maldivs', 'must-visit-hidden-gems-in-maldivs', '

The Maldives is famous for its luxurious resorts and stunning overwater bungalows, but beyond the well-trodden paths, this tropical paradise harbors several hidden gems waiting to be discovered. Here\'s a guide to some must-visit hidden treasures in the Maldives:

1. Vaadhoo Island – The Sea of Stars

', '2024-08-10 02:55:23', '2024-08-28 12:29:13'), (21, 17, 1, 'Nepal Travel Guide From Dhaka Bangladesh: Everything', 'nepal-travel-guide-from-dhaka-bangladesh:-everything', '

Traveling from Dhaka, Bangladesh, to Nepal opens the door to an unforgettable adventure in a country renowned for its majestic mountains, vibrant culture, and warm hospitality. This comprehensive guide will provide you with essential information to make the most of your journey from Dhaka to Nepal, covering everything from visa requirements to top destinations, local customs, and travel tips.

Getting There:

The journey from Dhaka to Nepal typically starts with a direct flight from Dhaka’s Hazrat Shahjalal International Airport to Tribhuvan International Airport in Kathmandu, Nepal. The flight duration is around 1.5 hours, making it a relatively quick trip. Several airlines operate on this route, including Biman Bangladesh Airlines and Nepal Airlines, offering convenient schedules and competitive fares. Booking your flight in advance can help you secure the best deals and ensure a smooth start to your trip.

Visa Requirements:

Bangladeshi passport holders can obtain a visa on arrival in Nepal, which simplifies the entry process. Upon arrival at Tribhuvan International Airport, you’ll need to present your passport, a few passport-sized photographs, and proof of accommodation. The visa on arrival is available for durations ranging from 15 to 90 days, and the fees vary depending on the length of your stay. It’s a good idea to have some US dollars on hand to pay the visa fee, as this is the accepted currency for the visa payment. Additionally, make sure your passport is valid for at least six months from your date of entry into Nepal.

Best Time to Visit:

Nepal\'s climate varies significantly by region and altitude, but the best times to visit are during the spring (March to May) and autumn (September to November). During these periods, the weather is generally pleasant with clear skies and mild temperatures, making it ideal for sightseeing, trekking, and exploring the country’s natural and cultural attractions. Spring brings blooming rhododendrons and lush greenery, while autumn offers clear views of the Himalayas and comfortable temperatures. The summer monsoon season (June to August) can bring heavy rainfall and might affect travel plans, particularly in the mountainous regions. Winter (December to February) can be cold, especially in the higher altitudes, but it’s a good time for trekking in lower elevations.

Accommodation:

Nepal offers a wide range of accommodation options to suit different budgets and preferences. In Kathmandu, you’ll find everything from budget hostels and guesthouses to mid-range hotels and luxury resorts. The Thamel area is popular among travelers for its array of restaurants, shops, and accommodations. For a more authentic experience, consider staying in a traditional guesthouse or homestay in smaller towns or rural areas. In Pokhara, you can choose from lakeside hotels with stunning views of the surrounding mountains, or opt for a more secluded retreat in the nearby hills. Chitwan National Park also has a selection of lodges and resorts that offer comfortable stays and easy access to wildlife safaris.

Getting Around:

Navigating Nepal is relatively straightforward, though travel times can vary due to the country’s diverse terrain. In Kathmandu, taxis and ride-sharing apps are convenient for getting around the city. Public buses are available for longer distances, though they can be crowded and less comfortable. For intercity travel, domestic flights are a time-efficient option, particularly for reaching destinations like Pokhara and Lukla, the gateway to Everest Base Camp. Additionally, rented vehicles or motorbikes can be a flexible way to explore rural areas, though it’s essential to be cautious and familiar with local driving conditions. Many travelers also opt for guided tours or private drivers to enhance their experience and ensure a smooth journey.

', '2024-08-10 02:57:52', '2024-09-16 07:43:15'), (22, 17, 2, 'Nepal Travel Guide From Dhaka Bangladesh: Everything', 'nepal-travel-guide-from-dhaka-bangladesh:-everything', '

Nepal is the home of Mount Everest — Himalayas. Nepal is one of the countries among the members of SAARC. Nepal is the gateway to the famous Himalayan beauty but not only the Himalayas but also the capital —  Kathmandu, and Pokhara sits in a variety of sights. Kathmandu is the capital of Nepal and the largest metropolitan area, with about 5 million people living there. If you want to travel to Nepal, you must first come to Kathmandu. Many people do not want to be the first to visit a city like Kathmandu when visiting the mountains, but Kathmandu, with its traditions, commerce, and various architectural patterns, is brilliant in its glory.

Pokhara, the second-largest city in Nepal, is located west of the Kathmandu Valley and in the center of Nepal. Known as the City of the Seven Lakes, Pokhara is a tourist destination. In addition to natural beauty, the city is rich in cultural heritage. This is Pokhara City, a piece of paradise on earth. And that is why every year, many tourists come from far and wide to visit this city of Nepal.

Read the details of Nepal’s heritage sites here. Way to go to Nepal, sightseeing, what to look for, how to get around, where to stay, ideas on cost, everything with different travel tips. Don’t forget to Check the Bali and Sikkim travel guide on nextDestina Bangladesh.

', '2024-08-10 03:02:53', '2024-08-10 03:02:53'), (23, 18, 1, 'Exploring the Hidden Gems of Argentina', 'exploring-the-hidden-gems-of-argentina', '

Argentina is a country of striking contrasts and unforgettable experiences. From the bustling streets of Buenos Aires to the breathtaking landscapes of Patagonia, Argentina offers travelers a rich tapestry of sights, sounds, and flavors that captivate the senses.

Buenos Aires: The Heartbeat of Argentina

Start your journey in Buenos Aires, the vibrant capital known for its European architecture and passionate tango culture. Wander through the colorful streets of La Boca, explore the trendy cafes of Palermo, and soak up the history at Plaza de Mayo. Don’t forget to experience a live tango show—an intimate glimpse into the soul of Argentina.

Iguazú Falls: Nature at Its Most Majestic

Head north to witness the awe-inspiring Iguazú Falls, one of the world’s largest and most spectacular waterfall systems. Located on the border of Argentina and Brazil, the roaring cascades are surrounded by lush rainforest, home to diverse wildlife like toucans, jaguars, and howler monkeys. The panoramic views from the Argentine side will leave you speechless.

Patagonia: The Untamed Frontier

No trip to Argentina is complete without exploring Patagonia. This vast, untamed region boasts towering mountains, expansive glaciers, and crystal-clear lakes. Visit El Calafate to see the mighty Perito Moreno Glacier, one of the few advancing glaciers in the world. For adventure seekers, trekking through the stunning landscapes of Mount Fitz Roy or Torres del Paine is a must.

Mendoza: The Wine Lover’s Paradise

For wine enthusiasts, the Mendoza region is a dream come true. Nestled at the foothills of the Andes, this area is famous for producing world-class Malbec wines. Spend your days touring vineyards, tasting exquisite wines, and indulging in local culinary delights. The breathtaking scenery of sprawling vineyards against a mountain backdrop makes Mendoza a perfect stop for relaxation.

The Charm of Northern Argentina

The northern provinces of Salta and Jujuy offer a unique blend of indigenous culture, colonial architecture, and striking landscapes. Explore the otherworldly rock formations of Quebrada de Humahuaca, a UNESCO World Heritage Site, or take a scenic drive along the winding mountain roads to discover quaint villages steeped in history.

Final Thoughts

Argentina’s diversity, from cosmopolitan cities to natural wonders, ensures that every traveler will find something special. Whether you’re sipping wine under the Andes, standing in awe of majestic waterfalls, or trekking through remote wilderness, Argentina is a destination that will stay with you long after you leave.

', '2024-08-25 11:01:31', '2024-09-17 07:24:35'), (24, 18, 2, 'Exploring the Hidden Gems of Argentina', 'exploring-the-hidden-gems-of-argentina', '

\"Join us as we delve into the breathtaking landscapes, vibrant culture, and rich history of Argentina. From the stunning peaks of the Andes to the bustling streets of Buenos Aires, discover the must-visit destinations and local secrets that make Argentina a traveler\'s paradise.\"

You can use this format to create blog entries for various topics!

\"Join us as we delve into the breathtaking landscapes, vibrant culture, and rich history of Argentina. From the stunning peaks of the Andes to the bustling streets of Buenos Aires, discover the must-visit destinations and local secrets that make Argentina a traveler\'s paradise.\"

You can use this format to create blog entries for various topics!

', '2024-08-25 11:02:54', '2024-08-25 11:02:54'), (25, 19, 1, 'The future of Technology: Innovations Shaping World', 'the-future-of-technology:-innovations-shaping-our-world', '

The future of technology is being shaped by an array of groundbreaking innovations that promise to transform the world in profound ways. As we move further into the 21st century, technology continues to evolve at an unprecedented pace, driving changes across all sectors of society. Artificial intelligence and machine learning are at the forefront, with advanced algorithms enabling machines to learn and adapt, revolutionizing industries from healthcare to finance. In the realm of healthcare, technologies like wearable devices and telemedicine are enhancing patient care and making healthcare more accessible.

The rise of 5G networks is set to unlock new levels of connectivity, enabling faster communication and the proliferation of the Internet of Things (IoT), where everyday objects become interconnected and smarter. Blockchain technology is also making waves, offering new levels of security and transparency for transactions and data management. Meanwhile, quantum computing holds the potential to solve complex problems beyond the capabilities of classical computers, impacting fields such as cryptography and material science. As technology continues to advance, it is reshaping our daily lives, from the way we work and communicate to how we solve global challenges and envision the future. The integration of these innovations not only enhances efficiency and convenience but also brings about ethical and societal considerations, making it essential to navigate this technological evolution thoughtfully and responsibly.


The future of technology is being shaped by an array of groundbreaking innovations that promise to transform the world in profound ways. As we move further into the 21st century, technology continues to evolve at an unprecedented pace, driving changes across all sectors of society. Artificial intelligence and machine learning are at the forefront, with advanced algorithms enabling machines to learn and adapt, revolutionizing industries from healthcare to finance. In the realm of healthcare, technologies like wearable devices and telemedicine are enhancing patient care and making healthcare more accessible. The rise of 5G networks is set to unlock new levels of connectivity, enabling faster communication and the proliferation of the Internet of Things (IoT), where everyday objects become interconnected and smarter. Blockchain technology is also making waves, offering new levels of security and transparency for transactions and data management.


Meanwhile, quantum computing holds the potential to solve complex problems beyond the capabilities of classical computers, impacting fields such as cryptography and material science. As technology continues to advance, it is reshaping our daily lives, from the way we work and communicate to how we solve global challenges and envision the future. The integration of these innovations not only enhances efficiency and convenience but also brings about ethical and societal considerations, making it essential to navigate this technological evolution thoughtfully and responsibly.

', '2024-08-25 11:08:35', '2024-09-17 05:32:59'), (26, 19, 2, 'The Future of Technology: Innovations Shaping Our World', 'the-future-of-technology:-innovations-shaping-our-world', '

Technology is advancing at an unprecedented pace, transforming the way we live, work, and connect. In this blog, we explore the latest innovations, from AI and robotics to sustainable energy solutions, and how they are shaping the future. Discover the trends and breakthroughs that are driving the next wave of technological evolution

Technology is advancing at an unprecedented pace, transforming the way we live, work, and connect. In this blog, we explore the latest innovations, from AI and robotics to sustainable energy solutions, and how they are shaping the future. Discover the trends and breakthroughs that are driving the next wave of technological evolution

', '2024-08-25 11:09:14', '2024-08-25 11:09:14'); -- -------------------------------------------------------- -- -- Table structure for table `bookings` -- CREATE TABLE `bookings` ( `id` bigint(20) UNSIGNED NOT NULL, `uid` varchar(50) DEFAULT NULL, `package_id` int(11) DEFAULT NULL, `package_title` varchar(255) DEFAULT NULL, `date` timestamp NULL DEFAULT NULL, `duration` varchar(255) DEFAULT NULL, `start_price` int(11) DEFAULT NULL, `total_adult` int(11) DEFAULT NULL, `total_children` int(11) DEFAULT NULL, `total_infant` int(11) DEFAULT NULL, `total_person` int(11) DEFAULT NULL, `total_price` int(11) DEFAULT NULL, `fname` varchar(255) DEFAULT NULL, `lname` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `phone` varchar(15) DEFAULT NULL, `postal_code` varchar(255) DEFAULT NULL, `city` varchar(255) DEFAULT NULL, `state` varchar(255) DEFAULT NULL, `country` varchar(255) DEFAULT NULL, `address_one` varchar(255) DEFAULT NULL, `address_two` varchar(255) DEFAULT NULL, `startPoint` varchar(255) DEFAULT NULL, `startMessage` varchar(255) DEFAULT NULL, `endPoint` varchar(255) DEFAULT NULL, `endMessage` varchar(255) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `trx_id` varchar(255) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0=> Pending, 1 => Paid, 2\r\n=> Completed 3=>Rejected, 4=> ', `coupon` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0 => Not, 1 => Yes', `cupon_status` tinyint(1) NOT NULL DEFAULT 0, `cupon_number` varchar(255) DEFAULT NULL, `discount_amount` int(11) DEFAULT NULL, `message` text DEFAULT NULL, `adult_info` text DEFAULT NULL, `child_info` text DEFAULT NULL, `infant_info` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cities` -- CREATE TABLE `cities` ( `id` bigint(20) UNSIGNED NOT NULL, `country_id` bigint(20) UNSIGNED NOT NULL, `state_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `country_code` varchar(3) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '1=>Active, 0=>Innactive', `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `contents` -- CREATE TABLE `contents` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) DEFAULT NULL, `type` varchar(255) DEFAULT NULL, `media` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `contents` -- INSERT INTO `contents` (`id`, `name`, `type`, `media`, `created_at`, `updated_at`) VALUES (46, 'blog', 'single', '{\"image\":{\"path\":\"contents\\/ND7cjtiQ2ZgAlqYtbJtpqlJ3Ic5FAl.webp\",\"driver\":\"local\"}}', '2023-11-23 02:41:48', '2024-07-11 02:34:57'), (49, 'about', 'single', '{\"image\":{\"path\":\"contents\\/gqFVvuv6vJvzm6JMDZIFmJqqgJYMw2.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/x4zovhedjiwK33TOEmLeph0WQ2IexZ.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/www.youtube.com\\/watch?v=GwbrKNrlXZs\"}', '2023-11-23 02:42:52', '2024-09-16 09:31:06'), (50, 'footer', 'single', '{\"image\":{\"path\":\"contents\\/MB0unmisIrBA3aN9USGrUvjH8WuTXG.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/KQw3sZCXY4nCOj5ewCTVmMjbiMyAuF.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/nz6HkEQAvNvaqMoB0CGWlLMKn3Qmox.webp\",\"driver\":\"local\"},\"image_four\":{\"path\":\"contents\\/6GJ6LmMQfY4eOUFzNKxYWYS81Vo1kq.webp\",\"driver\":\"local\"},\"image_five\":{\"path\":\"contents\\/AK0CJbDovR7i4zlRpPxmgaCbOm7Nr1.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2023-12-11 10:08:10', '2024-09-16 12:16:19'), (51, 'faq', 'single', '{\"image\":{\"path\":\"contents\\/EMbiBgudFS5Cvdk9zX0EhkK2Yb3Nxj.webp\",\"driver\":\"local\"}}', '2024-02-06 09:50:44', '2024-08-27 11:53:26'), (53, 'blog', 'multiple', '{\"image\":{\"path\":\"contents\\/G8rZ3v0uszz5GD9sOFQt84BWCy0k6b.avif\",\"driver\":\"local\"}}', '2024-04-04 03:19:55', '2024-04-04 03:19:55'), (54, 'blog', 'multiple', '{\"image\":{\"path\":\"contents\\/XmneCBnZR12CsWmvBumfTcZBmZ0LaB.avif\",\"driver\":\"local\"}}', '2024-04-04 03:22:20', '2024-04-04 03:22:20'), (55, 'blog', 'multiple', '{\"image\":{\"path\":\"contents\\/Cct4GL8jL99YdTCJfACpccm4NLlvBc.avif\",\"driver\":\"local\"}}', '2024-04-04 03:23:09', '2024-04-04 03:23:10'), (56, 'blog', 'multiple', '{\"image\":{\"path\":\"contents\\/fsRLsRF4LfNnFKIx0VJq6Ko6Spze5v.avif\",\"driver\":\"local\"}}', '2024-04-04 03:24:44', '2024-04-04 03:24:45'), (57, 'news_letter', 'single', '{\"image\":{\"path\":\"contents\\/jGwmwZjHuD1pUJYmloQgK6mYwvWEBI.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-04-04 06:16:35', '2024-09-16 12:39:07'), (58, 'hero', 'single', '{\"image\":{\"path\":\"contents\\/f7QOulA8WUPRBZFZXADLndBoogJBFw.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/ACkYShdtCC9XrsyMKxueIiFuPW7ckC.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/uMqdfD4G1pabXkjoMR8KijIRaDwKZq.webp\",\"driver\":\"local\"},\"image_four\":{\"path\":\"contents\\/oUnFtbIfxOk8RHIxJrnsvMi18AxeDb.webp\",\"driver\":\"local\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kS0X-yIsB64\",\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-04-06 01:47:01', '2024-09-16 12:03:00'), (59, 'about', 'multiple', '{\"image\":{\"path\":\"contents\\/dgHyHyD4KNsSCth7w0qjNlBYJ8jiVI.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/www.youtube.com\\/watch?v=GwbrKNrlXZs\"}', '2024-04-06 02:40:22', '2024-09-16 09:31:12'), (60, 'about', 'multiple', '{\"image\":{\"path\":\"contents\\/v2vY9zkFkSojWEo756LxUBKJ0XN15j.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/www.youtube.com\\/watch?v=GwbrKNrlXZs\"}', '2024-04-06 02:40:42', '2024-09-16 09:31:18'), (61, 'footer', 'multiple', '{\"button_link\":\"https:\\/\\/www.facebook.com\\/\",\"icon\":\"fab fa-facebook-f\"}', '2024-04-06 02:59:56', '2024-09-18 07:20:04'), (62, 'footer', 'multiple', '{\"button_link\":\"https:\\/\\/www.x.com\\/\",\"icon\":\"fab fa-twitter\"}', '2024-04-06 03:01:15', '2024-09-18 07:20:25'), (63, 'footer', 'multiple', '{\"button_link\":\"https:\\/\\/www.linkedin.com\\/\",\"icon\":\"fab fa-linkedin\"}', '2024-04-06 03:01:48', '2024-09-18 07:20:46'), (64, 'footer', 'multiple', '{\"button_link\":\"https:\\/\\/www.instagram.com\\/\",\"icon\":\"fab fa-instagram\"}', '2024-04-06 03:02:15', '2024-09-18 07:21:08'), (65, 'contact', 'single', '{\"button_link\":\"https:\\/\\/next-destina.bugfinder.net\\/contact\\/send\"}', '2024-04-06 03:34:53', '2024-09-19 19:16:24'), (66, 'contact', 'multiple', '{\"icon\":\"fas fa-phone\"}', '2024-04-06 03:35:25', '2024-04-06 03:35:25'), (67, 'contact', 'multiple', '{\"icon\":\"fas fa-envelope\"}', '2024-04-06 03:35:58', '2024-04-06 03:35:58'), (68, 'contact', 'multiple', '{\"icon\":\"fas fa-location-arrow\"}', '2024-04-06 03:37:41', '2024-04-06 03:37:41'), (73, 'why_chose_us', 'single', '{\"image\":{\"path\":\"contents\\/fGmnHxicnpIKN3LwPVvOOfsHh0nba5.webp\",\"driver\":\"local\"}}', '2024-04-07 02:40:13', '2024-04-07 02:40:13'), (74, 'why_chose_us', 'multiple', '{\"icon\":\"fa-regular fa-light fa-rocket-launch\"}', '2024-04-07 02:41:13', '2024-05-15 01:19:44'), (75, 'why_chose_us', 'multiple', '{\"icon\":\"fa-regular fa-headset\"}', '2024-04-07 02:42:01', '2024-05-15 01:20:14'), (76, 'why_chose_us', 'multiple', '{\"icon\":\"fa-regular fa-badge-percent\"}', '2024-04-07 02:42:32', '2024-05-15 01:20:34'), (77, 'testimonial', 'single', NULL, '2024-04-16 01:17:11', '2024-04-16 01:17:11'), (78, 'testimonial', 'multiple', '{\"image\":{\"path\":\"contents\\/EOy3ULKullg86KKzj0EqTNZK3qp4NB.webp\",\"driver\":\"local\"}}', '2024-04-16 01:18:54', '2024-04-16 01:18:54'), (79, 'testimonial', 'multiple', '{\"image\":{\"path\":\"contents\\/BL2MzdXzMDuzguaVrZyDitQg8VFPYY.webp\",\"driver\":\"local\"}}', '2024-04-16 01:20:55', '2024-04-16 01:20:55'), (80, 'testimonial', 'multiple', '{\"image\":{\"path\":\"contents\\/YAM9CAq7KxCpDbT6D4AhIjlGl7ddZm.webp\",\"driver\":\"local\"}}', '2024-04-16 01:22:40', '2024-04-16 01:22:40'), (81, 'about_two', 'single', '{\"image\":{\"path\":\"contents\\/wwYnsbont0Wm1VSto8qr8cvCkylO6m.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/www.youtube.com\\/watch?v=GwbrKNrlXZs\"}', '2024-04-27 09:55:35', '2024-09-16 09:33:51'), (82, 'about_two', 'multiple', NULL, '2024-04-27 09:56:02', '2024-04-27 09:56:02'), (83, 'about_two', 'multiple', NULL, '2024-04-27 09:56:21', '2024-04-27 09:56:21'), (84, 'about_three', 'single', '{\"image\":{\"path\":\"contents\\/4C8HVxxsx2o8JC4m4eKsE1JA1O7qRx.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/8jQvh0a87NWiOn0lY1dAwK8zKTLH54.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/Jf9wjdeJoAkuvREOcyJqNVhQVJPNoY.webp\",\"driver\":\"local\"},\"image_four\":{\"path\":\"contents\\/qQFjz6uQ8ZgJta0UZV4JKkLzGAnLUO.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-04-28 02:39:33', '2024-09-16 09:34:56'), (85, 'about_three', 'multiple', '{\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-04-28 02:40:57', '2024-09-16 09:35:14'), (86, 'about_three', 'multiple', '{\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-04-28 02:41:15', '2024-09-16 09:35:21'), (87, 'hero_two', 'single', '{\"image\":{\"path\":\"contents\\/dt10aSQyK7LuMgvDK6Gsua0Cb7iRn5.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/xxORaiylW1mu0PvVIbMgCrD18TzHrr.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/8AGSDv6zSsWigDsHlLEdtzaMYYnNVc.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-04-28 02:49:28', '2024-09-16 12:03:28'), (88, 'hero_three', 'single', '{\"image\":{\"path\":\"contents\\/53BHwtIHwVn78TxQ21Fx5o5IcvL8AB.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\",\"button_link_two\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-04-28 04:07:30', '2024-09-17 04:41:05'), (89, 'feature', 'single', NULL, '2024-04-28 04:24:55', '2024-04-28 04:24:55'), (90, 'feature', 'multiple', '{\"icon\":\"fa-regular fa-thumbs-up\"}', '2024-04-28 04:26:08', '2024-05-04 08:55:13'), (91, 'feature', 'multiple', '{\"icon\":\"fa-regular fa-user-tie\"}', '2024-04-28 04:26:38', '2024-05-04 08:56:52'), (92, 'feature', 'multiple', '{\"icon\":\"fa-regular fa-expand\"}', '2024-04-28 04:27:12', '2024-07-29 01:17:50'), (93, 'feature', 'multiple', '{\"icon\":\"fa-regular fa-sort-amount-down\"}', '2024-04-28 04:28:18', '2024-07-29 01:18:05'), (97, 'blog_two', 'single', NULL, '2024-04-28 06:29:50', '2024-04-28 06:29:50'), (98, 'news_letter', 'multiple', '{\"icon\":\"fa-regular fa-globe-asia\"}', '2024-04-28 07:42:45', '2024-05-15 01:15:49'), (99, 'news_letter', 'multiple', '{\"icon\":\"fa-regular fa-map-marked-alt\"}', '2024-04-28 07:43:25', '2024-05-15 01:16:50'), (100, 'news_letter', 'multiple', '{\"icon\":\"fa-regular fa-medal\"}', '2024-04-28 07:43:49', '2024-05-15 01:17:20'), (101, 'news_letter', 'multiple', '{\"icon\":\"fa-regular fa-globe-asia\"}', '2024-04-28 07:44:20', '2024-05-15 01:17:38'), (102, 'news_letter_two', 'single', '{\"image\":{\"path\":\"contents\\/AyHNOosn5Zt3cWYP8lsVTkOHEH6XFx.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/nd0XNRZqj6ApqoV5n0HuYHgNqY8Jme.webp\",\"driver\":\"local\"},\"my_link\":\"https:\\/\\/bugfinder.net\\/\",\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-04-28 07:54:08', '2024-09-16 12:42:06'), (103, 'testimonial_two', 'single', NULL, '2024-04-28 08:32:12', '2024-04-28 08:32:12'), (104, 'testimonial_two', 'multiple', '{\"image\":{\"path\":\"contents\\/IYXY9S86HgoehKhsUTDOEJau33lJ4A.webp\",\"driver\":\"local\"}}', '2024-04-28 08:34:16', '2024-04-28 08:34:16'), (105, 'testimonial_two', 'multiple', '{\"image\":{\"path\":\"contents\\/EhVoKCESjwdocgZBoLYzkxXrPZWpJb.webp\",\"driver\":\"local\"}}', '2024-04-28 08:35:01', '2024-04-28 08:35:01'), (106, 'testimonial_two', 'multiple', '{\"image\":{\"path\":\"contents\\/xrovqYvyfERGgKGeEn2gRKCbfoRY50.webp\",\"driver\":\"local\"}}', '2024-04-28 08:35:53', '2024-04-28 08:35:53'), (107, 'testimonial_two', 'multiple', '{\"image\":{\"path\":\"contents\\/9e2FlHUdWwUux1euApEU0mI0ULpmp8.webp\",\"driver\":\"local\"}}', '2024-04-28 08:36:45', '2024-04-28 08:36:45'), (108, 'why_chose_us_two', 'single', '{\"image\":{\"path\":\"contents\\/hXpEqsFQqZipRzO93StrpohHp7f5JZ.webp\",\"driver\":\"local\"}}', '2024-04-28 08:44:24', '2024-04-28 08:44:24'), (109, 'why_chose_us_two', 'multiple', '{\"icon\":\"fas fa-rocket\"}', '2024-04-28 08:45:01', '2024-04-28 08:45:01'), (110, 'why_chose_us_two', 'multiple', '{\"icon\":\"fas fa-headset\"}', '2024-04-28 08:45:35', '2024-04-28 08:45:35'), (111, 'why_chose_us_two', 'multiple', '{\"icon\":\"fa-light fa-badge-percent\"}', '2024-04-28 08:46:34', '2024-04-28 08:46:34'), (112, 'why_chose_us_three', 'single', '{\"image\":{\"path\":\"contents\\/8xmJT8iM5RcocbR3mLbEq35FHycnCh.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-04-28 08:52:21', '2024-09-16 11:01:10'), (113, 'why_chose_us_three', 'multiple', '{\"icon\":\"fa-regular fa-plane-departure\"}', '2024-04-28 08:53:01', '2024-05-15 02:21:58'), (114, 'why_chose_us_three', 'multiple', '{\"icon\":\"fa-regular fa-check-circle\"}', '2024-04-28 08:54:01', '2024-05-15 02:22:13'), (115, 'why_chose_us_three', 'multiple', '{\"icon\":\"fa-regular fa-anchor\"}', '2024-04-28 08:55:20', '2024-05-15 02:22:26'), (116, 'why_chose_us_three', 'multiple', '{\"icon\":\"fa-regular fa-shield-check\"}', '2024-04-28 08:56:16', '2024-05-15 02:22:38'), (118, 'privacy_policy', 'single', NULL, '2024-05-07 07:22:20', '2024-05-07 07:22:20'), (119, 'privacy_and_policy', 'single', NULL, '2024-05-07 07:27:55', '2024-05-07 07:27:55'), (120, 'refund_policy', 'single', NULL, '2024-05-07 07:41:29', '2024-05-07 07:41:29'), (121, 'terms_of_use', 'single', NULL, '2024-05-07 07:44:06', '2024-05-07 07:44:06'), (122, 'header_top', 'single', '{\"button_link\":\"https:\\/\\/next-destina.bugfinder.net\\/packages\"}', '2024-05-08 06:56:11', '2024-09-19 19:17:25'), (123, 'account_partials', 'single', '{\"image\":{\"path\":\"contents\\/pPzBfAyY6YBiEbShrXq1vrbIcDJFpH.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/next-destina.bugfinder.net\\/\"}', '2024-05-09 01:45:33', '2024-09-19 19:18:20'), (124, 'faq', 'multiple', NULL, '2024-05-12 07:19:08', '2024-05-12 07:19:08'), (125, 'faq', 'multiple', NULL, '2024-05-12 07:19:24', '2024-05-12 07:19:24'), (126, 'faq', 'multiple', NULL, '2024-05-12 07:19:39', '2024-05-12 07:19:39'), (127, 'faq', 'multiple', NULL, '2024-05-12 07:19:57', '2024-05-12 07:19:57'), (128, 'privacy_and_policy', 'multiple', NULL, '2024-05-12 09:11:35', '2024-05-12 09:11:35'), (129, 'privacy_and_policy', 'multiple', NULL, '2024-05-12 09:11:55', '2024-05-12 09:11:55'), (130, 'privacy_and_policy', 'multiple', NULL, '2024-05-12 09:12:27', '2024-05-12 09:12:27'), (131, 'privacy_and_policy', 'multiple', NULL, '2024-05-12 09:12:47', '2024-05-12 09:12:47'), (132, 'privacy_and_policy', 'multiple', NULL, '2024-05-12 09:13:00', '2024-05-12 09:13:00'), (133, 'privacy_and_policy', 'multiple', NULL, '2024-05-12 09:13:15', '2024-05-12 09:13:15'), (134, 'privacy_and_policy', 'multiple', NULL, '2024-05-12 09:13:31', '2024-05-12 09:13:31'), (135, 'privacy_and_policy', 'multiple', NULL, '2024-05-12 09:13:43', '2024-05-12 09:13:43'), (136, 'refund_policy', 'multiple', NULL, '2024-05-12 09:17:36', '2024-05-12 09:17:36'), (137, 'refund_policy', 'multiple', NULL, '2024-05-12 09:18:01', '2024-05-12 09:18:01'), (138, 'refund_policy', 'multiple', NULL, '2024-05-12 09:18:23', '2024-05-12 09:18:23'), (139, 'refund_policy', 'multiple', NULL, '2024-05-12 09:18:41', '2024-05-12 09:18:41'), (140, 'refund_policy', 'multiple', NULL, '2024-05-12 09:18:58', '2024-05-12 09:18:58'), (141, 'refund_policy', 'multiple', NULL, '2024-05-12 09:19:16', '2024-05-12 09:19:16'), (142, 'terms_of_use', 'multiple', NULL, '2024-05-12 09:19:35', '2024-05-12 09:19:35'), (143, 'terms_of_use', 'multiple', NULL, '2024-05-12 09:22:55', '2024-05-12 09:22:55'), (144, 'terms_of_use', 'multiple', NULL, '2024-05-12 09:23:17', '2024-05-12 09:23:17'), (145, 'terms_of_use', 'multiple', NULL, '2024-05-12 09:23:34', '2024-05-12 09:23:34'), (146, 'terms_of_use', 'multiple', NULL, '2024-05-12 09:23:59', '2024-05-12 09:23:59'), (147, 'terms_of_use', 'multiple', NULL, '2024-05-12 09:24:21', '2024-05-12 09:24:21'), (148, 'terms_of_use', 'multiple', NULL, '2024-05-12 09:24:33', '2024-05-12 09:24:33'), (149, 'booking', 'single', NULL, '2024-05-13 02:17:17', '2024-05-13 02:17:17'), (150, 'booking', 'multiple', '{\"image\":{\"path\":\"contents\\/hg2X4gLAl1M8WaO4pGYMasKVuT6Gkp.webp\",\"driver\":\"local\"}}', '2024-05-13 02:18:08', '2024-05-13 02:18:08'), (151, 'booking', 'multiple', '{\"image\":{\"path\":\"contents\\/jGkZLh5x8mn3dytZoiDplrOIEUB6Ln.webp\",\"driver\":\"local\"}}', '2024-05-13 02:18:32', '2024-05-13 02:18:32'), (152, 'booking', 'multiple', '{\"image\":{\"path\":\"contents\\/KXfUIuix5GwY3mbCm3IQxYYiRoreYs.webp\",\"driver\":\"local\"}}', '2024-05-13 02:18:51', '2024-05-13 02:18:51'), (153, 'booking', 'multiple', '{\"image\":{\"path\":\"contents\\/Ttt2R8kZ8dzYLYajVTnU0ffHUL84di.webp\",\"driver\":\"local\"}}', '2024-05-13 02:19:12', '2024-05-13 02:19:12'), (154, 'counter', 'single', '{\"count_number\":\"150\"}', '2024-05-13 02:27:40', '2024-05-18 01:27:23'), (155, 'counter', 'multiple', '{\"count_number\":\"450\"}', '2024-05-13 02:27:54', '2024-05-13 02:27:54'), (156, 'counter', 'multiple', '{\"count_number\":\"10\"}', '2024-05-13 02:28:06', '2024-05-13 02:28:06'), (157, 'counter', 'multiple', '{\"count_number\":\"5\"}', '2024-05-13 02:28:14', '2024-05-13 02:28:14'), (158, 'mission', 'single', '{\"image\":{\"path\":\"contents\\/CMovlfELcWDwCzm6H2ls9KRBAi7GqH.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/gyYhDw6gDkVkCu5udpHVI5lSydDlCe.webp\",\"driver\":\"local\"}}', '2024-05-13 02:43:05', '2024-05-13 02:46:16'), (159, 'mission', 'multiple', NULL, '2024-05-13 02:47:23', '2024-05-13 02:47:23'), (160, 'mission', 'multiple', NULL, '2024-05-13 02:47:44', '2024-05-13 02:47:44'), (161, 'experience', 'single', '{\"image\":{\"path\":\"contents\\/QuiFvVvaLzo8LfD6TN1zCIPzCVuJi7.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/Yt4vH545JvDVURziVWqk1cxLByCSTf.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/tpZfOj2HCta3NFyptAhIHCUOZrw4h9.webp\",\"driver\":\"local\"}}', '2024-05-13 03:03:16', '2024-05-13 03:03:16'), (162, 'experience', 'multiple', '{\"image\":{\"path\":\"contents\\/BPFd9gkQR0zTxuVcl7V8HY4YMmhW9L.webp\",\"driver\":\"local\"}}', '2024-05-13 03:04:20', '2024-05-13 03:04:20'), (163, 'experience', 'multiple', '{\"image\":{\"path\":\"contents\\/KYfsbGNvTDZCaPINM4ZT1dKuxT0qQE.webp\",\"driver\":\"local\"}}', '2024-05-13 03:07:01', '2024-05-13 03:07:01'), (164, 'team', 'single', NULL, '2024-05-13 04:04:44', '2024-05-13 04:04:44'), (165, 'team', 'multiple', '{\"image\":{\"path\":\"contents\\/k9Ljcj92ObS1KQS7YVuCLeJUtYIvWx.webp\",\"driver\":\"local\"}}', '2024-05-13 04:06:51', '2024-05-13 04:06:51'), (166, 'team', 'multiple', '{\"image\":{\"path\":\"contents\\/xD4A1SMGmvVbfL4riTdSn2TQycl0ai.webp\",\"driver\":\"local\"}}', '2024-05-13 04:07:43', '2024-05-13 04:07:43'), (167, 'team', 'multiple', '{\"image\":{\"path\":\"contents\\/0lNFqvdYpw3faUVX3k080otlt5rbWI.webp\",\"driver\":\"local\"}}', '2024-05-13 04:08:31', '2024-05-13 04:08:31'), (168, 'app', 'single', '{\"image\":{\"path\":\"contents\\/awm5cDydXct5AcRdwm5h32L8ihXFAI.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/z7TeE7qfVS6RedXD4OkJaoZpd9Tohv.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/4qTt9y6cGaEsms5UYw5NDv9Jdi7U1o.webp\",\"driver\":\"local\"},\"image_four\":{\"path\":\"contents\\/2wlApU2cZ2xFMogp9rnvlB7TmQfp7U.webp\",\"driver\":\"local\"},\"image_five\":{\"path\":\"contents\\/5hpwQDvamndlXnObYqfJbVR25zTv1i.webp\",\"driver\":\"local\"},\"image_six\":{\"path\":\"contents\\/wzheqG5zMM5q8Xr0AtEsS4NKgyq626.webp\",\"driver\":\"local\"}}', '2024-05-14 06:57:12', '2024-07-11 02:27:36'), (169, 'destination_two', 'single', NULL, '2024-05-14 07:06:49', '2024-05-14 07:06:49'), (170, 'inspiration_two', 'single', '{\"image\":{\"path\":\"contents\\/lXcE3YgUINo242ZjiHRaeMr9CG2mOc.webp\",\"driver\":\"local\"}}', '2024-05-14 07:31:38', '2024-05-14 07:31:38'), (171, 'popular_two', 'single', '{\"image\":{\"path\":\"contents\\/jMlXaJyZI2Oh5LLfHAXqUxckV6ssSW.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-05-14 07:36:54', '2024-09-16 09:27:34'), (172, 'hero_two', 'multiple', '{\"image\":{\"path\":\"contents\\/wclYAeN0n6QJvZphJPl4tftg9IW7sJ.webp\",\"driver\":\"local\"}}', '2024-05-14 08:36:05', '2024-05-14 08:36:05'), (173, 'hero_two', 'multiple', '{\"image\":{\"path\":\"contents\\/FLfFEfEH0DRyQlGcFjrsOV7lWpUJ4o.webp\",\"driver\":\"local\"}}', '2024-05-14 08:36:42', '2024-05-14 08:36:43'), (176, 'cookie', 'single', NULL, '2024-05-19 06:28:10', '2024-05-19 06:28:10'), (177, 'cookie_policy', 'single', NULL, '2024-05-19 07:08:41', '2024-05-19 07:08:41'), (178, 'cookie_policy', 'multiple', NULL, '2024-05-19 07:09:19', '2024-05-19 07:09:19'), (179, 'cookie_policy', 'multiple', NULL, '2024-05-19 07:09:41', '2024-05-19 07:09:41'), (180, 'cookie_policy', 'multiple', NULL, '2024-05-19 07:10:01', '2024-05-19 07:10:01'), (181, 'feature_three', 'single', NULL, '2024-05-23 03:45:32', '2024-05-23 03:45:32'), (182, 'feature_three', 'multiple', '{\"icon\":\"fa-regular fa-user-tie\"}', '2024-05-23 03:48:13', '2024-05-23 03:48:13'), (183, 'feature_three', 'multiple', '{\"icon\":\"fa-regular fa-globe-asia\"}', '2024-05-23 03:48:34', '2024-05-23 03:48:34'), (185, 'about_classic', 'single', '{\"image\":{\"path\":\"contents\\/HeDpiEItFMQgzy1jyY2rW5CfcfCe1L.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/2Y24G2n3D2cY8SlTqiOpsEENVBqdEP.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/rnOKFcheuylSDpjm9yLvZP9ztOuwod.webp\",\"driver\":\"local\"}}', '2024-07-11 02:05:33', '2024-07-11 02:05:58'), (186, 'about_classic', 'multiple', '{\"image\":{\"path\":\"contents\\/AmFNa5ITNQEVsgHV5eP4RgnxnSXmxL.webp\",\"driver\":\"local\"}}', '2024-07-11 02:37:44', '2024-07-11 02:37:44'), (187, 'about_classic', 'multiple', '{\"image\":{\"path\":\"contents\\/wJRH2PlKmucOQCqiU5oJlGLXzWSKbX.webp\",\"driver\":\"local\"}}', '2024-07-11 02:38:02', '2024-07-11 02:38:02'), (188, 'relaxation_hero', 'single', '{\"image\":{\"path\":\"contents\\/fWxMwtpdwJR1uVi5QYxkq46hPKTPKF.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/07x3vbjQIwMH57lW20lWFp6TAUMtfs.webp\",\"driver\":\"local\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kS0X-yIsB64\",\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-07-13 07:37:30', '2024-09-16 12:08:21'), (189, 'relaxation_hero_two', 'single', '{\"image\":{\"path\":\"contents\\/iFR5LceL3eSmg5Vv7d0TXWCSa56nU1.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-07-13 07:48:41', '2024-09-16 12:08:31'), (190, 'relaxation_hero_two', 'multiple', '{\"image\":{\"path\":\"contents\\/kVKehey5KsZdmQIJWyF5Vialkl7P8d.webp\",\"driver\":\"local\"}}', '2024-07-13 07:49:13', '2024-08-02 03:35:57'), (191, 'relaxation_search', 'single', '{\"image\":{\"path\":\"contents\\/GKQkqP70adqHbhKsM0leixe3DEcRp6.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/next-destina.bugfinder.net\\/packages\"}', '2024-07-13 07:56:48', '2024-09-19 19:11:36'), (192, 'relaxation_popular_tour', 'single', '{\"image\":{\"path\":\"contents\\/frGNEyQYniomGeYucXhT1frK1PyHKN.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/VDduM8CveyLlVewi5L9r9AViMT0fiZ.webp\",\"driver\":\"local\"}}', '2024-07-13 08:07:37', '2024-08-02 03:35:57'), (193, 'relaxation_contact', 'single', '{\"image\":{\"path\":\"contents\\/TRlBURytOdndqXfjExZGNKeYUNoa6c.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/next-destina.bugfinder.net\\/contact\\/send\"}', '2024-07-13 09:45:53', '2024-09-19 19:12:48'), (194, 'relaxation_booking', 'single', '{\"image\":{\"path\":\"contents\\/f9JAkzb8WcGU8JjV7FXlSRIXjCjMtx.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/4KunnsJlCBKEM8go7bYOPySmpQNREJ.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-07-13 09:56:48', '2024-09-16 12:25:45'), (195, 'relaxation_booking', 'multiple', '{\"image\":{\"path\":\"contents\\/44CsmUfoqtuJN0sKzUBsN5MY8wqujT.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/next-destina.bugfinder.net\\/packages\"}', '2024-07-13 09:58:02', '2024-09-19 21:18:17'), (196, 'relaxation_booking', 'multiple', '{\"image\":{\"path\":\"contents\\/BVeFPPejwhYe78AuJWbrsFurY83lJb.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-07-13 09:58:36', '2024-09-16 12:26:43'), (197, 'relaxation_booking', 'multiple', '{\"image\":{\"path\":\"contents\\/6iXMMQ8QkT7leQIMJrR7HbdVexvmwt.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/next-destina.bugfinder.net\\/packages\"}', '2024-07-13 09:59:05', '2024-09-19 21:19:20'), (198, 'relaxation_booking', 'multiple', '{\"image\":{\"path\":\"contents\\/WTOXPUS6z1iGaBA7A62crDsxjw7Alp.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/next-destina.bugfinder.net\\/packages\"}', '2024-07-13 09:59:35', '2024-09-19 21:18:58'), (199, 'relaxation_blog', 'single', '{\"image\":{\"path\":\"contents\\/zMAlflS4wu6rFiH1DHPSpMaw9tGb2y.webp\",\"driver\":\"local\"}}', '2024-07-13 10:19:18', '2024-08-02 03:35:57'), (200, 'relaxation_search_two', 'single', '{\"image\":{\"path\":\"contents\\/FFJ74vBYyATD2PJqhSxDi5r0Kh6YqV.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/next-destina.bugfinder.net\\/packages\"}', '2024-07-14 01:26:37', '2024-09-19 19:11:42'), (201, 'relaxation_app', 'single', '{\"image\":{\"path\":\"contents\\/CEDZ46F7LtdMxHNbQX0Vw5oJ8JUBX2.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/WH4a9VVEPtbPVGoh4Da6IW5EceQpMI.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/wvyVhF9DvoQrk5D4PzQzZZiSVy74Pr.webp\",\"driver\":\"local\"},\"image_four\":{\"path\":\"contents\\/eaSuJxelWKH3A2NYHQrlLuC4EOvxGB.webp\",\"driver\":\"local\"},\"image_five\":{\"path\":\"contents\\/MCjGe2oTtYELH0OurjYrFQt5DHjw18.webp\",\"driver\":\"local\"},\"image_six\":{\"path\":\"contents\\/BmFdFYXCHg8lOot85F23n5C8TdsT8o.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/play.google.com\\/store\\/games?device=phone&hl=en\",\"button_link_two\":\"https:\\/\\/www.apple.com\\/store\"}', '2024-07-14 01:35:17', '2024-09-16 09:16:53'), (202, 'relaxation_about', 'single', '{\"image\":{\"path\":\"contents\\/IlyZckfMTFhL5JpjSAKwDzG4dfYbdx.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/9si1oFHDDIWmjCWHSX4qbtJydecNgq.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/Ygv6Xk6xGDt94LtuPYZjOLHSTHLltM.webp\",\"driver\":\"local\"}}', '2024-07-14 01:49:46', '2024-08-02 03:35:57'), (203, 'relaxation_about', 'multiple', '{\"image\":{\"path\":\"contents\\/lhOfnz80b2HbNBrOzSUft1vwRpoe9h.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-07-14 01:52:52', '2024-09-16 09:18:37'), (204, 'relaxation_about', 'multiple', '{\"image\":{\"path\":\"contents\\/lCtlTpQchhKzGmq5fzX1KBgAIcrMba.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-07-14 01:53:22', '2024-09-16 09:18:45'), (205, 'relaxation_about', 'multiple', '{\"image\":{\"path\":\"contents\\/7iHDlTrE69Cz1r5cv8Kr0EArMzHHI0.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-07-14 01:53:52', '2024-09-16 09:18:53'), (206, 'relaxation_about', 'multiple', '{\"image\":{\"path\":\"contents\\/6j0BahyeZoOovKHtYQ08ox904DgYMv.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-07-14 01:54:27', '2024-09-16 09:19:01'), (207, 'relaxation_adventure', 'single', '{\"image\":{\"path\":\"contents\\/EgQRGP1iU1dzgZBBYDFEGqu6xW24WT.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/QhH0atFcpgT9knGcQieB0tdW2aN5X5.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/F7cqQk3wcsyUKSE8ySdG8vraYSOC43.webp\",\"driver\":\"local\"}}', '2024-07-14 02:17:45', '2024-08-02 03:35:57'), (208, 'relaxation_inspiration_two', 'single', '{\"image\":{\"path\":\"contents\\/lRNyK9jPynyhrf8cY7GMWEwmY7X9HW.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/7yqj9Mh9cCkm4WVtFmzxSKMUygZCNz.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/VT3RBixTZGvPEKMfsBWR7q2ufuPuFd.webp\",\"driver\":\"local\"},\"image_four\":{\"path\":\"contents\\/EahHiUjHoRMKkAuXu88QQRQvT39bXt.webp\",\"driver\":\"local\"},\"image_five\":{\"path\":\"contents\\/5IML9hBEk3QQ8OZ2vkdPaGhCCbvqnw.webp\",\"driver\":\"local\"},\"image_six\":{\"path\":\"contents\\/lgmccuzZHnJ5mc9dfAUHOZqIXGrXcZ.webp\",\"driver\":\"local\"},\"image_seven\":{\"path\":\"contents\\/V3XrHpJaPu4RZYhtUqwHodFGbQ8Yyc.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-07-14 03:24:32', '2024-09-16 09:19:33'), (209, 'relaxation_destination', 'single', '{\"image\":{\"path\":\"contents\\/vFVo01fRQkQe5q6eeCnF79iKgHw9U0.webp\",\"driver\":\"local\"}}', '2024-07-14 03:42:25', '2024-08-02 03:35:57'), (210, 'relaxation_testimonial', 'single', '{\"image_one\":{\"path\":\"contents\\/jQ7hHJewurqVBgPNxb6jYzQZPqeWCe.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/kmPiWtS2pYDiOvwl3INhosP9s25PWC.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/mn5xngj2ZUT92pQv7O9ZNWFPmzqcWP.webp\",\"driver\":\"local\"},\"image_four\":{\"path\":\"contents\\/RTpc1a1VIkXhxYq27b4tsbmxX9EEn8.webp\",\"driver\":\"local\"},\"image_five\":{\"path\":\"contents\\/euIUCchqkJDcUoaJpZxalwMKZcOLUc.webp\",\"driver\":\"local\"},\"image_six\":{\"path\":\"contents\\/tX9hKZ9abyNoA3rmQnZgZ9CY4YfyeS.webp\",\"driver\":\"local\"},\"image_seven\":{\"path\":\"contents\\/p2TnADskxqUjQr78ATu5QoqGV3VkN3.webp\",\"driver\":\"local\"},\"image_eight\":{\"path\":\"contents\\/VAtuam4QBtO2V8jluMIcrgj91Nnvf2.webp\",\"driver\":\"local\"}}', '2024-07-14 04:06:10', '2024-08-02 03:35:57'), (211, 'relaxation_testimonial', 'multiple', '{\"image\":{\"path\":\"contents\\/3EmqU82RTAkxxYieA8FAGFJKs8qwdt.webp\",\"driver\":\"local\"}}', '2024-07-14 04:12:06', '2024-08-02 03:35:57'), (212, 'relaxation_testimonial', 'multiple', '{\"image\":{\"path\":\"contents\\/blU1FV36uMSLjYcKvsriOr8rFOqwtu.webp\",\"driver\":\"local\"}}', '2024-07-14 04:13:02', '2024-08-02 03:35:57'), (213, 'relaxation_testimonial', 'multiple', '{\"image\":{\"path\":\"contents\\/hVlbwnzas6OxvgbgsUKtVI3X5VDbMl.webp\",\"driver\":\"local\"}}', '2024-07-14 04:13:35', '2024-08-02 03:35:57'), (214, 'relaxation_news_letter_two', 'single', '{\"image\":{\"path\":\"contents\\/JbijSrIuXIJOwjoCeoyr91LHxkrY5r.webp\",\"driver\":\"local\"}}', '2024-07-14 04:17:49', '2024-08-02 03:35:57'), (215, 'relaxation_about_three', 'single', '{\"image\":{\"path\":\"contents\\/DPUPlcQh87IQ746RAJv4bMa3HSItg8.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/Nasde5bBQmTsn1TEMyJxjxPql2uM39.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-07-14 04:42:04', '2024-09-16 09:25:07'), (216, 'relaxation_counter', 'single', NULL, '2024-07-14 06:13:41', '2024-08-02 03:35:57'), (217, 'relaxation_counter', 'multiple', '{\"count_number\":\"150\"}', '2024-07-14 06:14:43', '2024-08-02 03:35:57'), (218, 'relaxation_counter', 'multiple', '{\"count_number\":\"450\"}', '2024-07-14 06:15:07', '2024-08-02 03:35:57'), (219, 'relaxation_counter', 'multiple', '{\"count_number\":\"10\"}', '2024-07-14 06:15:32', '2024-08-02 03:35:57'), (220, 'relaxation_counter', 'multiple', '{\"count_number\":\"5\"}', '2024-07-14 06:15:51', '2024-08-02 03:35:57'), (221, 'relaxation_mission', 'single', '{\"image\":{\"path\":\"contents\\/S2FqjtoKC4TIXA2rk7zT8c6JAQKl0o.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/dtoAOFsgOnrv5HdKjKIhIlKHkVT5FT.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/ITm51Zo1WNMCJgfS5iOBmIFiNJyB91.webp\",\"driver\":\"local\"}}', '2024-07-14 06:27:02', '2024-08-02 03:35:57'), (222, 'relaxation_mission', 'multiple', NULL, '2024-07-14 06:27:25', '2024-08-02 03:35:57'), (223, 'relaxation_mission', 'multiple', NULL, '2024-07-14 06:27:46', '2024-08-02 03:35:57'), (224, 'relaxation_team', 'single', '{\"image\":{\"path\":\"contents\\/jUXz8q74RYwpiVrHJPtqNtDb9SbdOt.webp\",\"driver\":\"local\"}}', '2024-07-14 06:34:02', '2024-08-02 03:35:57'), (225, 'relaxation_team', 'multiple', '{\"image\":{\"path\":\"contents\\/OVhFKWfCsf8OL3le3d7KKxQ4gH5tsP.webp\",\"driver\":\"local\"}}', '2024-07-14 06:35:12', '2024-08-02 03:35:57'), (226, 'relaxation_team', 'multiple', '{\"image\":{\"path\":\"contents\\/CQTAicZKB8YHny0EYiSFmdoIiRYhnO.webp\",\"driver\":\"local\"}}', '2024-07-14 06:36:00', '2024-08-02 03:35:57'), (227, 'relaxation_team', 'multiple', '{\"image\":{\"path\":\"contents\\/im8FrzqKTQU93S9JBtr612ee594pX2.webp\",\"driver\":\"local\"}}', '2024-07-14 06:36:53', '2024-08-02 03:35:57'), (228, 'relaxation_faq', 'single', '{\"image\":{\"path\":\"contents\\/aQizx3OhCDsYDm9onewaFeTPIUG1GI.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/xOI1ShXSoqOAw22skGHm9FQ4SAqlZe.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/XwZlS9qeAT9siuu8JqcfO2s4dcayNc.webp\",\"driver\":\"local\"}}', '2024-07-14 06:42:52', '2024-08-02 03:35:57'), (229, 'relaxation_faq', 'multiple', NULL, '2024-07-14 06:43:26', '2024-08-02 03:35:57'), (230, 'relaxation_faq', 'multiple', NULL, '2024-07-14 06:44:00', '2024-08-02 03:35:57'), (231, 'relaxation_faq', 'multiple', NULL, '2024-07-14 06:44:23', '2024-08-02 03:35:57'), (232, 'relaxation_faq', 'multiple', NULL, '2024-07-14 06:44:52', '2024-08-02 03:35:57'), (233, 'relaxation_login', 'single', '{\"image\":{\"path\":\"contents\\/wmPPggHIDDasisTwPr9GlQNC7FJdhu.webp\",\"driver\":\"local\"}}', '2024-07-14 06:58:37', '2024-08-02 03:35:57'), (234, 'relaxation_register', 'single', '{\"image\":{\"path\":\"contents\\/Uy0WpDrRStYNxzkagXttSNtmxLIqcY.webp\",\"driver\":\"local\"}}', '2024-07-14 07:17:03', '2024-08-02 03:35:57'), (235, 'relaxation_experience', 'single', '{\"image\":{\"path\":\"contents\\/GXAbyVmBzOnUKC7HvFFxJC49aMOkrN.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/Jl9VbCOZOpjNu6NyZleYd7DNgp44wR.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/ZXVTq0Wd82HgVSTu7NwSgyXwAaW6MM.webp\",\"driver\":\"local\"},\"image_four\":{\"path\":\"contents\\/LgYpGd3q2aFX3TcsfrRRY9csBqmLGn.webp\",\"driver\":\"local\"},\"image_five\":{\"path\":\"contents\\/c6weBmEuDsalWx3KfoFx6PU86BX0SB.webp\",\"driver\":\"local\"},\"image_six\":{\"path\":\"contents\\/0999EWFvirpXNJiEiDl7Urviqw3Zai.webp\",\"driver\":\"local\"},\"image_seven\":{\"path\":\"contents\\/qgjlBMxAcKjBV0w11ouzycEHJzGaeS.webp\",\"driver\":\"local\"},\"image_eight\":{\"path\":\"contents\\/R58VNcteJwmJvwRUDRWRwm1Py89r8a.webp\",\"driver\":\"local\"},\"image_nine\":{\"path\":\"contents\\/UWTCo185JyCOKZ5XFzjUhS0xsggwfI.webp\",\"driver\":\"local\"},\"image_ten\":{\"path\":\"contents\\/6UiV7T7bjHhe5gPWUAFGJ7CvCNhQcR.webp\",\"driver\":\"local\"},\"image_eleven\":{\"path\":\"contents\\/wVYsSm0OmoqkLmO6VlOoPjpjGrRLE3.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-07-14 08:03:25', '2024-09-16 09:26:05'), (236, 'relaxation_experience', 'multiple', '{\"image\":{\"path\":\"contents\\/aXZDCt5ZOpC3u8v0uGON3wkxXYUBr7.webp\",\"driver\":\"local\"}}', '2024-07-14 08:04:22', '2024-08-02 03:35:57'), (237, 'relaxation_experience', 'multiple', '{\"image\":{\"path\":\"contents\\/Wxjrc92DaKsOBWwYmhy7oCRW3yv816.webp\",\"driver\":\"local\"}}', '2024-07-14 08:07:11', '2024-08-02 03:35:57'), (238, 'relaxation_inspiration', 'single', '{\"image\":{\"path\":\"contents\\/8evPhTpi6qxYLrmtB3dHUFhOyGQueW.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/S0dwDfAg4B2BtIHvhvt1Hn2sExRPIY.webp\",\"driver\":\"local\"},\"image_three\":{\"path\":\"contents\\/tVJ8fbBTftjwe2tQwqIEYkyKbtRMJX.webp\",\"driver\":\"local\"},\"image_four\":{\"path\":\"contents\\/TkUdRj2a1QWvCQ5n8eadrbAJZpqkkT.webp\",\"driver\":\"local\"},\"image_five\":{\"path\":\"contents\\/uvqsiHHmVaUOK4kp55ivnQbB7LfVA7.webp\",\"driver\":\"local\"},\"image_six\":{\"path\":\"contents\\/67Pp2a3w0pfOsRhTt0Sp3UCKC18SJQ.webp\",\"driver\":\"local\"},\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-07-14 08:39:28', '2024-09-16 09:24:05'), (239, 'relaxation_news_letter', 'single', '{\"image\":{\"path\":\"contents\\/ozfK5BI280ePS124bU9aanWoQ8cR3v.webp\",\"driver\":\"local\"}}', '2024-07-14 09:01:20', '2024-08-02 03:35:57'), (240, 'package', 'single', '{\"image\":{\"path\":\"contents\\/Z184WOOO1RLBOdlVUgRyJc6TCgHOZb.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/anL1FTQ0b2bDCE6WTWk6Bo5zAH3ZHd.webp\",\"driver\":\"local\"}}', '2024-07-15 04:23:17', '2024-07-15 04:23:18'), (241, 'destination', 'single', '{\"image\":{\"path\":\"contents\\/qaOyeXk7pxuZR0jCrJUbIuhfDs4e0k.webp\",\"driver\":\"local\"},\"image_two\":{\"path\":\"contents\\/LijWOFTZafNzuDwnI5u7U3vEmkAQvs.webp\",\"driver\":\"local\"}}', '2024-07-16 07:50:07', '2024-07-16 07:50:07'), (242, 'destination_three', 'single', '{\"button_link\":\"https:\\/\\/bugfinder.net\\/\"}', '2024-07-28 07:45:49', '2024-09-16 10:47:06'), (243, 'popular_tour', 'single', NULL, '2024-08-11 09:09:48', '2024-08-11 09:09:48'), (244, 'popular_tour_three', 'single', NULL, '2024-08-11 09:10:39', '2024-08-11 09:10:39'), (245, 'account_partials', 'multiple', '{\"my_link\":\"https:\\/\\/www.facebook.com\\/\",\"icon\":\"fa-brands fa-facebook\"}', '2024-08-31 10:40:48', '2024-09-08 10:04:55'), (246, 'account_partials', 'multiple', '{\"my_link\":\"https:\\/\\/www.instagram.com\\/\",\"icon\":\"fa-brands fa-instagram\"}', '2024-08-31 10:41:51', '2024-09-08 10:05:22'), (247, 'account_partials', 'multiple', '{\"my_link\":\"https:\\/\\/www.linkedin.com\\/\",\"icon\":\"fa-brands fa-linkedin\"}', '2024-08-31 10:42:21', '2024-09-08 10:05:42'), (248, 'account_partials', 'multiple', '{\"my_link\":\"https:\\/\\/x.com\\/\",\"icon\":\"fa-brands fa-twitter\"}', '2024-08-31 10:42:48', '2024-09-08 10:06:08'), (249, 'header_top', 'multiple', '{\"my_link\":\"https:\\/\\/www.facebook.com\\/\",\"icon\":\"fa-brands fa-facebook\"}', '2024-08-31 10:44:30', '2024-09-08 10:23:20'), (250, 'header_top', 'multiple', '{\"my_link\":\"https:\\/\\/x.com\\/\",\"icon\":\"fa-brands fa-twitter\"}', '2024-08-31 10:44:39', '2024-09-08 10:23:50'), (251, 'header_top', 'multiple', '{\"my_link\":\"https:\\/\\/www.instagram.com\\/\",\"icon\":\"fa-brands fa-instagram\"}', '2024-08-31 10:44:51', '2024-09-08 10:23:45'), (252, 'header_top', 'multiple', '{\"my_link\":\"https:\\/\\/www.linkedin.com\\/\",\"icon\":\"fa-brands fa-linkedin\"}', '2024-08-31 10:45:03', '2024-09-08 10:23:41'), (253, 'holiday', 'single', NULL, '2024-08-31 10:50:38', '2024-08-31 10:50:38'), (254, 'holiday_three', 'single', NULL, '2024-08-31 10:51:30', '2024-08-31 10:51:30'), (255, 'holiday_two', 'single', '{\"button_link\":\"https:\\/\\/next-destina.bugfinder.net\\/packages\"}', '2024-08-31 10:52:20', '2024-09-19 19:17:50'), (256, 'adventure_register', 'single', NULL, '2024-09-10 06:31:39', '2024-09-10 06:31:39'), (257, 'adventure_login', 'single', NULL, '2024-09-10 06:40:19', '2024-09-10 06:40:19'), (261, 'relaxation_faq', 'multiple', NULL, '2024-09-16 07:19:20', '2024-09-16 07:19:20'), (263, 'card', 'multiple', '{\"image\":{\"path\":\"contents\\/zZh4VBzPuicFzkmtUK3qouWIWW7q0t.webp\",\"driver\":\"local\"}}', '2024-09-18 07:23:51', '2024-09-18 07:23:51'), (264, 'card', 'multiple', '{\"image\":{\"path\":\"contents\\/hnlpd6wJGLUvFtxjpkGtrsgouC7ljp.webp\",\"driver\":\"local\"}}', '2024-09-18 07:23:55', '2024-09-18 07:23:55'), (265, 'card', 'multiple', '{\"image\":{\"path\":\"contents\\/wzAWw0z91YgrfygFtXGXBmVzn6AIwJ.webp\",\"driver\":\"local\"}}', '2024-09-18 07:24:01', '2024-09-18 07:24:01'), (266, 'card', 'multiple', '{\"image\":{\"path\":\"contents\\/ic3ik4QcUrLrVOLvQsfLRQ8G5zavF0.webp\",\"driver\":\"local\"}}', '2024-09-18 07:24:05', '2024-09-18 07:24:05'), (267, 'pwa_popup', 'single', '{\"image\":{\"path\":\"contents\\/kIj384HPGrBzhLKqLC3yDczoknJ0TS.webp\",\"driver\":\"local\"}}', '2025-01-09 06:00:54', '2025-01-09 06:14:18'), (268, 'pwa_popup', 'multiple', '{\"image\":{\"path\":\"contents\\/vGtOhJA3ab1iiAS5W9iAiRX8kZRjW4.webp\",\"driver\":\"local\"}}', '2025-01-09 06:16:43', '2025-01-14 12:49:01'), (269, 'pwa_popup', 'multiple', '{\"image\":{\"path\":\"contents\\/9GJngky7X3mAjxDQ3gi06jxG7E6lFh.webp\",\"driver\":\"local\"}}', '2025-01-09 06:16:47', '2025-01-14 12:49:30'), (270, 'pwa_popup', 'multiple', '{\"image\":{\"path\":\"contents\\/tVws43dNLSN1npLMMTxnFsEdG5oypy.webp\",\"driver\":\"local\"}}', '2025-01-09 06:16:52', '2025-01-14 12:49:54'); -- -------------------------------------------------------- -- -- Table structure for table `content_details` -- CREATE TABLE `content_details` ( `id` bigint(20) UNSIGNED NOT NULL, `content_id` bigint(20) DEFAULT NULL, `language_id` bigint(20) DEFAULT NULL, `description` longtext DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `content_details` -- INSERT INTO `content_details` (`id`, `content_id`, `language_id`, `description`, `created_at`, `updated_at`) VALUES (50, 46, 1, '{\"heading\":\"More Blogs\",\"sub_heading\":\"Latest Blogs And Articles\",\"title\":\"Our Blog\",\"sub_title\":\"Latest Blogs & Articles\",\"description\":\"In today\'s fast-paced world, managing bill payments can become a tedious and time-consuming task. Fortunately, with the advent of online payment services.\",\"sub_text\":\"In today\'s fast-paced world, managing Travellerments can become a tedious and time-consuming task. Fortunately, with the advent of online payment services.\"}', '2023-11-23 02:41:48', '2024-09-12 10:43:12'), (51, 47, 1, '{\"title\":\"Blog Heading 1\",\"sub_title\":\"Blog Heading 1\",\"description\":\"dsfdsf\"}', '2023-11-23 02:41:59', '2023-11-23 02:41:59'), (52, 48, 1, '{\"title\":\"sdf\",\"sub_title\":\"dsf\",\"description\":\"dfg\"}', '2023-11-23 02:42:15', '2023-11-23 02:42:15'), (53, 49, 1, '{\"heading\":\"About Us\",\"sub_heading\":\"Traveller Make Your Travel More Enjoyable\",\"description\":\"Welcome to Traveller, your ultimate destination for travel and adventure! We are passionate about exploring the world and helping you embark on unforgettable journeys.\",\"button_name\":\"more about\"}', '2023-11-23 02:42:52', '2024-09-16 09:31:06'), (54, 50, 1, '{\"text\":\"The Tour and Travels project is designed to provide users with a comprehensive platform for exploring and booking various travel packages.\",\"address\":\"10714 163rd Pl, Orland Park, IL 60467, United States\",\"phone\":\"+1 5589 55488 55\",\"email\":\"info@tour&travel.com\",\"card_text\":\"We Accept all major Credit & Debit Cards\",\"destination_package_text\":\"Top Destination\",\"copyright\":\"Copyright \\u00a92024\",\"copyright_text\":\"All Rights Reserved\"}', '2023-12-11 10:08:10', '2024-09-16 12:16:19'), (59, 53, 1, '{\"title\":\"Must-Visit Hidden Gems in Egypt\",\"description\":\"
List 10 lesser-known attractions, hotels, or restaurants in a popular travel destination.<\\/div>\"}', '2024-04-04 03:19:55', '2024-04-04 03:19:55'), (60, 54, 1, '{\"title\":\"The Ultimate Guide to Solo Travel: Tips and Destinations\",\"description\":\"
Share statistics on the rise of solo travel, safety tips, and a list of solo-friendly destinations.<\\/div>\"}', '2024-04-04 03:22:20', '2024-04-04 03:22:20'), (61, 55, 1, '{\"title\":\"The Impact of COVID-19 on the Travel Industry: Trends and Recovery\",\"description\":\"
The Impact of COVID-19 on the Travel Industry: Trends and Recovery. ipsum dolor sit amet, consectetur adipisicing elit. Amet, deserunt!<\\/div>\"}', '2024-04-04 03:23:10', '2024-04-04 03:23:10'), (62, 56, 1, '{\"title\":\"Sustainable Travel: How to Reduce Your Carbon Footprint on Your Next Trip\",\"description\":\"
Share data on the carbon footprint of travel, eco-friendly destinations, and sustainable travel practices. Lorem ipsum dolor, sit amet consectetur adipisicing elit. Ratione, eligendi sapiente eveniet sequi consectetur quidem corporis quaerat repellendus aliquam fuga minus modi dolorum dolore, natus nihil molestias eius ad est.<\\/div>\"}', '2024-04-04 03:24:45', '2024-04-04 03:24:45'), (63, 57, 1, '{\"heading\":\"Newsletter\",\"sub_heading\":\"Subscribe Our\",\"sub_heading_two\":\"Newsletter\",\"button\":\"Subscribe\"}', '2024-04-04 06:17:05', '2024-07-16 04:28:38'), (64, 58, 1, '{\"heading\":\"Discover The\",\"sub_heading\":\"Travels & Adventure\",\"sub_heading_text\":\"Travel Far, Travel Wide, And Travel Boldly\",\"search_title_one\":\"Where to?\",\"search_title_two\":\"When?\",\"button\":\"Filter\"}', '2024-04-06 01:47:02', '2024-09-17 04:34:37'), (66, 59, 1, '{\"topic\":\"Expertise :\",\"description\":\"With years of experience in the travel industry, our team of experts curates exceptional travel experiences that cater to all interests and budgets.\"}', '2024-04-06 02:40:22', '2024-09-16 09:31:12'), (67, 60, 1, '{\"topic\":\"Diverse Destinations :\",\"description\":\"From exotic tropical paradises to historical landmarks, we offer a wide range of destinations that appeal to every type of traveler.\"}', '2024-04-06 02:40:42', '2024-09-16 09:31:18'), (68, 61, 1, '{\"web\":\"https:\\/\\/www.facebook.com\\/\"}', '2024-04-06 02:59:56', '2024-04-06 02:59:56'), (69, 62, 1, '{\"web\":\"https:\\/\\/x.com\\/\"}', '2024-04-06 03:01:15', '2024-09-08 11:17:03'), (70, 63, 1, '{\"web\":\"https:\\/\\/www.linkedin.com\\/\"}', '2024-04-06 03:01:48', '2024-04-06 03:01:48'), (71, 64, 1, '{\"web\":\"https:\\/\\/www.instagram.com\\/\"}', '2024-04-06 03:02:15', '2024-04-06 03:02:15'), (72, 65, 1, '{\"heading\":\"Contact Information\",\"Address\":\"10714 163rd Pl, Orland Park, IL 60467, United States\",\"Email\":\"support@nextDestina.com\",\"phone\":\"+5254552652\",\"sub_heading\":\"Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days. We will be happy to answer your questions.\",\"heading_two\":\"Drop Us A Line\",\"sub_heading_two\":\"Thank you for visiting our Tour and Travels platform. We\\u2019re here to assist you with any inquiries or concerns you may have. Whether you\'re looking to book a travel package, need assistance with an existing reservation, or just want to learn more about our services, our team is ready to help.\",\"map\":\"
https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d193595.15830869428!2d-74.119763973046!3d40.69766374874431!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c24fa5d33f083b%3A0xc80b8f06e177fe62!2sNew%20York%2C%20NY%2C%20USA!5e0!3m2!1sen!2sbd!4v1668508535036!5m2!1sen!2sbd<\\/div>\",\"button\":\"Send A Message\"}', '2024-04-06 03:34:53', '2024-09-16 12:37:05'), (73, 66, 1, '{\"title\":\"Phone\",\"value\":\"+45345847431324\"}', '2024-04-06 03:35:25', '2024-04-06 03:35:25'), (74, 67, 1, '{\"title\":\"Email\",\"value\":\"info@tours&travels.com\"}', '2024-04-06 03:35:58', '2024-04-06 03:36:24'), (75, 68, 1, '{\"title\":\"Address\",\"value\":\"22 Baker Street, London\"}', '2024-04-06 03:37:41', '2024-04-06 03:37:41'), (81, 51, 1, '{\"title\":\"Faqs\",\"sub_title\":\"Have Any Questions!\",\"details\":\"Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt possimus itaque earum dolor sit repudiandae impedit tempore accusantium quos in.\"}', '2024-04-07 01:27:20', '2024-04-07 01:27:20'), (82, 73, 1, '{\"heading\":\"Why Choose Us\",\"sub_heading\":\"Why Choose Traveller\",\"sub_text\":\"At nextDestina, we believe in delivering excellence through our services. Here\'s why we\'re the right choice for you:\"}', '2024-04-07 02:40:13', '2024-09-10 05:28:14'), (83, 74, 1, '{\"title\":\"Expertise And Experience\",\"details\":\"Highlight your company\'s years of experience in the travel and tourism industry. Mention how your team\'s expertise ensures a seamless and enjoyable travel experience for your customers.\"}', '2024-04-07 02:41:13', '2024-04-07 02:41:26'), (84, 75, 1, '{\"title\":\"24\\/7 Customer Support\",\"details\":\"Let customers know that you\'re available round the clock to assist them, whether it\'s for booking inquiries, travel emergencies, or any other assistance they may need during their trip.\"}', '2024-04-07 02:42:01', '2024-04-07 02:42:01'), (85, 76, 1, '{\"title\":\"Competitive Pricing\",\"details\":\"If applicable, mention that you offer competitive pricing and value for money, ensuring that your customers get the best deals for their travel budget.\"}', '2024-04-07 02:42:32', '2024-04-07 02:42:32'), (102, 77, 1, '{\"heading\":\"Testimonial\",\"sub_heading\":\"What Our Clients Say\"}', '2024-04-16 01:17:11', '2024-04-16 01:17:11'), (103, 78, 1, '{\"name\":\"Crol Mickey\",\"address\":\"Sydney, Australia\",\"description\":\"
\\\"OMG! I cannot believe that I have got a brand new landing page after getting appmax. It
was super easy to edit and publish.I have got a brand new landing page.\\\"<\\/div>\"}', '2024-04-16 01:18:54', '2024-04-16 01:18:54'), (104, 79, 1, '{\"name\":\"Mack Mickey\",\"address\":\"Sydney, Australia\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"}', '2024-04-16 01:20:55', '2024-04-16 01:22:58'), (105, 80, 1, '{\"name\":\"Mike Tyson\",\"address\":\"NY, NY\",\"description\":\"
\\\"\\u00a1Dios m\\u00edo! No puedo creer que tenga una nueva p\\u00e1gina de destino despu\\u00e9s de obtener appmax.<\\/div>
Fue muy f\\u00e1cil de editar y publicar. Tengo una nueva p\\u00e1gina de destino\\\".<\\/div>\"}', '2024-04-16 01:22:40', '2024-09-10 05:36:30'), (106, 81, 1, '{\"heading\":\"about us\",\"number\":\"15\",\"text_part_one\":\"YEARS OF\",\"text_part_two\":\"SUCCESSFUL\",\"text_part_three\":\"WORK\",\"sub_heading\":\"Traveller make your travel more enjoyable\",\"description\":\"
Welcome to Traveller, your ultimate destination for travel and adventure! We are passionate
about exploring the world and helping you embark on unforgettable journeys.<\\/div>\",\"button_name\":\"more about\"}', '2024-04-27 09:55:35', '2024-09-16 09:33:51'), (107, 82, 1, '{\"topic\":\"Expertise\",\"description\":\"With years of experience in the travel industry, our team of experts curates exceptional travel experiences that cater to all interests and budgets.\"}', '2024-04-27 09:56:02', '2024-04-27 09:56:02'), (108, 83, 1, '{\"topic\":\"Diverse Destinations\",\"description\":\"From exotic tropical paradises to historical landmarks, we offer a wide range of destinations that appeal to every type of traveler.\"}', '2024-04-27 09:56:21', '2024-04-27 09:56:21'), (112, 84, 1, '{\"heading\":\"About Us\",\"sub_heading\":\"Traveller Make Your Travel More Enjoyable\",\"description\":\"

Welcome to Traveller, your ultimate destination for travel and adventure! We are passionate about exploring the world and helping you embark on unforgettable journeys.
<\\/p>\",\"button_name\":\"more about\"}', '2024-04-28 02:39:35', '2024-09-16 09:34:56'), (114, 85, 1, '{\"topic\":\"Expertise\",\"description\":\"With years of experience in the travel industry, our team of experts curates exceptional travel experiences that cater to all interests and budgets.\"}', '2024-04-28 02:40:57', '2024-09-16 09:35:14'), (115, 86, 1, '{\"topic\":\"Diverse Destinations\",\"description\":\"From exotic tropical paradises to historical landmarks, we offer a wide range of destinations that appeal to every type of traveler.\"}', '2024-04-28 02:41:15', '2024-09-16 09:35:21'), (118, 87, 1, '{\"heading\":\"Discover The\",\"sub_heading\":\"Travels & Adventure\",\"sub_heading_text\":\"Travel Far, Travel Wide, And Travel Boldly Country\",\"search_title_one\":\"Where to?\",\"search_title_two\":\"When?\",\"button\":\"Filter\"}', '2024-04-28 02:49:29', '2024-09-17 04:36:57'), (120, 88, 1, '{\"text_one\":\"Discover your\",\"text_two\":\"dream place\",\"text_three\":\"in\",\"text_four\":\"Traveller.\",\"text_five\":\"Discover amzizing place at exclusive deals.\",\"search_title_one\":\"Where to?\",\"search_title_two\":\"When?\",\"button\":\"Filter\",\"button_two\":\"Discover now\"}', '2024-04-28 04:07:30', '2024-09-17 04:41:05'), (122, 89, 1, '{\"heading\":\"Features\",\"sub_heading\":\"Why Book With Traveller?\"}', '2024-04-28 04:24:55', '2024-04-28 04:24:55'), (124, 90, 1, '{\"title\":\"100% Trusted Tour Agency\",\"sub_title\":\"Feel free to book your trip.\"}', '2024-04-28 04:26:08', '2024-04-28 04:26:08'), (125, 91, 1, '{\"title\":\"24\\/7 Guidance\",\"sub_title\":\"Always Traveller guide you.\"}', '2024-04-28 04:26:38', '2024-04-28 04:26:38'), (126, 92, 1, '{\"title\":\"Extensive Destination Options\",\"sub_title\":\"Traveler offers a wide range of destinations.\"}', '2024-04-28 04:27:12', '2024-04-28 04:27:12'), (127, 93, 1, '{\"title\":\"Competitive Pricing\",\"sub_title\":\"Traveler consistently offers competitive prices and exclusive deals.\"}', '2024-04-28 04:28:18', '2024-04-28 04:28:18'), (129, 95, 1, '{\"title\":\"Best Tour Guide\",\"sub_title\":\"Our expert tour guides are your trusted companions throughout your journey. They possess an unmatched passion for travel and an intimate knowledge of the destinations we explore.\"}', '2024-04-28 06:18:47', '2024-04-28 06:18:47'), (130, 96, 1, '{\"title\":\"Easy Booking\",\"sub_title\":\"Our website is designed with you in mind. Navigate our pages with ease, explore our destinations, and view detailed itineraries\\u2014all from the comfort of your device.\"}', '2024-04-28 06:19:19', '2024-04-28 06:19:19'), (131, 97, 1, '{\"heading\":\"Our Blog\",\"sub_heading\":\"Latest Blogs & Articles\",\"sub_text\":\"In today\'s fast-paced world, managing Travellerments can become a tedious and time-consuming task. Fortunately, with the advent of online payment services.\"}', '2024-04-28 06:29:50', '2024-04-28 06:29:50'), (132, 98, 1, '{\"title\":\"Awesome Tour\",\"value\":\"700\"}', '2024-04-28 07:42:45', '2024-04-28 07:42:45'), (133, 99, 1, '{\"title\":\"New Destinations\",\"value\":\"320\"}', '2024-04-28 07:43:25', '2024-09-10 05:52:55'), (134, 100, 1, '{\"title\":\"Years Experience\",\"value\":\"15\"}', '2024-04-28 07:43:49', '2024-04-28 07:43:49'), (135, 101, 1, '{\"title\":\"Best Mountains\",\"value\":\"250\"}', '2024-04-28 07:44:20', '2024-04-28 07:44:20'), (136, 102, 1, '{\"section_title\":\"Get 10% Off On Family & Group Tour\",\"section_sub_title\":\"Newsletter\",\"section_title_text\":\"

Sign up to receive the best offers on promotion and coupons. Don\\u2019t worry! It\\u2019s not Spam
<\\/p>\",\"newsletter_title\":\"Subscribe Our Newsletter\",\"newsletter_text\":\"

Sign up to receive the best offers on promotion and coupons. Don\\u2019t worry! It\\u2019s not Spam
<\\/p>\",\"button_one_title\":\"Explore More\",\"button_two_title\":\"Subscribe\"}', '2024-04-28 07:54:08', '2024-09-16 09:36:48'), (137, 103, 1, '{\"heading\":\"Testimonial\",\"sub_heading\":\"What Clients Say\",\"description\":\"

Help agencies to define their new business objectives and then create professional software. Lorem ipsum, dolor sit amet.<\\/span>
<\\/p>\"}', '2024-04-28 08:32:12', '2024-04-28 08:32:12'), (138, 104, 1, '{\"name\":\"Crol Mickey\",\"address\":\"Sydney, Australia\",\"description\":\"

Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo reiciendis dolor totam
officiis! Dolore veniam exercitationem optio eveniet expedita esse.<\\/div>\"}', '2024-04-28 08:34:16', '2024-04-28 08:34:16'), (139, 105, 1, '{\"name\":\"Jim Morison\",\"address\":\"London, UK\",\"description\":\"
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo reiciendis dolor totam
officiis! Dolore veniam exercitationem optio eveniet expedita esse.<\\/div>\"}', '2024-04-28 08:35:01', '2024-04-28 08:35:01'), (140, 106, 1, '{\"name\":\"Tom Haris\",\"address\":\"New York, USA\",\"description\":\"
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo reiciendis dolor totam
officiis! Dolore veniam exercitationem optio eveniet expedita esse.<\\/div>\"}', '2024-04-28 08:35:53', '2024-04-28 08:35:53'), (141, 107, 1, '{\"name\":\"Alex Cruis\",\"address\":\"Dublin, Ireland\",\"description\":\"
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo reiciendis dolor totam
officiis! Dolore veniam exercitationem optio eveniet expedita esse.<\\/div>\"}', '2024-04-28 08:36:45', '2024-04-28 08:36:45'), (142, 108, 1, '{\"heading\":\"Why Choose Us\",\"sub_heading\":\"Why Choose Traveller\",\"sub_text\":\"At nextDestina, we believe in delivering excellence through our services. Here\'s why we\'re the right choice for you:\"}', '2024-04-28 08:44:24', '2024-09-10 05:30:52'), (143, 109, 1, '{\"title\":\"Expertise And Experience\",\"details\":\"Highlight your company\'s years of experience in the travel and tourism industry. Mention how your team\'s expertise ensures a seamless and enjoyable travel experience for your customers.\"}', '2024-04-28 08:45:01', '2024-04-28 08:45:01'), (144, 110, 1, '{\"title\":\"24\\/7 Customer Support\",\"details\":\"Let customers know that you\'re available round the clock to assist them, whether it\'s for booking inquiries, travel emergencies, or any other assistance they may need during their trip.\"}', '2024-04-28 08:45:35', '2024-04-28 08:45:35'), (145, 111, 1, '{\"title\":\"Competitive Pricing\",\"details\":\"If applicable, mention that you offer competitive pricing and value for money, ensuring that your customers get the best deals for their travel budget.\"}', '2024-04-28 08:46:34', '2024-04-28 08:46:34'), (146, 112, 1, '{\"heading\":\"Why Choose Us\",\"sub_heading\":\"Let Us Show You The Beauty Of The World\",\"button\":\"Book now\"}', '2024-04-28 08:52:21', '2024-09-16 11:01:10'), (147, 113, 1, '{\"title\":\"Best tour guide\",\"details\":\"
Our expert tour guides are your trusted companions throughout your journey. They
possess
an unmatched passion for travel and an intimate knowledge of the destinations we
explore.<\\/div>\"}', '2024-04-28 08:53:01', '2024-04-28 08:53:01'), (148, 114, 1, '{\"title\":\"World Of Expertise\",\"details\":\"With years of experience exploring diverse corners of the globe, our team consists of avid travelers and experts. We breathe travel, and our extensive knowledge ensures that your journey.\"}', '2024-04-28 08:54:01', '2024-04-28 08:54:01'), (149, 115, 1, '{\"title\":\"Local Connection\",\"details\":\"
o truly understand a destination, you need a local perspective. Our network of
seasoned local guides brings each place to life, sharing cultural insights,
historical context, and the hidden gems that only locals know.<\\/div>\"}', '2024-04-28 08:55:20', '2024-04-28 08:55:20'), (150, 116, 1, '{\"title\":\"Safety Above All\",\"details\":\"Your safety and security are non-negotiable for us. We partner with trusted local providers, adhere to stringent safety protocols, and offer 24\\/7 support to guarantee your peace of mind at every step of your journey.<\\/span>\"}', '2024-04-28 08:56:16', '2024-04-28 08:56:16'), (152, 118, 1, '{\"heading\":\"Privacy & Policy\",\"description\":\"

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Habitant morbi tristique senectus et netus et malesuada. Sit amet volutpat consequat mauris nunc congue nisi. Nibh praesent tristique magna sit. Pulvinar pellentesque habitant morbi tristique senectus et netus. Massa sed elementum tempus egestas sed sed. Dignissim convallis aenean et tortor at risus viverra. Rutrum tellus pellentesque eu tincidunt tortor aliquam nulla facilisi cras. Ut enim blandit volutpat maecenas. Integer eget aliquet nibh praesent tristique magna sit amet. Mi bibendum neque egestas congue quisque. Elementum nisi quis eleifend quam adipiscing. Pharetra sit amet aliquam id diam. Elit sed vulputate mi sit amet mauris commodo quis imperdiet. Sit amet mattis vulputate enim. In eu mi bibendum neque egestas congue. Sed augue lacus viverra vitae congue eu.
<\\/p>\"}', '2024-05-07 07:22:20', '2024-05-07 07:22:20'), (154, 119, 1, '{\"heading\":\"privacy & Policy\",\"description\":\"

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Habitant morbi tristique senectus et netus et malesuada. Sit amet volutpat consequat mauris nunc congue nisi. Nibh praesent tristique magna sit. Pulvinar pellentesque habitant morbi tristique senectus et netus. Massa sed elementum tempus egestas sed sed. Dignissim convallis aenean et tortor at risus viverra. Rutrum tellus pellentesque eu tincidunt tortor aliquam nulla facilisi cras. Ut enim blandit volutpat maecenas. Integer eget aliquet nibh praesent tristique magna sit amet. Mi bibendum neque egestas congue quisque. Elementum nisi quis eleifend quam adipiscing. Pharetra sit amet aliquam id diam. Elit sed vulputate mi sit amet mauris commodo quis imperdiet. Sit amet mattis vulputate enim. In eu mi bibendum neque egestas congue. Sed augue lacus viverra vitae congue eu.
<\\/p>\"}', '2024-05-07 07:27:55', '2024-05-07 07:27:55'), (156, 120, 1, '{\"heading\":\"Refund Policy\",\"description\":\"

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Habitant morbi tristique senectus et netus et malesuada. Sit amet volutpat consequat mauris nunc congue nisi. Nibh praesent tristique magna sit. Pulvinar pellentesque habitant morbi tristique senectus et netus. Massa sed elementum tempus egestas sed sed. Dignissim convallis aenean et tortor at risus viverra. Rutrum tellus pellentesque eu tincidunt tortor aliquam nulla facilisi cras. Ut enim blandit volutpat maecenas. Integer eget aliquet nibh praesent tristique magna sit amet. Mi bibendum neque egestas congue quisque. Elementum nisi quis eleifend quam adipiscing. Pharetra sit amet aliquam id diam. Elit sed vulputate mi sit amet mauris commodo quis imperdiet. Sit amet mattis vulputate enim. In eu mi bibendum neque egestas congue. Sed augue lacus viverra vitae congue eu.
<\\/p>\"}', '2024-05-07 07:41:29', '2024-05-07 07:41:29'), (158, 121, 1, '{\"heading\":\"Terms Of Use\",\"description\":\"

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Habitante morbi tristique senectus et netus et malesuada. Sit amet volutpat consequat mauris nunc congue nisi. Nibh praesent tristique magna sit. Pulvinar pellentesque habitante morbi tristique senectus et netus. Massa sed elementum tempus egetas sed sed. Dignissim convallis aenean et tortor at risus viverra. Rutrum tellus pellentesque eu tincidunt tortor aliquam nulla facilisi cras. Ut enim blandit volutpat mecenas. Entero eget aliquet nibh praesent tristique magna sit amet. Mi bibendum neque egetas congue quisque. Elementum nisi quis eleifend quam adipiscing. Pharetra sit amet aliquam id diam. Elit sed vulputate mi sit amet mauris commodo quis imperdiet. Si\\u00e9ntate amet mattis vulputate enim. In eu mi bibendum neque egetas congue. Sed augue lacus viverra vitae congue eu.
<\\/p>\"}', '2024-05-07 07:44:06', '2024-05-07 07:44:06'), (160, 122, 1, '{\"phone\":\"+12152688872\",\"email\":\"support@nextDestina.com\",\"button\":\"Book Now\"}', '2024-05-08 06:56:11', '2024-09-19 21:28:27'), (161, 123, 1, '{\"heading\":\"Welcome To\",\"sub_heading\":\"We Are Tour & Travel Expert\",\"heading_text\":\"We are glad to see you again! Get access to your Orders, Wishlist and Recommendations.\"}', '2024-05-09 01:45:34', '2024-09-16 11:35:59'), (162, 124, 1, '{\"question\":\"How do I book a tour on your website?\",\"answer\":\"You can easily book a tour by selecting your desired destination, choosing your travel dates, and filling in the necessary details. Once you\\u2019ve completed the form, proceed to payment to confirm your booking.\"}', '2024-05-12 07:19:08', '2024-09-16 07:11:31'), (163, 125, 1, '{\"question\":\"What payment methods do you accept?\",\"answer\":\"We accept all major credit and debit cards, PayPal, and bank transfers. All transactions are secured for your protection.\"}', '2024-05-12 07:19:24', '2024-09-16 07:12:07'), (164, 126, 1, '{\"question\":\"Can I modify my booking after it has been confirmed?\",\"answer\":\"Yes, you can modify your booking depending on availability and the terms of the specific tour. Please contact our support team as soon as possible to make any changes.\"}', '2024-05-12 07:19:39', '2024-09-16 07:13:03'), (165, 127, 1, '{\"question\":\"We know how to handle a wide range of car services.\",\"answer\":\"Cancellations made 30 days before the tour date are eligible for a full refund. Cancellations made 2 days before the tour will receive a 50% refund. Unfortunately, no refunds are provided for cancellations made less than 1 days before the tour.\"}', '2024-05-12 07:19:57', '2024-09-16 07:13:56'), (166, 128, 1, '{\"topic\":\"Information We Collect\",\"description\":\"These Terms are important as they, together with your booking confirmation email (the \\u201cBooking Confirmation\\u201d), set out the legal terms on which Travel Services are made available to you through our Service. They also cover any interactions or communications you have with us through our Service.<\\/span>\"}', '2024-05-12 09:11:35', '2024-05-12 09:11:35'), (167, 129, 1, '{\"topic\":\"Booking Policies\",\"description\":\"We accept responsibility for carrying out the terms of the contact and for the performance of our employees, sub-contractors and suppliers. If we fail to comply with the terms of the contract, we will compensate you for any loss that you incur. We will not be liable to pay compensation if the failure to carry out the terms of the contract is neither our fault nor that of our employee.<\\/span>\"}', '2024-05-12 09:11:55', '2024-05-12 09:11:55'), (168, 130, 1, '{\"topic\":\"Cancellation Policies\",\"description\":\"

Cancellation fees may apply depending on timing.<\\/p>

Refund policies for cancellations will vary.<\\/p>

Customers should review cancellation terms before booking.<\\/p>\"}', '2024-05-12 09:12:27', '2024-05-12 09:12:27'), (169, 131, 1, '{\"topic\":\"Privacy Policies\",\"description\":\"Travel the World understands that privacy is important to you and wants your experience when dealing with us to be as enjoyable and safe as possible. This policy describes who Travel the World is and how it handles your personal information generally as well as when you use our website.<\\/span>\"}', '2024-05-12 09:12:47', '2024-05-12 09:12:47'), (170, 132, 1, '{\"topic\":\"Third-party rights\",\"description\":\"Save as expressly stated in these Terms we do not intend any part of these Terms to be enforceable by any person who is not a party to these Terms. No third-party\'s consent shall be required for the waiver, variation or termination of any part of these Terms. These Terms do not give rise to any rights under any applicable laws or regulations in relation to rights of third parties to enforce any part of these Terms.<\\/span>\"}', '2024-05-12 09:13:00', '2024-05-12 09:13:00'), (171, 133, 1, '{\"topic\":\"Travel registrations\",\"description\":\"

Seller of Travel: Expedia, Inc. is a registered seller of travel in each of the US states listed below:<\\/p>