-- MySQL dump 10.13  Distrib 8.4.4, for macos15 (arm64)
--
-- Host: 127.0.0.1    Database: flex_home
-- ------------------------------------------------------
-- Server version	8.4.4

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

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

DROP TABLE IF EXISTS `activations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `activations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned NOT NULL,
  `code` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `completed` tinyint(1) NOT NULL DEFAULT '0',
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `activations_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `activations` WRITE;
/*!40000 ALTER TABLE `activations` DISABLE KEYS */;
INSERT INTO `activations` VALUES (1,1,'BMFV062GBkBe3UKoKDGzbacT001V6hg6',1,'2025-09-11 19:33:35','2025-09-11 19:33:35','2025-09-11 19:33:35');
/*!40000 ALTER TABLE `activations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `admin_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_notifications` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `action_label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `read_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `permission` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_notifications`
--

LOCK TABLES `admin_notifications` WRITE;
/*!40000 ALTER TABLE `admin_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `admin_notifications` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `ads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ads` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `expired_at` datetime DEFAULT NULL,
  `location` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `key` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `clicked` bigint NOT NULL DEFAULT '0',
  `order` int DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `open_in_new_tab` tinyint(1) NOT NULL DEFAULT '1',
  `tablet_image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mobile_image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ads_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `google_adsense_slot_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ads_key_unique` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `ads` WRITE;
/*!40000 ALTER TABLE `ads` DISABLE KEYS */;
/*!40000 ALTER TABLE `ads` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `ads_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ads_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ads_id` bigint unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tablet_image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mobile_image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`ads_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ads_translations`
--

LOCK TABLES `ads_translations` WRITE;
/*!40000 ALTER TABLE `ads_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ads_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `announcements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcements` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `has_action` tinyint(1) NOT NULL DEFAULT '0',
  `action_label` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action_url` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action_open_new_tab` tinyint(1) NOT NULL DEFAULT '0',
  `dismissible` tinyint(1) NOT NULL DEFAULT '0',
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `announcements` WRITE;
/*!40000 ALTER TABLE `announcements` DISABLE KEYS */;
INSERT INTO `announcements` VALUES (1,'Announcement 1','Explore Our Exciting New Property Listings Now Available in Prime Locations!',0,NULL,NULL,0,1,'2025-09-12 02:33:50',NULL,1,'2025-09-11 19:33:50','2025-09-11 19:33:50'),(2,'Announcement 2','Join Us for Exclusive Open House Events This Weekend and Find Your Perfect Home!',0,NULL,NULL,0,1,'2025-09-12 02:33:50',NULL,1,'2025-09-11 19:33:50','2025-09-11 19:33:50'),(3,'Announcement 3','Take Advantage of Limited-Time Offers on Luxury Homes with Stunning Features!',0,NULL,NULL,0,1,'2025-09-12 02:33:50',NULL,1,'2025-09-11 19:33:50','2025-09-11 19:33:50'),(4,'Announcement 4','Discover Your Dream Home with Our Latest Listings and Personalized Services!',0,NULL,NULL,0,1,'2025-09-12 02:33:50',NULL,1,'2025-09-11 19:33:50','2025-09-11 19:33:50');
/*!40000 ALTER TABLE `announcements` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `announcements_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcements_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `announcements_id` bigint unsigned NOT NULL,
  `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `action_label` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`announcements_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `announcements_translations`
--

LOCK TABLES `announcements_translations` WRITE;
/*!40000 ALTER TABLE `announcements_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `announcements_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `audit_histories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `audit_histories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned NOT NULL,
  `user_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'Botble\\ACL\\Models\\User',
  `module` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `request` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `action` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `ip_address` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `actor_id` int unsigned NOT NULL,
  `actor_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'Botble\\ACL\\Models\\User',
  `reference_id` int unsigned NOT NULL,
  `reference_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `audit_histories_user_id_index` (`user_id`),
  KEY `audit_histories_module_index` (`module`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `audit_histories` WRITE;
/*!40000 ALTER TABLE `audit_histories` DISABLE KEYS */;
INSERT INTO `audit_histories` VALUES (2,1,'Botble\\ACL\\Models\\User','language','{\"lang_id\":\"0\",\"lang_name\":\"Ti\\u1ebfng Vi\\u1ec7t\",\"lang_locale\":\"vi\",\"lang_code\":\"vi\",\"lang_flag\":\"vn\",\"lang_order\":\"0\",\"lang_is_rtl\":\"0\"}','created','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','127.0.0.1',1,'Botble\\ACL\\Models\\User',2,'','info','2023-06-23 02:53:00','2023-06-23 02:53:00'),(3,1,'Botble\\ACL\\Models\\User','language','{\"_method\":\"DELETE\"}','deleted','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','127.0.0.1',1,'Botble\\ACL\\Models\\User',2,'','danger','2023-06-23 02:53:15','2023-06-23 02:53:15');
/*!40000 ALTER TABLE `audit_histories` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache` (
  `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `expiration` int NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `cache` WRITE;
/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `cache_locks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache_locks` (
  `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `owner` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `expiration` int NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_locks`
--

LOCK TABLES `cache_locks` WRITE;
/*!40000 ALTER TABLE `cache_locks` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_locks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `careers`
--

DROP TABLE IF EXISTS `careers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `careers` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `salary` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `careers`
--

LOCK TABLES `careers` WRITE;
/*!40000 ALTER TABLE `careers` DISABLE KEYS */;
INSERT INTO `careers` VALUES (1,'Sales Manager (Up to 2600$)','Ho Chi Minh, Viet Nam','1300$ - 2600$','<p><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>BENEFITS FOR YOU</strong></span></span></p>\r\n\r\n<p><span style=\"font-size:14px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">- Applicants receive a salary from 1300 USD to 2600 USD<br />\r\n- Fully enjoy the regimes according to Vietnam&#39;s Labor Law: Social insurance, health insurance, unemployment insurance<br />\r\n- Trained to improve expertise and capacity in suitable positions.</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>JOB DESCRIPTION</strong></span></span></p>\r\n\r\n<p><span style=\"font-size:14px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">- Coordinate with the Investment Department in organizing the collection, analysis, evaluation of market information and submitting proposals for planning the project&#39;s products and investment cooperation plans (if any);<br />\r\n- Acting as a focal point of exploitation and trading with customers, managing trading floors and distributors;<br />\r\n- Checking and approving the selection of sales units, management units for exploitation, operation and investment cooperation;<br />\r\n- Leading the negotiation and management of contracts with customers, sales units, management of exploitation, operation and investment cooperation;<br />\r\n- Prepare and submit a price approval for the sale, lease, and cooperation prices of all real estate projects;<br />\r\n- Develop sales plans, sales policies, support and promotions;<br />\r\n- Coordinate with member companies (Project Management Board) to collect and hand over product records (technical documents, red books, sales contracts ...) to hand over customers;<br />\r\n- Deploy customer support activities;</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>JOB REQUIREMENTS</strong></span></span></p>\r\n\r\n<p><span style=\"font-size:14px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">- Preferred age: 30-35<br />\r\n- University degree in Business Administration, Economics, or related industries.<br />\r\n- Over 03 years of experience in assuming the position of Real Estate Business City<br />\r\n- Priority with a certificate of real estate broker, certificate of real estate trading floor management<br />\r\n- Good planning, operating, and control skills<br />\r\n- Good communication, negotiation and problem-solving skills</span></span></p>','published','2019-11-30 19:43:10','2019-11-30 19:46:53',NULL),(3,'Senior Real Estate Consultant Demo','Ho Chi Minh, Viet Nam','From 1500$','<p><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>BENEFITS FOR YOU</strong></span></span></p>\r\n\r\n<p><span style=\"font-size:14px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">- Basic salary 500$&nbsp;/ month.<br />\r\n- Access to diverse sources of goods and opportunities from reputable investors.<br />\r\n- Retrospective salary policy up to 2400$-7000$&nbsp;/ year.<br />\r\n- Commission of 22-50% and a commission 1000$ / successful transaction in the month.<br />\r\n- Effective bonus 0.6-3% of annual revenue.<br />\r\n- A place to build your personal brand in a standard and different way.<br />\r\n- Attend seminars on real estate every 6 months.<br />\r\n- Participate in the course on negotiation skills (Win - Win), language of sales (Language of Sales), customer mind marketing (SOI), customer conversion from social networks (Go Social)<br />\r\n- Unlimited promotion opportunities.<br />\r\n- Working with professional space and modern open office design.<br />\r\n- Welfare policy, domestic and foreign tourism ...<br />\r\n- Decentralized, democratic, financial transparency, considering brokerage is a business partner.<br />\r\n- Environmentally friendly, is the place where brokers are connected with regular activities</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>JOB DESCRIPTION</strong></span></span></p>\r\n\r\n<p><span style=\"font-size:14px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">- Quantity: 30 employees<br />\r\n- Find and exploit potential customers for real estate products valued from 2000 USD / m2 in the high-end and luxury segment;<br />\r\n- Deploying activities to find customers, coordinate with teams to realize sales targets<br />\r\n- Advise customers on information related to products and projects of the Company;</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>JOB REQUIREMENTS</strong></span></span></p>\r\n\r\n<p><span style=\"font-size:14px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">- Graduating from college or higher<br />\r\n- Good appearance, male height from 1.68m, female from 1.58m. Age from 22-35 years old<br />\r\n- Priority to candidates who know foreign languages ​​and have 1 year or more experience in the field of real estate, banking and finance.<br />\r\n- Have financial goals, work and life.<br />\r\n- Desire to achieve big goals.<br />\r\n- Diligent, persistent, honest.</span></span></p>','published','2019-11-30 19:52:42','2021-01-03 17:26:17',NULL);
/*!40000 ALTER TABLE `careers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `careers_translations`
--

DROP TABLE IF EXISTS `careers_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `careers_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `careers_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `salary` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`careers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `careers_translations`
--

LOCK TABLES `careers_translations` WRITE;
/*!40000 ALTER TABLE `careers_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `careers_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent_id` int unsigned NOT NULL DEFAULT '0',
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `author_id` bigint unsigned DEFAULT NULL,
  `author_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `icon` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` int unsigned NOT NULL DEFAULT '0',
  `is_featured` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `categories_parent_id_status_created_at_index` (`parent_id`,`status`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES (1,'News',0,'Sit facere tempora temporibus consequatur dolor. Doloribus mollitia libero qui qui id et omnis. Voluptatum et non id voluptatem. Facere laudantium modi error temporibus dolorem velit.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(2,'House architecture',0,'Iure ullam dolore voluptates mollitia rerum. Voluptas dolores dicta possimus fuga aspernatur. Tempora iste laudantium dolores sunt itaque. Consequatur soluta officia repellendus non.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(3,'House design',0,'Esse ducimus ut nulla atque esse quam. Vitae provident sed nam nobis iusto modi. Quo architecto qui aliquid debitis perferendis natus repellendus sunt. Nam non provident laboriosam dolorum magni hic.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(4,'Building materials',0,'Illum voluptates dolorem et cumque perferendis ex deleniti. Quia voluptas et repellendus ab veritatis corrupti. Voluptas et tempora aut ut pariatur sed. In saepe dicta sunt non numquam.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2025-09-11 19:33:40','2025-09-11 19:33:40');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `categories_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `categories_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `categories_translations`
--

LOCK TABLES `categories_translations` WRITE;
/*!40000 ALTER TABLE `categories_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `categories_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `cities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cities` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `state_id` bigint unsigned DEFAULT NULL,
  `country_id` int unsigned NOT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `slug` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `record_id` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `zip_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `cities_slug_unique` (`slug`),
  KEY `idx_cities_name` (`name`),
  KEY `idx_cities_state_status` (`state_id`,`status`),
  KEY `idx_cities_status` (`status`),
  KEY `idx_cities_state_id` (`state_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `cities` WRITE;
/*!40000 ALTER TABLE `cities` DISABLE KEYS */;
INSERT INTO `cities` VALUES (1,'Alhambra',1,1,0,0,'cities/location-1.jpg','published','2019-11-18 08:18:42','2019-12-03 05:55:52','alhambra',NULL,NULL),(2,'Oakland',1,1,0,0,'cities/location-2.jpg','published','2019-11-18 08:23:14','2019-12-03 05:55:52','oakland',NULL,NULL),(3,'Bakersfield',1,1,0,0,'cities/location-3.jpg','published','2019-11-18 08:26:54','2019-12-03 05:55:52','bakersfield',NULL,NULL),(4,'Anaheim',1,1,0,0,'cities/location-4.jpg','published','2019-11-18 08:27:57','2019-12-03 05:55:52','anaheim',NULL,NULL),(5,'San Francisco',1,1,0,0,'cities/location-5.jpg','published','2019-11-18 08:29:18','2019-12-03 05:55:52','san-francisco',NULL,NULL);
/*!40000 ALTER TABLE `cities` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `cities_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cities_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `cities_id` int NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`cities_id`),
  KEY `idx_cities_trans_city_lang` (`cities_id`,`lang_code`),
  KEY `idx_cities_trans_name` (`name`),
  KEY `idx_cities_trans_cities_id` (`cities_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cities_translations`
--

LOCK TABLES `cities_translations` WRITE;
/*!40000 ALTER TABLE `cities_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `cities_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `contact_custom_field_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_custom_field_options` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `custom_field_id` bigint unsigned NOT NULL,
  `label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `order` int NOT NULL DEFAULT '999',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_custom_field_options`
--

LOCK TABLES `contact_custom_field_options` WRITE;
/*!40000 ALTER TABLE `contact_custom_field_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_custom_field_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contact_custom_field_options_translations`
--

DROP TABLE IF EXISTS `contact_custom_field_options_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_custom_field_options_translations` (
  `contact_custom_field_options_id` bigint unsigned NOT NULL,
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`contact_custom_field_options_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_custom_field_options_translations`
--

LOCK TABLES `contact_custom_field_options_translations` WRITE;
/*!40000 ALTER TABLE `contact_custom_field_options_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_custom_field_options_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `contact_custom_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_custom_fields` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `required` tinyint(1) NOT NULL DEFAULT '0',
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `placeholder` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` int NOT NULL DEFAULT '999',
  `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_custom_fields`
--

LOCK TABLES `contact_custom_fields` WRITE;
/*!40000 ALTER TABLE `contact_custom_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_custom_fields` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `contact_custom_fields_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_custom_fields_translations` (
  `contact_custom_fields_id` bigint unsigned NOT NULL,
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `placeholder` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`contact_custom_fields_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_custom_fields_translations`
--

LOCK TABLES `contact_custom_fields_translations` WRITE;
/*!40000 ALTER TABLE `contact_custom_fields_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_custom_fields_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `contact_replies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_replies` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `contact_id` int NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_replies`
--

LOCK TABLES `contact_replies` WRITE;
/*!40000 ALTER TABLE `contact_replies` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_replies` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contacts` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `custom_fields` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contacts`
--

LOCK TABLES `contacts` WRITE;
/*!40000 ALTER TABLE `contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `nationality` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `code` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_countries_name` (`name`),
  KEY `idx_countries_status` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `countries` WRITE;
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
INSERT INTO `countries` VALUES (1,'United States','United States of America',0,NULL,0,'published','2019-11-18 08:17:29','2019-11-18 08:17:29',NULL);
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `countries_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `countries_id` int NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `nationality` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`countries_id`),
  KEY `idx_countries_trans_country_lang` (`countries_id`,`lang_code`),
  KEY `idx_countries_trans_name` (`name`),
  KEY `idx_countries_trans_countries_id` (`countries_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `countries_translations`
--

LOCK TABLES `countries_translations` WRITE;
/*!40000 ALTER TABLE `countries_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `countries_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `dashboard_widget_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dashboard_widget_settings` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `settings` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `user_id` int unsigned NOT NULL,
  `widget_id` int unsigned NOT NULL,
  `order` tinyint unsigned NOT NULL DEFAULT '0',
  `status` tinyint unsigned NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `dashboard_widget_settings_user_id_index` (`user_id`),
  KEY `dashboard_widget_settings_widget_id_index` (`widget_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dashboard_widget_settings`
--

LOCK TABLES `dashboard_widget_settings` WRITE;
/*!40000 ALTER TABLE `dashboard_widget_settings` DISABLE KEYS */;
INSERT INTO `dashboard_widget_settings` VALUES (1,NULL,1,7,0,1,'2019-11-26 02:40:58','2019-11-26 02:40:58'),(2,NULL,1,5,1,1,'2019-11-26 02:40:58','2019-11-26 02:40:58'),(3,NULL,1,6,2,1,'2019-11-26 02:40:58','2019-11-26 02:40:58'),(4,NULL,1,8,3,1,'2019-11-26 02:40:58','2019-11-26 02:40:58'),(5,NULL,1,9,4,1,'2019-11-26 02:40:58','2019-11-26 02:40:58'),(6,NULL,1,10,5,1,'2019-11-26 02:40:58','2019-11-26 02:40:58');
/*!40000 ALTER TABLE `dashboard_widget_settings` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `dashboard_widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dashboard_widgets` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `dashboard_widgets` WRITE;
/*!40000 ALTER TABLE `dashboard_widgets` DISABLE KEYS */;
INSERT INTO `dashboard_widgets` VALUES (1,'widget_total_pages','2019-11-15 04:57:40','2019-11-15 04:57:40'),(2,'widget_total_users','2019-11-15 04:57:40','2019-11-15 04:57:40'),(3,'widget_total_plugins','2019-11-15 04:57:40','2019-11-15 04:57:40'),(4,'widget_total_themes','2019-11-15 04:57:40','2019-11-15 04:57:40'),(5,'widget_audit_logs','2019-11-15 18:54:50','2019-11-15 18:54:50'),(6,'widget_posts_recent','2019-11-15 18:54:50','2019-11-15 18:54:50'),(7,'widget_analytics_general','2019-11-15 18:54:50','2019-11-15 18:54:50'),(8,'widget_analytics_page','2019-11-15 18:54:50','2019-11-15 18:54:50'),(9,'widget_analytics_browser','2019-11-15 18:54:50','2019-11-15 18:54:50'),(10,'widget_analytics_referrer','2019-11-15 18:54:50','2019-11-15 18:54:50'),(11,'widget_total_1','2022-11-05 23:58:22','2022-11-05 23:58:22'),(12,'widget_total_2','2022-11-05 23:58:22','2022-11-05 23:58:22'),(13,'widget_total_3','2022-11-05 23:58:22','2022-11-05 23:58:22'),(14,'widget_total_4','2022-11-05 23:58:22','2022-11-05 23:58:22');
/*!40000 ALTER TABLE `dashboard_widgets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `device_tokens`
--

DROP TABLE IF EXISTS `device_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `device_tokens` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `platform` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `app_version` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `device_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `last_used_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `device_tokens_token_unique` (`token`),
  KEY `device_tokens_user_type_user_id_index` (`user_type`,`user_id`),
  KEY `device_tokens_platform_is_active_index` (`platform`,`is_active`),
  KEY `device_tokens_is_active_index` (`is_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `device_tokens`
--

LOCK TABLES `device_tokens` WRITE;
/*!40000 ALTER TABLE `device_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `device_tokens` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `failed_jobs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `connection` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `failed_jobs`
--

LOCK TABLES `failed_jobs` WRITE;
/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `faq_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faq_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `faq_categories` WRITE;
/*!40000 ALTER TABLE `faq_categories` DISABLE KEYS */;
INSERT INTO `faq_categories` VALUES (1,'Buying',0,'published','2025-09-11 19:33:50','2025-09-11 19:33:50',NULL),(2,'Selling',1,'published','2025-09-11 19:33:50','2025-09-11 19:33:50',NULL),(3,'Renting',2,'published','2025-09-11 19:33:50','2025-09-11 19:33:50',NULL),(4,'Financing',3,'published','2025-09-11 19:33:50','2025-09-11 19:33:50',NULL);
/*!40000 ALTER TABLE `faq_categories` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `faq_categories_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faq_categories_translations` (
  `lang_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `faq_categories_id` bigint unsigned NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`faq_categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `faq_categories_translations`
--

LOCK TABLES `faq_categories_translations` WRITE;
/*!40000 ALTER TABLE `faq_categories_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `faq_categories_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `faqs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faqs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `question` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `answer` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `category_id` bigint unsigned NOT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `faqs` WRITE;
/*!40000 ALTER TABLE `faqs` DISABLE KEYS */;
INSERT INTO `faqs` VALUES (1,'What steps are involved in buying a home?','The home buying process involves several steps including getting pre-approved for a mortgage, finding a real estate agent, searching for homes, making an offer, getting a home inspection, and closing the deal.',1,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(2,'How do I determine my budget for buying a home?','To determine your budget, consider your income, debts, and savings. It is also important to get pre-approved for a mortgage to understand how much you can borrow.',1,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(3,'How can I increase the value of my home before selling?','You can increase your home\'s value by making necessary repairs, updating outdated features, improving curb appeal, and ensuring the home is clean and well-maintained.',1,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(4,'What should I look for in a rental property?','When looking for a rental property, consider factors such as location, rent price, amenities, lease terms, and the condition of the property. It\'s also important to understand your rights as a tenant.',1,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(5,'What are the benefits of renting versus buying?','Renting offers flexibility and fewer maintenance responsibilities, while buying can provide long-term financial benefits and the freedom to customize your home. The decision depends on your financial situation, lifestyle, and future plans.',1,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(6,'What types of financing options are available for homebuyers?','Common financing options include fixed-rate mortgages, adjustable-rate mortgages, FHA loans, VA loans, and USDA loans. Each has its own requirements and benefits.',1,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(7,'How do I determine my budget for buying a home?','To determine your budget, consider your income, debts, and savings. It is also important to get pre-approved for a mortgage to understand how much you can borrow.',2,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(8,'How can I increase the value of my home before selling?','You can increase your home\'s value by making necessary repairs, updating outdated features, improving curb appeal, and ensuring the home is clean and well-maintained.',2,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(9,'What should I look for in a rental property?','When looking for a rental property, consider factors such as location, rent price, amenities, lease terms, and the condition of the property. It\'s also important to understand your rights as a tenant.',2,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(10,'What are the benefits of renting versus buying?','Renting offers flexibility and fewer maintenance responsibilities, while buying can provide long-term financial benefits and the freedom to customize your home. The decision depends on your financial situation, lifestyle, and future plans.',2,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(11,'What types of financing options are available for homebuyers?','Common financing options include fixed-rate mortgages, adjustable-rate mortgages, FHA loans, VA loans, and USDA loans. Each has its own requirements and benefits.',2,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(12,'What steps are involved in buying a home?','The home buying process involves several steps including getting pre-approved for a mortgage, finding a real estate agent, searching for homes, making an offer, getting a home inspection, and closing the deal.',3,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(13,'How do I determine my budget for buying a home?','To determine your budget, consider your income, debts, and savings. It is also important to get pre-approved for a mortgage to understand how much you can borrow.',3,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(14,'What is the process of selling a home?','Selling a home involves preparing your home for sale, setting a competitive price, marketing the property, showing the home to potential buyers, negotiating offers, and closing the sale.',3,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(15,'How can I increase the value of my home before selling?','You can increase your home\'s value by making necessary repairs, updating outdated features, improving curb appeal, and ensuring the home is clean and well-maintained.',3,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(16,'What are the benefits of renting versus buying?','Renting offers flexibility and fewer maintenance responsibilities, while buying can provide long-term financial benefits and the freedom to customize your home. The decision depends on your financial situation, lifestyle, and future plans.',3,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(17,'What types of financing options are available for homebuyers?','Common financing options include fixed-rate mortgages, adjustable-rate mortgages, FHA loans, VA loans, and USDA loans. Each has its own requirements and benefits.',3,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(18,'How do I improve my credit score for a mortgage?','To improve your credit score, pay your bills on time, reduce your debt, avoid opening new credit accounts, and check your credit report for errors.',3,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(19,'What steps are involved in buying a home?','The home buying process involves several steps including getting pre-approved for a mortgage, finding a real estate agent, searching for homes, making an offer, getting a home inspection, and closing the deal.',4,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(20,'What is the process of selling a home?','Selling a home involves preparing your home for sale, setting a competitive price, marketing the property, showing the home to potential buyers, negotiating offers, and closing the sale.',4,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(21,'How can I increase the value of my home before selling?','You can increase your home\'s value by making necessary repairs, updating outdated features, improving curb appeal, and ensuring the home is clean and well-maintained.',4,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(22,'What should I look for in a rental property?','When looking for a rental property, consider factors such as location, rent price, amenities, lease terms, and the condition of the property. It\'s also important to understand your rights as a tenant.',4,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(23,'What are the benefits of renting versus buying?','Renting offers flexibility and fewer maintenance responsibilities, while buying can provide long-term financial benefits and the freedom to customize your home. The decision depends on your financial situation, lifestyle, and future plans.',4,'published','2025-09-11 19:33:50','2025-09-11 19:33:50'),(24,'What types of financing options are available for homebuyers?','Common financing options include fixed-rate mortgages, adjustable-rate mortgages, FHA loans, VA loans, and USDA loans. Each has its own requirements and benefits.',4,'published','2025-09-11 19:33:50','2025-09-11 19:33:50');
/*!40000 ALTER TABLE `faqs` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `faqs_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faqs_translations` (
  `lang_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `faqs_id` bigint unsigned NOT NULL,
  `question` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `answer` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`faqs_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `faqs_translations`
--

LOCK TABLES `faqs_translations` WRITE;
/*!40000 ALTER TABLE `faqs_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `faqs_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jobs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `queue` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `attempts` tinyint unsigned NOT NULL,
  `reserved_at` int unsigned DEFAULT NULL,
  `available_at` int unsigned NOT NULL,
  `created_at` int unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `jobs_queue_index` (`queue`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jobs`
--

LOCK TABLES `jobs` WRITE;
/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `jobs` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `language_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `language_meta` (
  `lang_meta_id` int unsigned NOT NULL AUTO_INCREMENT,
  `reference_id` int unsigned NOT NULL,
  `lang_meta_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reference_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `lang_meta_origin` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`lang_meta_id`),
  KEY `language_meta_lang_meta_content_id_index` (`reference_id`),
  KEY `meta_code_index` (`lang_meta_code`),
  KEY `meta_origin_index` (`lang_meta_origin`),
  KEY `meta_reference_type_index` (`reference_type`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `language_meta` WRITE;
/*!40000 ALTER TABLE `language_meta` DISABLE KEYS */;
INSERT INTO `language_meta` VALUES (1,1,'en_US','Botble\\Menu\\Models\\MenuLocation','970da8d1d1373bbeccedfe761590bc20'),(2,1,'en_US','Botble\\Menu\\Models\\Menu','73c40f1180d1bfe2976e6d7d6d3ce3f5'),(3,2,'en_US','Botble\\Menu\\Models\\Menu','1ddaa2f2ef9f9ead3ab22c33a46429e8'),(4,3,'en_US','Botble\\Menu\\Models\\Menu','b8ede5f0e3b02351b0a7893d221361c5'),(5,4,'en_US','Botble\\Menu\\Models\\Menu','52c5b2756144f19850dff9d2e00b2558');
/*!40000 ALTER TABLE `language_meta` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `languages` (
  `lang_id` int unsigned NOT NULL AUTO_INCREMENT,
  `lang_name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `lang_locale` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `lang_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `lang_flag` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lang_is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `lang_order` int NOT NULL DEFAULT '0',
  `lang_is_rtl` tinyint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`lang_id`),
  KEY `lang_locale_index` (`lang_locale`),
  KEY `lang_code_index` (`lang_code`),
  KEY `lang_is_default_index` (`lang_is_default`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `languages` WRITE;
/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
INSERT INTO `languages` VALUES (1,'English','en','en_US','us',1,0,0);
/*!40000 ALTER TABLE `languages` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `media_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_files` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `alt` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `folder_id` int unsigned NOT NULL DEFAULT '0',
  `mime_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `size` int NOT NULL,
  `url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `options` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `visibility` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'public',
  PRIMARY KEY (`id`),
  KEY `media_files_user_id_index` (`user_id`),
  KEY `media_files_folder_id_user_id_created_at_index` (`folder_id`,`user_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=63911 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `media_files` WRITE;
/*!40000 ALTER TABLE `media_files` DISABLE KEYS */;
INSERT INTO `media_files` VALUES (22702,0,'avatar','avatar',1129,'image/jpeg',151486,'users/avatar.jpg','[]','2023-10-25 00:12:49','2023-10-25 00:12:49',NULL,'public'),(63719,0,'banner','banner',1,'image/jpeg',17700,'banner/banner.jpg','[]','2025-09-11 19:33:27','2025-09-11 19:33:27',NULL,'public'),(63720,0,'location-1','location-1',2864,'image/jpeg',9803,'cities/location-1.jpg','[]','2025-09-11 19:33:27','2025-09-11 19:33:27',NULL,'public'),(63721,0,'location-2','location-2',2864,'image/jpeg',9803,'cities/location-2.jpg','[]','2025-09-11 19:33:27','2025-09-11 19:33:27',NULL,'public'),(63722,0,'location-3','location-3',2864,'image/jpeg',9803,'cities/location-3.jpg','[]','2025-09-11 19:33:27','2025-09-11 19:33:27',NULL,'public'),(63723,0,'location-4','location-4',2864,'image/jpeg',9803,'cities/location-4.jpg','[]','2025-09-11 19:33:27','2025-09-11 19:33:27',NULL,'public'),(63724,0,'location-5','location-5',2864,'image/jpeg',9803,'cities/location-5.jpg','[]','2025-09-11 19:33:28','2025-09-11 19:33:28',NULL,'public'),(63725,0,'1','1',2865,'image/jpeg',9803,'locations/1.jpg','[]','2025-09-11 19:33:28','2025-09-11 19:33:28',NULL,'public'),(63726,0,'2','2',2865,'image/jpeg',9803,'locations/2.jpg','[]','2025-09-11 19:33:28','2025-09-11 19:33:28',NULL,'public'),(63727,0,'3','3',2865,'image/jpeg',9803,'locations/3.jpg','[]','2025-09-11 19:33:28','2025-09-11 19:33:28',NULL,'public'),(63728,0,'4','4',2865,'image/jpeg',9803,'locations/4.jpg','[]','2025-09-11 19:33:28','2025-09-11 19:33:28',NULL,'public'),(63729,0,'5','5',2865,'image/jpeg',9803,'locations/5.jpg','[]','2025-09-11 19:33:28','2025-09-11 19:33:28',NULL,'public'),(63730,0,'favicon','favicon',2866,'image/png',2392,'logo/favicon.png','[]','2025-09-11 19:33:28','2025-09-11 19:33:28',NULL,'public'),(63731,0,'logo-white','logo-white',2866,'image/png',20236,'logo/logo-white.png','[]','2025-09-11 19:33:28','2025-09-11 19:33:28',NULL,'public'),(63732,0,'logo','logo',2866,'image/png',25650,'logo/logo.png','[]','2025-09-11 19:33:28','2025-09-11 19:33:28',NULL,'public'),(63733,0,'1','1',2867,'image/jpeg',9803,'accounts/1.jpg','[]','2025-09-11 19:33:29','2025-09-11 19:33:29',NULL,'public'),(63734,0,'10','10',2867,'image/jpeg',9803,'accounts/10.jpg','[]','2025-09-11 19:33:29','2025-09-11 19:33:29',NULL,'public'),(63735,0,'2','2',2867,'image/jpeg',9803,'accounts/2.jpg','[]','2025-09-11 19:33:29','2025-09-11 19:33:29',NULL,'public'),(63736,0,'3','3',2867,'image/jpeg',9803,'accounts/3.jpg','[]','2025-09-11 19:33:29','2025-09-11 19:33:29',NULL,'public'),(63737,0,'4','4',2867,'image/jpeg',9803,'accounts/4.jpg','[]','2025-09-11 19:33:29','2025-09-11 19:33:29',NULL,'public'),(63738,0,'5','5',2867,'image/jpeg',9803,'accounts/5.jpg','[]','2025-09-11 19:33:30','2025-09-11 19:33:30',NULL,'public'),(63739,0,'6','6',2867,'image/jpeg',9803,'accounts/6.jpg','[]','2025-09-11 19:33:30','2025-09-11 19:33:30',NULL,'public'),(63740,0,'7','7',2867,'image/jpeg',9803,'accounts/7.jpg','[]','2025-09-11 19:33:30','2025-09-11 19:33:30',NULL,'public'),(63741,0,'8','8',2867,'image/jpeg',9803,'accounts/8.jpg','[]','2025-09-11 19:33:30','2025-09-11 19:33:30',NULL,'public'),(63742,0,'9','9',2867,'image/jpeg',9803,'accounts/9.jpg','[]','2025-09-11 19:33:30','2025-09-11 19:33:30',NULL,'public'),(63743,0,'asset-3-at-3x','asset-3-at-3x',2868,'image/png',76803,'general/asset-3-at-3x.png','[]','2025-09-11 19:33:35','2025-09-11 19:33:35',NULL,'public'),(63744,0,'asset-4-at-3x','asset-4-at-3x',2868,'image/png',85535,'general/asset-4-at-3x.png','[]','2025-09-11 19:33:35','2025-09-11 19:33:35',NULL,'public'),(63745,0,'breadcrumb-background','breadcrumb-background',2868,'image/jpeg',505901,'general/breadcrumb-background.jpg','[]','2025-09-11 19:33:36','2025-09-11 19:33:36',NULL,'public'),(63746,0,'copyright','copyright',2868,'image/jpeg',48845,'general/copyright.jpg','[]','2025-09-11 19:33:36','2025-09-11 19:33:36',NULL,'public'),(63747,0,'home-banner','home-banner',2868,'image/jpeg',631290,'general/home-banner.jpg','[]','2025-09-11 19:33:36','2025-09-11 19:33:36',NULL,'public'),(63748,0,'newsletter-image','newsletter-image',2868,'image/jpeg',101293,'general/newsletter-image.jpg','[]','2025-09-11 19:33:36','2025-09-11 19:33:36',NULL,'public'),(63749,0,'termsconditions-pagedesktop','termsconditions-pagedesktop',2868,'image/jpeg',78173,'general/termsconditions-pagedesktop.jpg','[]','2025-09-11 19:33:36','2025-09-11 19:33:36',NULL,'public'),(63750,0,'video-vi-pham-ban-quyen-bi-youtube-thang-tay-trung-tri','video-vi-pham-ban-quyen-bi-youtube-thang-tay-trung-tri',2868,'image/jpeg',18757,'general/video-vi-pham-ban-quyen-bi-youtube-thang-tay-trung-tri.jpg','[]','2025-09-11 19:33:37','2025-09-11 19:33:37',NULL,'public'),(63751,0,'vietnam-office-4','vietnam-office-4',2868,'image/jpeg',79608,'general/vietnam-office-4.jpg','[]','2025-09-11 19:33:37','2025-09-11 19:33:37',NULL,'public'),(63752,0,'1','1',2869,'image/jpeg',66981,'news/1.jpg','[]','2025-09-11 19:33:37','2025-09-11 19:33:37',NULL,'public'),(63753,0,'10','10',2869,'image/jpeg',38901,'news/10.jpg','[]','2025-09-11 19:33:37','2025-09-11 19:33:37',NULL,'public'),(63754,0,'11','11',2869,'image/jpeg',51899,'news/11.jpg','[]','2025-09-11 19:33:37','2025-09-11 19:33:37',NULL,'public'),(63755,0,'12','12',2869,'image/jpeg',55570,'news/12.jpg','[]','2025-09-11 19:33:37','2025-09-11 19:33:37',NULL,'public'),(63756,0,'13','13',2869,'image/jpeg',82997,'news/13.jpg','[]','2025-09-11 19:33:37','2025-09-11 19:33:37',NULL,'public'),(63757,0,'14','14',2869,'image/jpeg',66981,'news/14.jpg','[]','2025-09-11 19:33:37','2025-09-11 19:33:37',NULL,'public'),(63758,0,'15','15',2869,'image/jpeg',111464,'news/15.jpg','[]','2025-09-11 19:33:37','2025-09-11 19:33:37',NULL,'public'),(63759,0,'16','16',2869,'image/jpeg',379750,'news/16.jpg','[]','2025-09-11 19:33:37','2025-09-11 19:33:37',NULL,'public'),(63760,0,'2','2',2869,'image/jpeg',51879,'news/2.jpg','[]','2025-09-11 19:33:38','2025-09-11 19:33:38',NULL,'public'),(63761,0,'3','3',2869,'image/jpeg',127122,'news/3.jpg','[]','2025-09-11 19:33:38','2025-09-11 19:33:38',NULL,'public'),(63762,0,'4','4',2869,'image/jpeg',173868,'news/4.jpg','[]','2025-09-11 19:33:38','2025-09-11 19:33:38',NULL,'public'),(63763,0,'5','5',2869,'image/jpeg',38901,'news/5.jpg','[]','2025-09-11 19:33:38','2025-09-11 19:33:38',NULL,'public'),(63764,0,'6','6',2869,'image/jpeg',224569,'news/6.jpg','[]','2025-09-11 19:33:38','2025-09-11 19:33:38',NULL,'public'),(63765,0,'7','7',2869,'image/jpeg',177684,'news/7.jpg','[]','2025-09-11 19:33:38','2025-09-11 19:33:38',NULL,'public'),(63766,0,'8','8',2869,'image/jpeg',111710,'news/8.jpg','[]','2025-09-11 19:33:38','2025-09-11 19:33:38',NULL,'public'),(63767,0,'9','9',2869,'image/jpeg',143678,'news/9.jpg','[]','2025-09-11 19:33:38','2025-09-11 19:33:38',NULL,'public'),(63768,0,'1','1',2870,'image/jpeg',66981,'posts/1.jpg','[]','2025-09-11 19:33:38','2025-09-11 19:33:38',NULL,'public'),(63769,0,'10','10',2870,'image/jpeg',38901,'posts/10.jpg','[]','2025-09-11 19:33:38','2025-09-11 19:33:38',NULL,'public'),(63770,0,'11','11',2870,'image/jpeg',51899,'posts/11.jpg','[]','2025-09-11 19:33:39','2025-09-11 19:33:39',NULL,'public'),(63771,0,'12','12',2870,'image/jpeg',55570,'posts/12.jpg','[]','2025-09-11 19:33:39','2025-09-11 19:33:39',NULL,'public'),(63772,0,'13','13',2870,'image/jpeg',82997,'posts/13.jpg','[]','2025-09-11 19:33:39','2025-09-11 19:33:39',NULL,'public'),(63773,0,'14','14',2870,'image/jpeg',66981,'posts/14.jpg','[]','2025-09-11 19:33:39','2025-09-11 19:33:39',NULL,'public'),(63774,0,'15','15',2870,'image/jpeg',111464,'posts/15.jpg','[]','2025-09-11 19:33:39','2025-09-11 19:33:39',NULL,'public'),(63775,0,'16','16',2870,'image/jpeg',379750,'posts/16.jpg','[]','2025-09-11 19:33:39','2025-09-11 19:33:39',NULL,'public'),(63776,0,'2','2',2870,'image/jpeg',51879,'posts/2.jpg','[]','2025-09-11 19:33:39','2025-09-11 19:33:39',NULL,'public'),(63777,0,'3','3',2870,'image/jpeg',127122,'posts/3.jpg','[]','2025-09-11 19:33:39','2025-09-11 19:33:39',NULL,'public'),(63778,0,'4','4',2870,'image/jpeg',173868,'posts/4.jpg','[]','2025-09-11 19:33:39','2025-09-11 19:33:39',NULL,'public'),(63779,0,'6','6',2870,'image/jpeg',224569,'posts/6.jpg','[]','2025-09-11 19:33:39','2025-09-11 19:33:39',NULL,'public'),(63780,0,'7','7',2870,'image/jpeg',177684,'posts/7.jpg','[]','2025-09-11 19:33:40','2025-09-11 19:33:40',NULL,'public'),(63781,0,'8','8',2870,'image/jpeg',111710,'posts/8.jpg','[]','2025-09-11 19:33:40','2025-09-11 19:33:40',NULL,'public'),(63782,0,'9','9',2870,'image/jpeg',143678,'posts/9.jpg','[]','2025-09-11 19:33:40','2025-09-11 19:33:40',NULL,'public'),(63783,0,'1','1',2871,'image/jpeg',9803,'projects/1.jpg','[]','2025-09-11 19:33:40','2025-09-11 19:33:40',NULL,'public'),(63784,0,'11','11',2871,'image/jpeg',9803,'projects/11.jpg','[]','2025-09-11 19:33:40','2025-09-11 19:33:40',NULL,'public'),(63785,0,'12','12',2871,'image/jpeg',9803,'projects/12.jpg','[]','2025-09-11 19:33:40','2025-09-11 19:33:40',NULL,'public'),(63786,0,'13','13',2871,'image/jpeg',9803,'projects/13.jpg','[]','2025-09-11 19:33:40','2025-09-11 19:33:40',NULL,'public'),(63787,0,'14','14',2871,'image/jpeg',9803,'projects/14.jpg','[]','2025-09-11 19:33:41','2025-09-11 19:33:41',NULL,'public'),(63788,0,'2','2',2871,'image/jpeg',9803,'projects/2.jpg','[]','2025-09-11 19:33:41','2025-09-11 19:33:41',NULL,'public'),(63789,0,'21','21',2871,'image/jpeg',9803,'projects/21.jpg','[]','2025-09-11 19:33:41','2025-09-11 19:33:41',NULL,'public'),(63790,0,'22','22',2871,'image/jpeg',9803,'projects/22.jpg','[]','2025-09-11 19:33:41','2025-09-11 19:33:41',NULL,'public'),(63791,0,'23','23',2871,'image/jpeg',9803,'projects/23.jpg','[]','2025-09-11 19:33:41','2025-09-11 19:33:41',NULL,'public'),(63792,0,'24','24',2871,'image/jpeg',9803,'projects/24.jpg','[]','2025-09-11 19:33:41','2025-09-11 19:33:41',NULL,'public'),(63793,0,'25','25',2871,'image/jpeg',9803,'projects/25.jpg','[]','2025-09-11 19:33:41','2025-09-11 19:33:41',NULL,'public'),(63794,0,'26','26',2871,'image/jpeg',9803,'projects/26.jpg','[]','2025-09-11 19:33:41','2025-09-11 19:33:41',NULL,'public'),(63795,0,'3','3',2871,'image/jpeg',9803,'projects/3.jpg','[]','2025-09-11 19:33:41','2025-09-11 19:33:41',NULL,'public'),(63796,0,'5','5',2871,'image/jpeg',9803,'projects/5.jpg','[]','2025-09-11 19:33:41','2025-09-11 19:33:41',NULL,'public'),(63797,0,'1-1','1-1',2872,'image/jpeg',9803,'properties/1-1.jpg','[]','2025-09-11 19:33:41','2025-09-11 19:33:41',NULL,'public'),(63798,0,'1-2','1-2',2872,'image/jpeg',9803,'properties/1-2.jpg','[]','2025-09-11 19:33:41','2025-09-11 19:33:41',NULL,'public'),(63799,0,'1-3','1-3',2872,'image/jpeg',9803,'properties/1-3.jpg','[]','2025-09-11 19:33:41','2025-09-11 19:33:41',NULL,'public'),(63800,0,'1','1',2872,'image/jpeg',9803,'properties/1.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63801,0,'10-1','10-1',2872,'image/jpeg',9803,'properties/10-1.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63802,0,'10','10',2872,'image/jpeg',9803,'properties/10.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63803,0,'11-1','11-1',2872,'image/jpeg',9803,'properties/11-1.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63804,0,'11','11',2872,'image/jpeg',9803,'properties/11.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63805,0,'12','12',2872,'image/jpeg',9803,'properties/12.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63806,0,'13','13',2872,'image/jpeg',9803,'properties/13.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63807,0,'14','14',2872,'image/jpeg',9803,'properties/14.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63808,0,'15','15',2872,'image/jpeg',9803,'properties/15.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63809,0,'2-1','2-1',2872,'image/jpeg',9803,'properties/2-1.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63810,0,'2-2','2-2',2872,'image/jpeg',9803,'properties/2-2.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63811,0,'2-3','2-3',2872,'image/jpeg',9803,'properties/2-3.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63812,0,'2','2',2872,'image/jpeg',9803,'properties/2.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63813,0,'21','21',2872,'image/jpeg',9803,'properties/21.jpg','[]','2025-09-11 19:33:42','2025-09-11 19:33:42',NULL,'public'),(63814,0,'22-1','22-1',2872,'image/jpeg',9803,'properties/22-1.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63815,0,'22','22',2872,'image/jpeg',9803,'properties/22.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63816,0,'23','23',2872,'image/jpeg',9803,'properties/23.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63817,0,'24-1','24-1',2872,'image/jpeg',9803,'properties/24-1.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63818,0,'24','24',2872,'image/jpeg',9803,'properties/24.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63819,0,'3-1','3-1',2872,'image/jpeg',9803,'properties/3-1.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63820,0,'3-2','3-2',2872,'image/jpeg',9803,'properties/3-2.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63821,0,'3-3','3-3',2872,'image/jpeg',9803,'properties/3-3.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63822,0,'3','3',2872,'image/jpeg',9803,'properties/3.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63823,0,'31','31',2872,'image/jpeg',9803,'properties/31.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63824,0,'311','311',2872,'image/jpeg',9803,'properties/311.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63825,0,'32','32',2872,'image/jpeg',9803,'properties/32.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63826,0,'32223-43914-378','32223-43914-378',2872,'image/jpeg',9803,'properties/32223-43914-378.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63827,0,'33','33',2872,'image/jpeg',9803,'properties/33.jpg','[]','2025-09-11 19:33:43','2025-09-11 19:33:43',NULL,'public'),(63828,0,'34','34',2872,'image/jpeg',9803,'properties/34.jpg','[]','2025-09-11 19:33:44','2025-09-11 19:33:44',NULL,'public'),(63829,0,'35','35',2872,'image/jpeg',9803,'properties/35.jpg','[]','2025-09-11 19:33:44','2025-09-11 19:33:44',NULL,'public'),(63830,0,'4-1','4-1',2872,'image/jpeg',9803,'properties/4-1.jpg','[]','2025-09-11 19:33:44','2025-09-11 19:33:44',NULL,'public'),(63831,0,'4-2','4-2',2872,'image/jpeg',9803,'properties/4-2.jpg','[]','2025-09-11 19:33:44','2025-09-11 19:33:44',NULL,'public'),(63832,0,'4','4',2872,'image/jpeg',9803,'properties/4.jpg','[]','2025-09-11 19:33:44','2025-09-11 19:33:44',NULL,'public'),(63833,0,'411','411',2872,'image/jpeg',9803,'properties/411.jpg','[]','2025-09-11 19:33:44','2025-09-11 19:33:44',NULL,'public'),(63834,0,'42','42',2872,'image/jpeg',9803,'properties/42.jpg','[]','2025-09-11 19:33:44','2025-09-11 19:33:44',NULL,'public'),(63835,0,'421834935dbc9ef3aaa42','421834935dbc9ef3aaa42',2872,'image/jpeg',9803,'properties/421834935dbc9ef3aaa42.jpg','[]','2025-09-11 19:33:44','2025-09-11 19:33:44',NULL,'public'),(63836,0,'43','43',2872,'image/jpeg',9803,'properties/43.jpg','[]','2025-09-11 19:33:44','2025-09-11 19:33:44',NULL,'public'),(63837,0,'44','44',2872,'image/jpeg',9803,'properties/44.jpg','[]','2025-09-11 19:33:44','2025-09-11 19:33:44',NULL,'public'),(63838,0,'5-1','5-1',2872,'image/jpeg',9803,'properties/5-1.jpg','[]','2025-09-11 19:33:44','2025-09-11 19:33:44',NULL,'public'),(63839,0,'5-2','5-2',2872,'image/jpeg',9803,'properties/5-2.jpg','[]','2025-09-11 19:33:44','2025-09-11 19:33:44',NULL,'public'),(63840,0,'5','5',2872,'image/jpeg',9803,'properties/5.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63841,0,'6-1','6-1',2872,'image/jpeg',9803,'properties/6-1.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63842,0,'6-2','6-2',2872,'image/jpeg',9803,'properties/6-2.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63843,0,'6','6',2872,'image/jpeg',9803,'properties/6.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63844,0,'7-1','7-1',2872,'image/jpeg',9803,'properties/7-1.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63845,0,'7-2','7-2',2872,'image/jpeg',9803,'properties/7-2.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63846,0,'7','7',2872,'image/jpeg',9803,'properties/7.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63847,0,'71','71',2872,'image/jpeg',9803,'properties/71.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63848,0,'72','72',2872,'image/jpeg',9803,'properties/72.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63849,0,'73','73',2872,'image/jpeg',9803,'properties/73.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63850,0,'74','74',2872,'image/jpeg',9803,'properties/74.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63851,0,'75','75',2872,'image/jpeg',9803,'properties/75.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63852,0,'78','78',2872,'image/jpeg',9803,'properties/78.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63853,0,'79','79',2872,'image/jpeg',9803,'properties/79.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63854,0,'8-1','8-1',2872,'image/jpeg',9803,'properties/8-1.jpg','[]','2025-09-11 19:33:45','2025-09-11 19:33:45',NULL,'public'),(63855,0,'8-2','8-2',2872,'image/jpeg',9803,'properties/8-2.jpg','[]','2025-09-11 19:33:46','2025-09-11 19:33:46',NULL,'public'),(63856,0,'8','8',2872,'image/jpeg',9803,'properties/8.jpg','[]','2025-09-11 19:33:46','2025-09-11 19:33:46',NULL,'public'),(63857,0,'9-1','9-1',2872,'image/jpeg',9803,'properties/9-1.jpg','[]','2025-09-11 19:33:46','2025-09-11 19:33:46',NULL,'public'),(63858,0,'9','9',2872,'image/jpeg',9803,'properties/9.jpg','[]','2025-09-11 19:33:46','2025-09-11 19:33:46',NULL,'public'),(63859,0,'a1-1','a1-1',2872,'image/jpeg',9803,'properties/a1-1.jpg','[]','2025-09-11 19:33:46','2025-09-11 19:33:46',NULL,'public'),(63860,0,'a1-2','a1-2',2872,'image/jpeg',9803,'properties/a1-2.jpg','[]','2025-09-11 19:33:46','2025-09-11 19:33:46',NULL,'public'),(63861,0,'a1','a1',2872,'image/jpeg',9803,'properties/a1.jpg','[]','2025-09-11 19:33:46','2025-09-11 19:33:46',NULL,'public'),(63862,0,'a10','a10',2872,'image/jpeg',9803,'properties/a10.jpg','[]','2025-09-11 19:33:46','2025-09-11 19:33:46',NULL,'public'),(63863,0,'a2-1','a2-1',2872,'image/jpeg',9803,'properties/a2-1.jpg','[]','2025-09-11 19:33:46','2025-09-11 19:33:46',NULL,'public'),(63864,0,'a2-2','a2-2',2872,'image/jpeg',9803,'properties/a2-2.jpg','[]','2025-09-11 19:33:46','2025-09-11 19:33:46',NULL,'public'),(63865,0,'a2','a2',2872,'image/jpeg',9803,'properties/a2.jpg','[]','2025-09-11 19:33:46','2025-09-11 19:33:46',NULL,'public'),(63866,0,'a3-1','a3-1',2872,'image/jpeg',9803,'properties/a3-1.jpg','[]','2025-09-11 19:33:46','2025-09-11 19:33:46',NULL,'public'),(63867,0,'a3-2','a3-2',2872,'image/jpeg',9803,'properties/a3-2.jpg','[]','2025-09-11 19:33:46','2025-09-11 19:33:46',NULL,'public'),(63868,0,'a3','a3',2872,'image/jpeg',9803,'properties/a3.jpg','[]','2025-09-11 19:33:47','2025-09-11 19:33:47',NULL,'public'),(63869,0,'a4-1','a4-1',2872,'image/jpeg',9803,'properties/a4-1.jpg','[]','2025-09-11 19:33:47','2025-09-11 19:33:47',NULL,'public'),(63870,0,'a4-2','a4-2',2872,'image/jpeg',9803,'properties/a4-2.jpg','[]','2025-09-11 19:33:47','2025-09-11 19:33:47',NULL,'public'),(63871,0,'a4','a4',2872,'image/jpeg',9803,'properties/a4.jpg','[]','2025-09-11 19:33:47','2025-09-11 19:33:47',NULL,'public'),(63872,0,'a5-1','a5-1',2872,'image/jpeg',9803,'properties/a5-1.jpg','[]','2025-09-11 19:33:47','2025-09-11 19:33:47',NULL,'public'),(63873,0,'a5','a5',2872,'image/jpeg',9803,'properties/a5.jpg','[]','2025-09-11 19:33:47','2025-09-11 19:33:47',NULL,'public'),(63874,0,'a6-1','a6-1',2872,'image/jpeg',9803,'properties/a6-1.jpg','[]','2025-09-11 19:33:47','2025-09-11 19:33:47',NULL,'public'),(63875,0,'a6','a6',2872,'image/jpeg',9803,'properties/a6.jpg','[]','2025-09-11 19:33:47','2025-09-11 19:33:47',NULL,'public'),(63876,0,'a7','a7',2872,'image/jpeg',9803,'properties/a7.jpg','[]','2025-09-11 19:33:47','2025-09-11 19:33:47',NULL,'public'),(63877,0,'a8','a8',2872,'image/jpeg',9803,'properties/a8.jpg','[]','2025-09-11 19:33:47','2025-09-11 19:33:47',NULL,'public'),(63878,0,'a9','a9',2872,'image/jpeg',9803,'properties/a9.jpg','[]','2025-09-11 19:33:47','2025-09-11 19:33:47',NULL,'public'),(63879,0,'b1','b1',2872,'image/jpeg',9803,'properties/b1.jpg','[]','2025-09-11 19:33:47','2025-09-11 19:33:47',NULL,'public'),(63880,0,'b2','b2',2872,'image/jpeg',9803,'properties/b2.jpg','[]','2025-09-11 19:33:47','2025-09-11 19:33:47',NULL,'public'),(63881,0,'b3','b3',2872,'image/jpeg',9803,'properties/b3.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63882,0,'b4-1','b4-1',2872,'image/jpeg',9803,'properties/b4-1.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63883,0,'b4','b4',2872,'image/jpeg',9803,'properties/b4.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63884,0,'b5-1','b5-1',2872,'image/jpeg',9803,'properties/b5-1.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63885,0,'b5','b5',2872,'image/jpeg',9803,'properties/b5.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63886,0,'b6','b6',2872,'image/jpeg',9803,'properties/b6.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63887,0,'download','download',2872,'image/jpeg',9803,'properties/download.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63888,0,'e1','e1',2872,'image/jpeg',9803,'properties/e1.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63889,0,'e2','e2',2872,'image/jpeg',9803,'properties/e2.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63890,0,'e3','e3',2872,'image/jpeg',9803,'properties/e3.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63891,0,'e4','e4',2872,'image/jpeg',9803,'properties/e4.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63892,0,'e5','e5',2872,'image/jpeg',9803,'properties/e5.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63893,0,'e7','e7',2872,'image/jpeg',9803,'properties/e7.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63894,0,'e8','e8',2872,'image/jpeg',9803,'properties/e8.jpg','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63895,0,'floor','floor',2872,'image/png',9803,'properties/floor.png','[]','2025-09-11 19:33:48','2025-09-11 19:33:48',NULL,'public'),(63896,0,'p1','p1',2872,'image/jpeg',9803,'properties/p1.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63897,0,'p2','p2',2872,'image/jpeg',9803,'properties/p2.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63898,0,'property-video-thumb','property-video-thumb',2872,'image/jpeg',9803,'properties/property-video-thumb.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63899,0,'q1','q1',2872,'image/jpeg',9803,'properties/q1.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63900,0,'q2','q2',2872,'image/jpeg',9803,'properties/q2.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63901,0,'q3','q3',2872,'image/jpeg',9803,'properties/q3.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63902,0,'q6','q6',2872,'image/jpeg',9803,'properties/q6.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63903,0,'q7','q7',2872,'image/jpeg',9803,'properties/q7.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63904,0,'q8','q8',2872,'image/jpeg',9803,'properties/q8.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63905,0,'t1','t1',2872,'image/jpeg',9803,'properties/t1.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63906,0,'t2','t2',2872,'image/jpeg',9803,'properties/t2.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63907,0,'t3','t3',2872,'image/jpeg',9803,'properties/t3.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63908,0,'t4','t4',2872,'image/jpeg',9803,'properties/t4.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63909,0,'t5','t5',2872,'image/jpeg',9803,'properties/t5.jpg','[]','2025-09-11 19:33:49','2025-09-11 19:33:49',NULL,'public'),(63910,0,'wp1a','wp1a',2872,'image/jpeg',9803,'properties/wp1a.jpg','[]','2025-09-11 19:33:50','2025-09-11 19:33:50',NULL,'public');
/*!40000 ALTER TABLE `media_files` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `media_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_folders` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `color` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `parent_id` int NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `media_folders_user_id_index` (`user_id`),
  KEY `media_folders_parent_id_user_id_created_at_index` (`parent_id`,`user_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=2873 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `media_folders` WRITE;
/*!40000 ALTER TABLE `media_folders` DISABLE KEYS */;
INSERT INTO `media_folders` VALUES (1,1,'Banners',NULL,'banner',0,'2019-11-16 02:00:43','2019-11-16 02:00:50',NULL),(1129,0,'users',NULL,'users',0,'2023-10-25 00:12:49','2023-10-25 00:12:49',NULL),(2864,0,'cities',NULL,'cities',0,'2025-09-11 19:33:27','2025-09-11 19:33:27',NULL),(2865,0,'locations',NULL,'locations',0,'2025-09-11 19:33:28','2025-09-11 19:33:28',NULL),(2866,0,'logo',NULL,'logo',0,'2025-09-11 19:33:28','2025-09-11 19:33:28',NULL),(2867,0,'accounts',NULL,'accounts',0,'2025-09-11 19:33:29','2025-09-11 19:33:29',NULL),(2868,0,'general',NULL,'general',0,'2025-09-11 19:33:35','2025-09-11 19:33:35',NULL),(2869,0,'news',NULL,'news',0,'2025-09-11 19:33:37','2025-09-11 19:33:37',NULL),(2870,0,'posts',NULL,'posts',0,'2025-09-11 19:33:38','2025-09-11 19:33:38',NULL),(2871,0,'projects',NULL,'projects',0,'2025-09-11 19:33:40','2025-09-11 19:33:40',NULL),(2872,0,'properties',NULL,'properties',0,'2025-09-11 19:33:41','2025-09-11 19:33:41',NULL);
/*!40000 ALTER TABLE `media_folders` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `media_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_settings` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `media_id` int DEFAULT NULL,
  `user_id` int DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_settings`
--

LOCK TABLES `media_settings` WRITE;
/*!40000 ALTER TABLE `media_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `media_settings` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `menu_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menu_locations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `menu_id` int unsigned NOT NULL,
  `location` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `menu_locations_menu_id_created_at_index` (`menu_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `menu_locations` WRITE;
/*!40000 ALTER TABLE `menu_locations` DISABLE KEYS */;
INSERT INTO `menu_locations` VALUES (1,1,'main-menu','2025-09-11 19:33:35','2025-09-11 19:33:35');
/*!40000 ALTER TABLE `menu_locations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `menu_nodes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menu_nodes` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `menu_id` int unsigned NOT NULL,
  `parent_id` int unsigned NOT NULL DEFAULT '0',
  `reference_id` int unsigned DEFAULT '0',
  `reference_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `icon_font` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `position` tinyint unsigned NOT NULL DEFAULT '0',
  `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `css_class` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `target` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '_self',
  `has_child` tinyint unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `menu_nodes_menu_id_index` (`menu_id`),
  KEY `menu_nodes_parent_id_index` (`parent_id`),
  KEY `menu_nodes_related_id_index` (`reference_id`),
  KEY `menu_nodes_index` (`parent_id`,`reference_id`,`reference_type`,`has_child`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `menu_nodes` WRITE;
/*!40000 ALTER TABLE `menu_nodes` DISABLE KEYS */;
INSERT INTO `menu_nodes` VALUES (1,1,0,0,NULL,'/projects',NULL,0,'Projects',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(2,1,0,0,NULL,'/properties',NULL,1,'Properties',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(3,1,0,0,NULL,'/agents',NULL,2,'Agents',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(4,1,0,2,'Botble\\Page\\Models\\Page','/news',NULL,3,'News',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(5,1,0,0,NULL,'/careers',NULL,4,'Careers',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(6,1,0,4,'Botble\\Page\\Models\\Page','/contact',NULL,5,'Contact',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(7,2,0,3,'Botble\\Page\\Models\\Page','/about-us',NULL,0,'About us',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(8,2,0,4,'Botble\\Page\\Models\\Page','/contact',NULL,1,'Contact us',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(9,2,0,0,NULL,'/careers',NULL,2,'Careers',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(10,2,0,5,'Botble\\Page\\Models\\Page','/terms-conditions',NULL,3,'Terms & Conditions',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(11,3,0,0,NULL,'/projects',NULL,0,'All projects',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(12,3,0,0,NULL,'/properties',NULL,1,'All properties',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(13,3,0,0,NULL,'/properties?type=sale',NULL,2,'Houses for sale',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(14,3,0,0,NULL,'/properties?type=rent',NULL,3,'Houses for rent',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(15,4,0,2,'Botble\\Page\\Models\\Page','/news',NULL,0,'Latest news',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(16,4,0,2,'Botble\\Blog\\Models\\Category',NULL,NULL,1,'House architecture',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(17,4,0,4,'Botble\\Blog\\Models\\Category',NULL,NULL,2,'House design',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35'),(18,4,0,6,'Botble\\Blog\\Models\\Category',NULL,NULL,3,'Building materials',NULL,'_self',0,'2025-09-11 19:33:35','2025-09-11 19:33:35');
/*!40000 ALTER TABLE `menu_nodes` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `menus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menus` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `menus_slug_unique` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `menus` WRITE;
/*!40000 ALTER TABLE `menus` DISABLE KEYS */;
INSERT INTO `menus` VALUES (1,'Main menu','main-menu','published','2025-09-11 19:33:35','2025-09-11 19:33:35'),(2,'About','about','published','2025-09-11 19:33:35','2025-09-11 19:33:35'),(3,'More information','more-information','published','2025-09-11 19:33:35','2025-09-11 19:33:35'),(4,'News','news','published','2025-09-11 19:33:35','2025-09-11 19:33:35');
/*!40000 ALTER TABLE `menus` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `meta_boxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `meta_boxes` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `reference_id` int unsigned NOT NULL,
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `reference_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_boxes_content_id_index` (`reference_id`)
) ENGINE=InnoDB AUTO_INCREMENT=104 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `meta_boxes` WRITE;
/*!40000 ALTER TABLE `meta_boxes` DISABLE KEYS */;
INSERT INTO `meta_boxes` VALUES (1,1,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-17 20:34:59','2019-11-17 20:34:59'),(2,2,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-17 20:53:34','2019-11-17 20:53:34'),(3,3,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-17 21:09:55','2019-11-17 21:09:55'),(4,4,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-17 21:18:11','2019-11-17 21:18:11'),(5,1,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\PropertyFeature','2019-11-17 21:40:58','2019-11-17 21:40:58'),(6,2,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\PropertyFeature','2019-11-17 21:41:43','2019-11-17 21:41:43'),(7,1,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Project','2019-11-18 00:34:49','2019-11-18 00:34:49'),(8,5,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-18 00:47:52','2019-11-18 00:47:52'),(9,6,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-18 01:05:58','2019-11-18 01:05:58'),(10,7,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-18 01:12:07','2019-11-18 01:12:07'),(11,2,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Project','2019-11-18 01:28:45','2019-11-18 01:28:45'),(12,8,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-18 01:49:36','2019-11-18 01:49:36'),(13,9,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-18 02:02:19','2019-11-18 02:02:19'),(14,10,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-18 02:16:53','2019-11-18 02:16:53'),(15,11,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-18 02:22:48','2019-11-18 02:22:48'),(16,1,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Category','2019-11-18 02:33:35','2019-11-18 02:33:35'),(17,12,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-18 02:47:05','2019-11-18 02:47:05'),(18,1,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Post','2019-11-18 02:51:35','2019-11-18 02:51:35'),(19,1,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Tag','2019-11-18 02:51:35','2019-11-18 02:51:35'),(20,2,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Post','2019-11-18 02:55:53','2019-11-18 02:55:53'),(21,2,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Tag','2019-11-18 02:55:53','2019-11-18 02:55:53'),(22,3,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Post','2019-11-18 02:59:01','2019-11-18 02:59:01'),(23,4,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Post','2019-11-18 03:07:27','2019-11-18 03:07:27'),(24,3,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Tag','2019-11-18 03:07:27','2019-11-18 03:07:27'),(25,3,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Project','2019-11-18 03:30:34','2019-11-18 03:30:34'),(26,4,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Project','2019-11-18 03:38:13','2019-11-18 03:38:13'),(27,5,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Project','2019-11-18 03:45:06','2019-11-18 03:45:06'),(28,6,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Project','2019-11-18 03:53:20','2019-11-18 03:53:20'),(29,13,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-18 07:23:02','2019-11-18 07:23:02'),(30,14,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-18 07:36:29','2019-11-18 07:36:29'),(31,15,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-18 07:44:44','2019-11-18 07:44:44'),(32,16,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-18 07:59:14','2019-11-18 07:59:14'),(33,17,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-18 08:13:07','2019-11-18 08:13:07'),(34,7,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Project','2019-11-21 01:54:36','2019-11-21 01:54:36'),(35,8,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Project','2019-11-21 02:28:09','2019-11-21 02:28:09'),(36,9,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Project','2019-11-21 02:40:25','2019-11-21 02:40:25'),(37,10,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Project','2019-11-21 02:58:55','2019-11-21 02:58:55'),(38,11,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Project','2019-11-21 03:16:25','2019-11-21 03:16:25'),(39,12,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Project','2019-11-21 03:25:22','2019-11-21 03:25:22'),(40,18,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-21 05:51:54','2019-11-21 05:51:54'),(41,19,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-21 06:03:11','2019-11-21 06:03:11'),(42,20,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-21 06:12:15','2019-11-21 06:12:15'),(43,21,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-21 06:26:59','2019-11-21 06:26:59'),(44,22,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-21 06:56:50','2019-11-21 06:56:50'),(45,23,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-21 07:18:36','2019-11-21 07:18:36'),(46,24,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-21 07:26:48','2019-11-21 07:26:48'),(47,25,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-21 07:34:38','2019-11-21 07:34:38'),(48,26,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-21 07:40:46','2019-11-21 07:40:46'),(49,27,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-21 07:45:34','2019-11-21 07:45:34'),(52,2,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Category','2019-11-21 07:49:25','2019-11-21 07:49:25'),(53,3,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Category','2019-11-21 07:49:35','2019-11-21 07:49:35'),(54,4,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Category','2019-11-21 07:50:02','2019-11-21 07:50:02'),(55,5,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Category','2019-11-21 07:50:17','2019-11-21 07:50:17'),(56,6,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Category','2019-11-21 07:50:36','2019-11-21 07:50:36'),(57,7,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Category','2019-11-21 07:50:58','2019-11-21 07:50:58'),(58,28,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-21 19:53:17','2019-11-21 19:53:17'),(59,29,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-21 19:59:16','2019-11-21 19:59:16'),(60,30,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-22 00:29:01','2019-11-22 00:29:01'),(61,31,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-22 00:42:28','2019-11-22 00:42:28'),(62,32,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-22 00:47:18','2019-11-22 00:47:18'),(63,33,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-22 00:57:15','2019-11-22 00:57:15'),(64,34,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\RealEstate\\Models\\Property','2019-11-22 01:06:09','2019-11-22 01:06:09'),(65,8,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Blog\\Models\\Category','2019-11-22 01:26:08','2019-11-22 01:26:08'),(74,1,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Career\\Models\\Career','2019-11-30 19:43:10','2019-11-30 19:43:10'),(75,2,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Career\\Models\\Career','2019-11-30 19:49:07','2019-11-30 19:49:07'),(76,3,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Career\\Models\\Career','2019-11-30 19:52:42','2019-11-30 19:52:42'),(77,4,'seo_meta','[{\"seo_title\":null,\"seo_description\":null}]','Botble\\Career\\Models\\Career','2019-11-30 19:56:50','2019-11-30 19:56:50'),(80,2,'video','[{\"thumbnail\":\"\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(81,4,'video','[{\"thumbnail\":\"properties\\/property-video-thumb.jpg\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(82,6,'video','[{\"thumbnail\":\"\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(83,8,'video','[{\"thumbnail\":\"properties\\/property-video-thumb.jpg\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(84,10,'video','[{\"thumbnail\":\"\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(85,12,'video','[{\"thumbnail\":\"properties\\/property-video-thumb.jpg\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(86,14,'video','[{\"thumbnail\":\"\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(87,16,'video','[{\"thumbnail\":\"properties\\/property-video-thumb.jpg\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(88,18,'video','[{\"thumbnail\":\"\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(89,20,'video','[{\"thumbnail\":\"properties\\/property-video-thumb.jpg\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(90,22,'video','[{\"thumbnail\":\"\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(91,24,'video','[{\"thumbnail\":\"properties\\/property-video-thumb.jpg\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(92,26,'video','[{\"thumbnail\":\"\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(93,28,'video','[{\"thumbnail\":\"properties\\/property-video-thumb.jpg\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(94,30,'video','[{\"thumbnail\":\"\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(95,32,'video','[{\"thumbnail\":\"properties\\/property-video-thumb.jpg\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(96,34,'video','[{\"thumbnail\":\"\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Property','2021-04-29 20:46:36','2021-04-29 20:46:36'),(97,2,'video','[{\"thumbnail\":\"\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Project','2021-04-29 20:46:36','2021-04-29 20:46:36'),(98,4,'video','[{\"thumbnail\":\"properties\\/property-video-thumb.jpg\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Project','2021-04-29 20:46:36','2021-04-29 20:46:36'),(99,6,'video','[{\"thumbnail\":\"\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Project','2021-04-29 20:46:36','2021-04-29 20:46:36'),(100,8,'video','[{\"thumbnail\":\"properties\\/property-video-thumb.jpg\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Project','2021-04-29 20:46:36','2021-04-29 20:46:36'),(101,10,'video','[{\"thumbnail\":\"\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Project','2021-04-29 20:46:36','2021-04-29 20:46:36'),(102,12,'video','[{\"thumbnail\":\"properties\\/property-video-thumb.jpg\",\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=UfEiKK-iX70\"}]','Botble\\RealEstate\\Models\\Project','2021-04-29 20:46:36','2021-04-29 20:46:36'),(103,1,'subscribed_packaged_id','[2]','Botble\\Payment\\Models\\Payment','2022-12-27 20:03:55','2022-12-27 20:03:55');
/*!40000 ALTER TABLE `meta_boxes` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `migrations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=258 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES (1,'2013_04_09_032329_create_base_tables',1),(2,'2013_04_09_062329_create_revisions_table',1),(3,'2014_10_12_000000_create_users_table',1),(4,'2014_10_12_100000_create_password_resets_table',1),(5,'2016_06_01_000001_create_oauth_auth_codes_table',1),(6,'2016_06_01_000002_create_oauth_access_tokens_table',1),(7,'2016_06_01_000003_create_oauth_refresh_tokens_table',1),(8,'2016_06_01_000004_create_oauth_clients_table',1),(9,'2016_06_01_000005_create_oauth_personal_access_clients_table',1),(10,'2016_06_10_230148_create_acl_tables',1),(11,'2016_06_14_230857_create_menus_table',1),(12,'2016_06_28_221418_create_pages_table',1),(13,'2016_10_05_074239_create_setting_table',1),(14,'2016_11_28_032840_create_dashboard_widget_tables',1),(15,'2016_12_16_084601_create_widgets_table',1),(16,'2017_05_09_070343_create_media_tables',1),(17,'2017_11_03_070450_create_slug_table',1),(18,'2019_07_15_042406_change_site_title_from_settings_to_theme_options',1),(19,'2019_08_13_033145_remove_unused_columns_in_users_table',1),(20,'2019_08_19_000000_create_failed_jobs_table',1),(21,'2019_09_07_030654_update_menu_nodes_table',1),(22,'2019_09_07_045041_update_slugs_table',1),(23,'2019_09_07_050405_update_slug_reference_for_page',1),(24,'2019_09_08_014859_update_meta_boxes_table',1),(25,'2019_09_08_015629_update_meta_box_data_for_page',1),(26,'2019_09_12_073711_update_media_url',1),(27,'2019_09_12_073711_update_media_url_for_current_data',1),(28,'2019_10_20_002256_remove_parent_id_in_pages_table',1),(31,'2018_06_22_032304_create_real_estate_table',2),(32,'2015_06_29_025744_create_audit_history',3),(33,'2015_06_18_033822_create_blog_table',4),(34,'2019_09_07_035526_update_menu_node_reference_type_for_category',4),(35,'2019_09_07_050058_update_slug_reference_for_blog',4),(36,'2019_09_07_155716_update_language_meta_for_blog',4),(37,'2019_09_08_015552_update_meta_box_data_for_blog',4),(38,'2019_10_20_002342_remove_parent_id_in_tags_table',4),(39,'2016_10_03_032336_create_languages_table',5),(40,'2019_09_07_154718_update_lang_meta_table',5),(42,'2016_06_17_091537_create_contacts_table',7),(43,'2015_08_15_122343_create_notes_table',8),(44,'2019_11_18_035125_add_column_type_into_re_properties_table',9),(45,'2019_11_18_035712_create_investor_table',9),(46,'2019_11_18_040153_update_real_estates_table',9),(47,'2019_11_18_041228_drop_table_re_property_categories',10),(48,'2019_11_18_082146_create_currencies_table',11),(49,'2019_11_18_061011_create_country_table',12),(50,'2019_11_18_061730_create_state_table',12),(51,'2019_11_18_062515_create_city_table',12),(52,'2019_11_19_063851_create_project_features_table',13),(53,'2019_11_21_090830_update_project_and_property_table',14),(54,'2019_11_21_130139_add_price_to_projects_table',15),(55,'2019_11_14_210650_create_consults_table',16),(56,'2019_11_26_024326_update_property_type',17),(57,'2019_06_24_211801_create_career_table',18),(58,'2019_12_03_123314_add_column_slug_into_cities_table',19),(59,'2019_12_03_124417_add_column_city_id_into_table_properties_and_projects',19),(60,'2017_05_18_080441_create_payment_tables',20),(61,'2019_12_10_140938_create_vendor_table',20),(62,'2019_12_15_025938_update_column_images_in_real_estate_tables',20),(63,'2019_12_17_064316_add_column_period_to_table_re_properties',20),(64,'2019_12_24_033049_add_column_author_into_re_properties_table',20),(65,'2019_12_24_083810_vendor_create_package_table',20),(66,'2019_12_27_004653_update_vendors_table_with_package_data',20),(68,'2020_01_08_002704_real_estate_create_type_table',21),(69,'2020_01_10_133700_change_re_types_to_re_categories',22),(70,'2016_10_07_193005_create_translations_table',23),(71,'2020_01_23_133752_update_account_tables',24),(72,'2020_02_03_144309_update_column_payment_channel',25),(73,'2020_02_06_143217_update_vendor_table',26),(74,'2020_02_11_133026_add_description_to_table_payments',27),(75,'2020_02_11_140823_create_transactions_table',27),(76,'2020_02_23_111922_fix_column_number_block_in_re_properties_table',27),(77,'2020_03_24_151004_add_moderation_status_into_properties_table',28),(78,'2020_03_25_030953_create_table_vendor_packages',29),(79,'2020_03_25_083610_add_column_expire_date_into_re_properties_table',30),(80,'2020_03_26_081108_add_column_auto_renew_to_re_properties_table',31),(81,'2020_03_16_072752_add_column_abbreviation_to_states_table',32),(82,'2020_03_28_020724_make_column_user_id_nullable_table_revisions',33),(83,'2020_03_23_093053_update_payments_table',34),(84,'2020_04_22_074304_add_column_never_expired_to_re_properties_table',35),(85,'2020_05_26_014304_add_column_provider_to_oauth_clients_table',36),(86,'2020_07_27_085437_add_icon_to_re_features',37),(90,'2020_08_21_102728_real_estate_create_facility_table',38),(91,'2020_08_22_024455_rename_table_for_accounts',39),(92,'2020_08_26_130439_add_column_username_into_table_re_accounts',40),(93,'2020_09_09_110653_update_table_careers',41),(94,'2020_09_15_111419_fix_old_data_for_re_properties',42),(95,'2020_10_05_030817_make_column_charge_id_nullable',43),(96,'2020_10_18_134416_fix_audit_logs_table',44),(97,'2020_10_24_133432_change_column_distance_to_string',45),(99,'2020_10_31_053746_add_column_description_into_re_categories_table',46),(100,'2019_01_05_053554_create_jobs_table',47),(101,'2020_12_05_112556_change_contact_page_to_a_page',48),(102,'2021_02_11_031126_update_price_column_in_projects_and_properties',49),(103,'2021_02_16_092633_remove_default_value_for_author_type',50),(104,'2021_03_08_024049_add_lat_long_into_real_estate_tables',51),(105,'2021_03_27_144913_add_customer_type_into_table_payments',52),(106,'2021_05_24_034720_make_column_currency_nullable',53),(107,'2021_06_10_091950_add_column_is_featured_to_table_re_accounts',54),(108,'2021_07_07_021757_update_table_account_activity_logs',55),(109,'2021_07_18_101839_fix_old_theme_options',56),(110,'2021_08_05_134214_fix_social_link_theme_options',57),(111,'2021_08_09_161302_add_metadata_column_to_payments_table',58),(112,'2021_09_29_042758_create_re_categories_multilevel_table',59),(113,'2021_10_19_020859_update_metadata_field',60),(114,'2021_10_31_031254_add_company_to_accounts_table',61),(115,'2021_10_25_021023_fix-priority-load-for-language-advanced',62),(116,'2021_12_03_030600_create_blog_translations',62),(117,'2021_12_03_075608_create_page_translations',62),(118,'2021_12_03_084118_create_location_translations',62),(119,'2021_12_03_094518_migrate_old_location_data',62),(120,'2021_12_04_095357_create_careers_translations_table',62),(121,'2021_12_10_034440_switch_plugin_location_to_use_language_advanced',63),(122,'2021_12_10_034807_create_real_estate_translation_tables',64),(123,'2021_12_18_081636_add_property_project_views_count',65),(124,'2022_01_16_085908_improve_plugin_location',66),(125,'2022_04_19_113923_add_index_to_table_posts',67),(126,'2022_04_20_100851_add_index_to_media_table',67),(127,'2022_04_20_101046_add_index_to_menu_table',67),(128,'2022_05_03_033044_update_column_images_in_real_estate_tables',68),(129,'2022_05_04_033044_update_column_images_in_real_estate_tables',69),(130,'2022_06_04_033634_improve_homepage_content',70),(131,'2022_06_28_151901_activate_paypal_stripe_plugin',71),(132,'2022_07_02_081723_fix_expired_date_column',71),(133,'2019_12_14_000001_create_personal_access_tokens_table',72),(134,'2022_07_07_153354_update_charge_id_in_table_payments',72),(135,'2022_07_10_034813_move_lang_folder_to_root',72),(136,'2022_08_01_090213_update_table_properties_and_projects',72),(137,'2022_08_04_051940_add_missing_column_expires_at',72),(138,'2022_08_04_052122_delete_location_backup_tables',72),(139,'2022_10_14_024629_drop_column_is_featured',73),(140,'2022_10_29_065232_increase_states_abbreviation_column',74),(141,'2022_11_06_061847_increase_state_translations_abbreviation_column',75),(142,'2022_11_06_070405_improve_homepage_search_box',75),(143,'2022_11_18_063357_add_missing_timestamp_in_table_settings',76),(144,'2022_12_02_093615_update_slug_index_columns',76),(145,'2022_09_01_000001_create_admin_notifications_tables',77),(146,'2023_01_30_024431_add_alt_to_media_table',78),(147,'2023_01_31_023233_create_re_custom_fields_table',79),(148,'2023_02_06_000000_add_location_to_re_accounts_table',79),(149,'2023_02_06_024257_add_package_translations',79),(150,'2023_02_08_062457_add_custom_fields_translation_table',80),(151,'2014_10_12_100000_create_password_reset_tokens_table',81),(152,'2023_02_15_024644_create_re_reviews_table',81),(153,'2023_02_16_042611_drop_table_password_resets',81),(154,'2023_02_20_072604_create_re_invoices_table',82),(155,'2023_02_20_081251_create_re_account_packages_table',82),(156,'2023_04_04_030709_add_unique_id_to_properties_and_projects_table',83),(157,'2023_04_14_164811_make_phone_and_email_in_table_re_consults_nullable',84),(158,'2023_04_23_005903_add_column_permissions_to_admin_notifications',84),(159,'2023_04_23_061847_increase_state_translations_abbreviation_column',84),(160,'2023_05_08_114004_improve_properties_and_projects_page',85),(161,'2023_05_09_062031_unique_reviews_table',85),(162,'2023_05_10_075124_drop_column_id_in_role_users_table',85),(163,'2023_05_26_034353_fix_properties_projects_image',86),(164,'2023_05_27_004215_add_column_ip_into_table_re_consults',86),(165,'2023_07_06_011444_create_slug_translations_table',87),(166,'2023_07_18_040500_convert_cities_is_featured_to_selecting_locations_from_shortcode',87),(167,'2023_07_25_034513_create_re_coupons_table',87),(168,'2023_07_25_034672_add_coupon_code_column_to_jb_invoices_table',87),(169,'2023_07_26_041451_add_more_columns_to_location_table',87),(170,'2023_07_27_041451_add_more_columns_to_location_translation_table',87),(171,'2023_07_28_073307_drop_unique_in_states_cities_translations',87),(172,'2023_08_02_074208_change_square_column_to_float',87),(173,'2023_08_07_000001_add_is_public_profile_column_to_re_accounts_table',87),(174,'2023_08_09_004607_make_column_project_id_nullable',87),(175,'2023_08_15_073307_drop_unique_in_states_cities_translations',88),(176,'2023_08_21_090810_make_page_content_nullable',89),(177,'2023_08_29_074620_make_column_author_id_nullable',90),(178,'2023_09_11_084630_update_mandatory_fields_in_consult_form_table',91),(179,'2023_09_14_021936_update_index_for_slugs_table',92),(180,'2023_09_14_022423_add_index_for_language_table',92),(181,'2023_09_20_050420_add_missing_translation_column',93),(182,'2023_10_21_065016_make_state_id_in_table_cities_nullable',94),(183,'2023_11_10_080225_migrate_contact_blacklist_email_domains_to_core',95),(184,'2023_11_14_033417_change_request_column_in_table_audit_histories',95),(185,'2023_11_21_071820_add_missing_slug_for_agents',95),(186,'2023_12_06_100448_change_random_hash_for_media',95),(187,'2023_12_07_095130_add_color_column_to_media_folders_table',95),(188,'2023_12_12_105220_drop_translations_table',95),(189,'2023_12_17_162208_make_sure_column_color_in_media_folders_nullable',95),(190,'2024_01_11_084816_add_investor_translations_table',95),(191,'2024_01_31_022842_add_description_to_re_packages_table',96),(192,'2024_03_13_000001_drop_type_column_from_custom_field_translations_table',96),(193,'2024_03_20_080001_migrate_change_attribute_email_to_nullable_form_contacts_table',96),(194,'2024_03_25_000001_update_captcha_settings_for_contact',96),(195,'2024_04_04_110758_update_value_column_in_user_meta_table',96),(196,'2024_04_19_063914_create_custom_fields_table',96),(197,'2024_04_23_124505_add_features_column_to_re_packages',96),(198,'2024_04_23_135106_add_columns_to_re_investors',96),(199,'2024_04_27_100730_improve_analytics_setting',96),(200,'2024_05_12_091229_add_column_visibility_to_table_media_files',96),(201,'2024_05_16_100000_change_random_hash_for_media',97),(202,'2024_05_25_000001_update_captcha_settings_for_real_estate',98),(203,'2024_06_16_163428_make_investor_id_nullable',99),(204,'2017_10_24_154832_create_newsletter_table',100),(205,'2020_11_18_150916_ads_create_ads_table',100),(206,'2021_12_02_035301_add_ads_translations_table',100),(207,'2023_04_17_062645_add_open_in_new_tab',100),(208,'2023_08_11_060908_create_announcements_table',100),(209,'2023_11_07_023805_add_tablet_mobile_image',100),(210,'2024_03_25_000001_update_captcha_settings_for_newsletter',100),(211,'2024_04_01_043317_add_google_adsense_slot_id_to_ads_table',100),(212,'2024_06_20_103539_create_consult_custom_fields_table',100),(213,'2024_07_04_083133_create_payment_logs_table',100),(214,'2024_07_07_091316_fix_column_url_in_menu_nodes_table',100),(215,'2024_07_08_235824_fix_facilities_primary_key',100),(216,'2024_07_12_100000_change_random_hash_for_media',101),(217,'2024_07_26_090340_add_private_notes_column_to_re_properties_projects_table',102),(218,'2024_07_30_091615_fix_order_column_in_categories_table',102),(219,'2024_08_09_075542_add_accounts_translations',103),(220,'2024_08_12_124528_add_approved_at_column_to_re_accounts_table',104),(221,'2024_08_17_094600_add_image_into_countries',105),(222,'0001_01_01_000001_create_cache_table',106),(223,'2024_08_31_074158_add_floor_plans_columns_to_re_properties_table',106),(224,'2024_09_04_130921_add_reject_reason_column_to_re_properties_table',106),(225,'2024_09_19_021436_make_email_in_accounts_table_nullable',106),(226,'2024_09_30_024515_create_sessions_table',106),(227,'2024_11_18_023706_add_floor_plan_to_table_re_properties_translations',106),(228,'2024_12_31_081648_correct_career_slugs',107),(229,'2025_01_06_033807_add_default_value_for_categories_author_type',108),(230,'2025_01_08_093652_add_zip_code_to_cities',108),(231,'2025_02_11_153025_add_action_label_to_announcement_translations',109),(232,'2025_04_03_000001_add_user_type_to_audit_histories_table',110),(233,'2025_04_08_040931_create_social_logins_table',110),(234,'2025_04_12_000003_add_payment_fee_to_payments_table',110),(235,'2025_04_12_161730_add_featured_priority_to_re_properties_table',110),(236,'2025_04_12_165120_add_featured_priority_to_re_projects_table',110),(237,'2025_04_21_000000_add_tablet_mobile_image_to_ads_translations_table',111),(238,'2025_04_23_034738_make_featured_priority_nullable',112),(239,'2025_05_22_000001_add_payment_fee_type_to_settings_table',113),(240,'2025_05_05_000001_add_user_type_to_audit_histories_table',114),(241,'2025_05_19_000001_add_zip_code_to_properties_and_projects_tables',114),(242,'2018_07_09_221238_create_faq_table',115),(243,'2021_12_03_082134_create_faq_translations',115),(244,'2023_11_17_063408_add_description_column_to_faq_categories_table',115),(245,'2024_12_01_000000_add_floor_plans_column_to_re_projects_table',116),(246,'2024_12_18_000000_add_blocked_at_column_to_re_accounts_table',116),(247,'2024_12_18_000001_add_blocked_reason_column_to_re_accounts_table',116),(248,'2024_12_19_000001_create_device_tokens_table',116),(249,'2024_12_19_000002_create_push_notifications_table',116),(250,'2024_12_19_000003_create_push_notification_recipients_table',116),(251,'2024_12_30_000001_create_user_settings_table',116),(252,'2025_07_06_030754_add_phone_to_users_table',116),(253,'2025_07_31_083138_add_indexes_for_real_estate_location_search',117),(254,'2025_07_31_083459_add_indexes_for_location_search_performance',117),(255,'2025_07_31_add_performance_indexes_to_slugs_table',117),(256,'2025_08_12_085710_add_verification_fields_to_re_accounts_table',117),(257,'2025_08_14_025316_change_column_description_in_re_accounts_translations_to_text',118);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `newsletters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletters` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'subscribed',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `newsletters` WRITE;
/*!40000 ALTER TABLE `newsletters` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `notes`
--

DROP TABLE IF EXISTS `notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `notes` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned NOT NULL,
  `reference_id` int unsigned NOT NULL,
  `reference_type` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_by` int unsigned NOT NULL,
  `note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `notes_user_id_index` (`user_id`),
  KEY `notes_reference_id_index` (`reference_id`),
  KEY `notes_created_by_index` (`created_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notes`
--

LOCK TABLES `notes` WRITE;
/*!40000 ALTER TABLE `notes` DISABLE KEYS */;
/*!40000 ALTER TABLE `notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_access_tokens`
--

DROP TABLE IF EXISTS `oauth_access_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_access_tokens` (
  `id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint DEFAULT NULL,
  `client_id` int unsigned NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `scopes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `revoked` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `expires_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `oauth_access_tokens_user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_access_tokens`
--

LOCK TABLES `oauth_access_tokens` WRITE;
/*!40000 ALTER TABLE `oauth_access_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_access_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_auth_codes`
--

DROP TABLE IF EXISTS `oauth_auth_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_auth_codes` (
  `id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint NOT NULL,
  `client_id` int unsigned NOT NULL,
  `scopes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `revoked` tinyint(1) NOT NULL,
  `expires_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_auth_codes`
--

LOCK TABLES `oauth_auth_codes` WRITE;
/*!40000 ALTER TABLE `oauth_auth_codes` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_auth_codes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_clients`
--

DROP TABLE IF EXISTS `oauth_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_clients` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint DEFAULT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `secret` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `redirect` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `personal_access_client` tinyint(1) NOT NULL,
  `password_client` tinyint(1) NOT NULL,
  `revoked` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `provider` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `oauth_clients_user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_clients`
--

LOCK TABLES `oauth_clients` WRITE;
/*!40000 ALTER TABLE `oauth_clients` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_personal_access_clients`
--

DROP TABLE IF EXISTS `oauth_personal_access_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_personal_access_clients` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `client_id` int unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `oauth_personal_access_clients_client_id_index` (`client_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_personal_access_clients`
--

LOCK TABLES `oauth_personal_access_clients` WRITE;
/*!40000 ALTER TABLE `oauth_personal_access_clients` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_personal_access_clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_refresh_tokens`
--

DROP TABLE IF EXISTS `oauth_refresh_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_refresh_tokens` (
  `id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `access_token_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `revoked` tinyint(1) NOT NULL,
  `expires_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_refresh_tokens`
--

LOCK TABLES `oauth_refresh_tokens` WRITE;
/*!40000 ALTER TABLE `oauth_refresh_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_refresh_tokens` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pages` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `user_id` int NOT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `template` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `pages` WRITE;
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
INSERT INTO `pages` VALUES (1,'Home','<div>[search-box title=\"Find your favorite homes at Flex Home\" background_image=\"general/home-banner.jpg\" enable_search_projects_on_homepage_search=\"yes\" default_home_search_type=\"project\"][/search-box]</div><div>[featured-projects title=\"Featured projects\" subtitle=\"We make the best choices with the hottest and most prestigious projects, please visit the details below to find out more.\" limit=\"4\" enable_lazy_loading=\"yes\"][/featured-projects]</div><div>[properties-by-locations title=\"Properties by locations\" subtitle=\"Each place is a good choice, it will help you make the right decision, do not miss the opportunity to discover our wonderful properties.\" city=\"1,2,3,4,5\" enable_lazy_loading=\"yes\"][/properties-by-locations]</div><div>[properties-for-sale title=\"Properties For Sale\" subtitle=\"Below is a list of properties that are currently up for sale\" limit=\"8\" enable_lazy_loading=\"yes\"][/properties-for-sale]</div><div>[properties-for-rent title=\"Properties For Rent\" subtitle=\"Below is a detailed price list of each property for rent\" limit=\"8\" enable_lazy_loading=\"yes\"][/properties-for-rent]</div><div>[featured-agents title=\"Featured Agents\" enable_lazy_loading=\"yes\"][/featured-agents]</div><div>[recently-viewed-properties title=\"Recently Viewed Properties\" subtitle=\"Your currently viewed properties.\" limit=\"8\" enable_lazy_loading=\"yes\"][/recently-viewed-properties]</div><div>[latest-news title=\"News\" subtitle=\"Below is the latest real estate news we get regularly updated from reliable sources.\" limit=\"4\" enable_lazy_loading=\"yes\"][/latest-news]</div>',1,NULL,'homepage',NULL,'published','2025-09-11 19:33:35','2025-09-11 19:33:35'),(2,'News','---',1,NULL,'default',NULL,'published','2025-09-11 19:33:35','2025-09-11 19:33:35'),(3,'About us','<h4><span style=\"font-size:18px;\"><b>1. COMPANY</b><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong> PROFILE</strong></span></span></h4>\n\n<p><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Founded on August 28, 1993 (formerly known as Truong Thinh Phat Construction Co., Ltd.), Flex Home operates in the field of real estate business, building villas for rent.<br />\nWith the slogan &quot;Breaking time, through space&quot; with a sustainable development strategy, taking Real Estate as a focus area, Flex Home is constantly connecting between buyers and sellers in the field. Real estate, bringing people closer together, over the distance of time and space, is a reliable place for real estate investment - an area that is constantly evolving over time.</span></span></p>\n\n<blockquote>\n<h2 style=\"font-style: italic; text-align: center;\"><span style=\"font-size:24px;\"><strong><span style=\"font-family:Arial,Helvetica,sans-serif;\"><span style=\"color:#16a085;\">&quot;Breaking time, through space&quot;</span></span></strong></span></h2>\n</blockquote>\n\n<h4 style=\"text-align: center;\"><img alt=\"\" src=\"https://flex-home.test/storage/general/asset-3-at-3x.png\" style=\"width: 90%;\" /></h4>\n\n<h4><span style=\"font-size:18px;\"><b><font face=\"Arial, Helvetica, sans-serif\">2. VISION&nbsp;</font></b></span></h4>\n\n<p><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">- Acquiring domestic areas.<br />\n- Reaching far across continents.</span></span></p>\n\n<h4><span style=\"font-size:18px;\"><b>3. MISSION</b></span></h4>\n\n<p><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">- Creating the community<br />\n- Building destinations<br />\n- Nurture happiness</span></span></p>\n\n<p><img alt=\"\" src=\"https://flex-home.test/storage/general/vietnam-office-4.jpg\" /></p>\n',1,NULL,'default','Founded on August 28, 1993 (formerly known as Truong Thinh Phat Construction Co., Ltd.), Flex Home operates in the field of real estate business, building villas for rent.\nWith the slogan \"Breaking time, through space\" with a sustainable development strategy, taking Real Estate as a focus area, Flex Home is constantly connecting between buyers and sellers in the field.','published','2025-09-11 19:33:35','2025-09-11 19:33:35'),(4,'Contact','<p>[contact-form][/contact-form]<br />\n&nbsp;</p>\n\n<h3>Directions</h3>\n\n<p>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[/google-map]</p>\n\n<p>&nbsp;</p>',1,NULL,'default',NULL,'published','2025-09-11 19:33:35','2025-09-11 19:33:35'),(5,'Terms &amp; Conditions','<p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Access to and use of the Flex Home website is subject to the following terms, conditions, and relevant laws of Vietnam.</span></span></p>\n\n<h4 style=\"text-align: justify;\"><span style=\"font-size:18px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>1. Copyright</strong></span></span></h4>\n\n<p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Copyrights and other intellectual property rights to all text, images, audio, software and other content on this site are owned by Flex Home and its affiliates. Users are allowed to view the contents of the website, cite the contents by printing, downloading the hard disk and distributing it to others for non-commercial purposes, providing information or personal purposes. </span></span><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Any content from this site may not be used for sale or distribution for profit, nor may it be edited or included in any other publication or website.</span></span></p>\n\n<h4 style=\"text-align: justify;\"><span style=\"font-size:18px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>2. Content</strong></span></span></h4>\n\n<p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">The information on this website is compiled with great confidence but for general information research purposes only. While we endeavor to maintain updated and accurate information, we make no representations or warranties in any manner regarding completeness, accuracy, reliability, appropriateness or availability in relation to web site, or related information, product, service, or image within the website for any purpose. </span></span></p>\n\n<p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Flex Home and its employees, managers, and agents are not responsible for any loss, damage or expense incurred as a result of accessing and using this website and the sites. </span></span><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">The web is connected to it, including but not limited to, loss of profits, direct or indirect losses. We are also not responsible, or jointly responsible, if the site is temporarily inaccessible due to technical issues beyond our control. Any comments, suggestions, images, ideas and other information or materials that users submit to us through this site will become our exclusive property, including the right to may arise in the future associated with us.</span></span></p>\n\n<p style=\"text-align: center;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><img alt=\"\" src=\"https://flex-home.test/storage/general/copyright.jpg\" style=\"width: 90%;\" /></span></span></p>\n\n<h4 style=\"text-align: justify;\"><span style=\"font-size:18px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>3. Note on&nbsp;connected sites</strong></span></span></h4>\n\n<p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">At many points in the website, users can get links to other websites related to a specific aspect. This does not mean that we are related to the websites or companies that own these websites. Although we intend to connect users to sites of interest, we are not responsible or jointly responsible for our employees, managers, or representatives. with other websites and information contained therein.</span></span></p>\n',1,NULL,'default','Copyrights and other intellectual property rights to all text, images, audio, software and other content on this site are owned by Flex Home and its affiliates. Users are allowed to view the contents of the website, cite the contents by printing, downloading the hard disk and distributing it to others for non-commercial purposes.','published','2025-09-11 19:33:35','2025-09-11 19:33:35'),(6,'Cookie Policy','<h3>EU Cookie Consent</h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.</p><h4>Essential Data</h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.</p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.</p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \"token\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.</p>',1,NULL,'default',NULL,'published','2025-09-11 19:33:35','2025-09-11 19:33:35'),(7,'Properties','<div>[properties-list title=\"Discover our properties\" description=\"Discover our properties\" description=\"Each place is a good choice, it will help you make the right decision, do not miss the opportunity to discover our wonderful properties.\" number_of_properties_per_page=\"12\"][/properties-list]</div>',1,NULL,'homepage',NULL,'published','2025-09-11 19:33:35','2025-09-11 19:33:35'),(8,'Projects','<div>[projects-list  title=\"Discover our projects\" description=\"We make the best choices with the hottest and most prestigious projects, please visit the details below to find out more\" number_of_projects_per_page=\"12\"][/projects-list]</div>',1,NULL,'homepage',NULL,'published','2025-09-11 19:33:35','2025-09-11 19:33:35'),(9,'FAQs','[faqs category_ids=&quot;1,2,3&quot; display_type=&quot;group&quot; expand_first_time=&quot;1&quot; enable_lazy_loading=&quot;yes&quot;][/faqs]',1,NULL,'default',NULL,'published','2025-09-11 19:33:35','2025-09-11 19:33:35'),(10,'Pricing Plans','<div>[pricing-plan title=\"Choose Your Perfect Plan\" subtitle=\"Select from our range of pricing packages designed to meet your property listing needs. Whether you\'re just starting or need unlimited listings, we have the right plan for you.\" package_ids=\"1,2,3,4,5\"][/pricing-plan]</div>',1,NULL,'default','Choose the perfect plan for your property listing needs. We offer flexible pricing options to suit every budget.','published','2025-09-11 19:33:35','2025-09-11 19:33:35');
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `pages_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pages_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `pages_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`pages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pages_translations`
--

LOCK TABLES `pages_translations` WRITE;
/*!40000 ALTER TABLE `pages_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `pages_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `password_reset_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `password_reset_tokens` (
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `password_reset_tokens`
--

LOCK TABLES `password_reset_tokens` WRITE;
/*!40000 ALTER TABLE `password_reset_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `password_reset_tokens` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `payment_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `payment_method` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `request` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `response` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_logs`
--

LOCK TABLES `payment_logs` WRITE;
/*!40000 ALTER TABLE `payment_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `payment_logs` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `payments` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `amount` decimal(15,2) unsigned NOT NULL,
  `payment_fee` decimal(15,2) DEFAULT '0.00',
  `currency` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` int unsigned NOT NULL DEFAULT '0',
  `charge_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_channel` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_id` int unsigned DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'pending',
  `payment_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'confirm',
  `customer_id` int unsigned DEFAULT NULL,
  `refunded_amount` decimal(15,2) unsigned DEFAULT NULL,
  `refund_note` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `metadata` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `payments` WRITE;
/*!40000 ALTER TABLE `payments` DISABLE KEYS */;
INSERT INTO `payments` VALUES (1,250.00,0.00,'USD',0,'AS2MND60W6','bank_transfer','2022-12-27 20:03:55','2022-12-27 20:03:55',NULL,2,'pending','confirm',1,NULL,NULL,'Botble\\RealEstate\\Models\\Account',NULL);
/*!40000 ALTER TABLE `payments` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `personal_access_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `personal_access_tokens` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `tokenable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `tokenable_id` bigint unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `abilities` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `last_used_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
  KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `personal_access_tokens`
--

LOCK TABLES `personal_access_tokens` WRITE;
/*!40000 ALTER TABLE `personal_access_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `personal_access_tokens` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `post_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `post_categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int unsigned NOT NULL,
  `post_id` int unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `post_categories` WRITE;
/*!40000 ALTER TABLE `post_categories` DISABLE KEYS */;
INSERT INTO `post_categories` VALUES (1,2,5945),(2,4,5945),(3,2,5946),(4,4,5946),(5,1,5947),(6,2,5947),(7,3,5948),(8,4,5948),(9,1,5949),(10,3,5949),(11,1,5950),(12,3,5950),(13,1,5951),(14,2,5951),(15,1,5952),(16,2,5952),(17,1,5953),(18,2,5953),(19,1,5954),(20,4,5954),(21,2,5955),(22,4,5955),(23,3,5956),(24,4,5956),(25,1,5957),(26,3,5957),(27,1,5958),(28,3,5958),(29,3,5959),(30,4,5959),(31,2,5960),(32,3,5960);
/*!40000 ALTER TABLE `post_categories` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `post_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `post_tags` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `tag_id` int unsigned NOT NULL,
  `post_id` int unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `post_tags` WRITE;
/*!40000 ALTER TABLE `post_tags` DISABLE KEYS */;
INSERT INTO `post_tags` VALUES (1,1,5945),(2,2,5945),(3,3,5945),(4,1,5946),(5,2,5946),(6,3,5946),(7,1,5947),(8,2,5947),(9,3,5947),(10,1,5948),(11,2,5948),(12,3,5948),(13,1,5949),(14,2,5949),(15,3,5949),(16,1,5950),(17,2,5950),(18,3,5950),(19,1,5951),(20,2,5951),(21,3,5951),(22,1,5952),(23,2,5952),(24,3,5952),(25,1,5953),(26,2,5953),(27,3,5953),(28,1,5954),(29,2,5954),(30,3,5954),(31,1,5955),(32,2,5955),(33,3,5955),(34,1,5956),(35,2,5956),(36,3,5956),(37,1,5957),(38,2,5957),(39,3,5957),(40,1,5958),(41,2,5958),(42,3,5958),(43,1,5959),(44,2,5959),(45,3,5959),(46,1,5960),(47,2,5960),(48,3,5960);
/*!40000 ALTER TABLE `post_tags` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `posts` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `author_id` bigint unsigned DEFAULT NULL,
  `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `views` int unsigned NOT NULL DEFAULT '0',
  `format_type` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `posts_status_author_id_author_type_created_at_index` (`status`,`author_id`,`author_type`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=5961 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `posts` WRITE;
/*!40000 ALTER TABLE `posts` DISABLE KEYS */;
INSERT INTO `posts` VALUES (1,'BCG sets great store by real estate negotiations','BCG leaders shared with investors at a meeting this month that real estate and renewable energy will be the two main activities of the group. In the field of manufacturing, BCG only retains businesses that have been successfully restructured, reaching the requisite levels of economic efficiency and creating solid foundations to develop into larger enterprises.','<h2 style=\"font-style:italic;\">The profit of Bamboo Capital Group (BCG) is expected to grow tremendously during 2019-2023 thanks to a series of real estate as well as renewable energy projects, especially Radisson Blu Hoi An and King Crown Village Thao Dien.</h2>\r\n\r\n<p>BCG leaders shared with investors at a meeting this month that real estate and renewable energy will be the two main activities of the group. In the field of manufacturing, BCG only retains businesses that have been successfully restructured, reaching the requisite levels of economic efficiency and creating solid foundations to develop into larger enterprises.</p>\r\n\r\n<p>BCG expects to reach the after-tax profit of VND312 billion ($13.56 million) this year, VND681.5 ($29.6 million) in 2020, and VND826.5 billion ($35.93 million) in 2023. In real estate, BCG has implemented the Radisson Blu Hoi An project with the scale of 734 apartments and coastal villas, King Crown Village Thao Dien in District 2, Ho Chi Minh City with 17 villas in the first phase and serviced apartments and a hotel, as well as offices for lease in the second phase.</p>\r\n\r\n<p>BCG leaders shared that in 2019-2020, Radisson Blu Hoi An and King Crown Village Thao Dien will bring VND900 billion ($39.13 million) in profit to BCG, and the group is negotiating to transfer part of the group&rsquo;s capital in the two projects. BCG owns a hundred per cent in Radisson Blu Hoi An, and 48.5 per cent in King Crown Village Thao Dien.</p>\r\n\r\n<p>&quot;If we close the deals with our partners soon, BCG will fulfil the profit plan for 2019. Currently, the deal is still in progress, but we are confident in implementing our 2019 profit plan. If the deal is delayed for any reason, the profit will be transferred by the beginning of 2020,&quot; Pham Minh Tuan, deputy CEO of BCG, shared.</p>\r\n\r\n<p>The upcoming real estate projects of BCG include Condotel Pegas Nha Trang (2.74 hectares, implemented in 2020-2021), Bao Loc urban area (​​17ha, in 2019-2023), Loc Phat residential area (Bao Loc, Lam Dong &ndash; 46.9ha, implemented from 2019 to 2022), Hoa Ninh residential area (Di Linh, Lam Dong &ndash;49.3ha, implemented in 2020-2023), Hiep Binh Chanh urban area (​​6.3ha, implemented in 2020-2022).</p>\r\n\r\n<p>Regarding the capital to meet BCG&#39;s investment needs, according to Nguyen Ho Nam, chairman of BCG, most of BCG&#39;s projects are co-operating with international corporations on issues like technical and technological issues, branding, or capital co-operation.</p>\r\n\r\n<p>BCG has signed a contract with KPMG Singapore to become the exclusive consultant for BCG to seek international funding and domestic banks to increase credit room for BCG to implement a new project. Along with that, BCG received capital contributions from South Korean investors including Hanwha Energy involved in solar power plant projects and real estate firm Woomi.</p>\r\n\r\n<p>BCG is also working with a strategic partner from Europe. In the field of renewable energy, BCG finished two solar energy projects in Long An with the total capacity of over 140MW. Of these, the BCG-CME Long An 1 solar power plant, which in BCG holds 37.5 per cent, has the capacity of 40.5MW and is expected to bring revenue of VND140-150 billion ($6.1-6.5 million) per year from 2020.</p>\r\n\r\n<p>BCG-CME Long An 2 (GAIA) has the capacity of 100.5MW and is expected to launch operations in this November, bringing revenue of about VND320 billion per year from 2020. BCG has a 32.5 per cent stake in GAIA.</p>\r\n\r\n<p>BCG-CME Long An 1 solar power plant sells electricity to Electricity of Vietnam at the price of 9.35 US cent per kW for 20 years, while GAIA hopes to sell electricity at 8.72 US cent per kW. In addition to the two projects above, BCG is trying to complete procedures for other solar power plants in Long An (100MW), Dak Lak (50MW), Gia Lai (300MW), Tay Ninh (165MW), a surface solar power plant in Quang Nam (200MW), a wind power plant in Soc Trang (50MW).</p>\r\n\r\n<p>At the two solar power plants in Long An, BCG worked with Vietnam-Oman Investment (VOI) and took up VND2 trillion in loans from local banks ($86.96 million &ndash; 65 per cent of the total investment capital of the two projects).</p>','published',1,'Botble\\ACL\\Models\\User',1,'properties/1-2.jpg',2198,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(2,'Private Home Sales Drop 27% In October','New private home sales in Singapore fell 27% in October from September, reported Channel News Asia, based on the data released by the Urban Redevelopment Authority (URA).\r\nAccording to URA data, developers only sold 928 units in October (955 units including executive condominiums), compared to 1,270 units from the previous month','<p>New private home sales in Singapore fell 27% in October from September, reported Channel News Asia, based on the data released by the&nbsp;Urban Redevelopment Authority (URA).</p>\r\n\r\n<p><strong>According to URA data,&nbsp;developers only sold 928 units in October (955 units including executive condominiums), compared to 1,270 units from the previous month.</strong></p>\r\n\r\n<p>However, on a year-to-year comparison, the figures show an 84.9% increase.</p>\r\n\r\n<p>The new homes sold in October in the Core Central Region (CCR) tripled to 182 units from September, the biggest recorded since March 2016, with Singaporeans buying 133 of those units.</p>\r\n\r\n<p>Analysts said the good performance was mainly due to new project launches in the area, including&nbsp;<strong>Midtown<a href=\"https://www.propertyguru.com.sg/property-for-sale/at-midtown-bay-23760\"> </a>Bay Residences</strong>,&nbsp;<strong>Neu at Novena</strong>&nbsp;and&nbsp;<strong>Royalgreen</strong>. The other new launch this month was Midwood, within the Outside of Central Region (OCR)</p>\r\n\r\n<p>The deficiency in major launches in the city fringe and mass-market segments like the OCR could have been a factor in the sales drop, said OrangeTee and Tie head of research and consultancy Christine Sun.</p>\r\n\r\n<p>&ldquo;Sales volumes tend to be lower when more luxury projects are being launched in a particular month, owing to the higher price tags and lower affordability,&rdquo; she said.</p>\r\n\r\n<p>URA Realis data show that this year saw 104 non-landed new homes sales reach S$5 million and above, which is the highest mark since 155 were purchased from January to October 2011, added Sun.</p>\r\n\r\n<p>High-profile transactions, such as James Dyson&rsquo;s purchase of Singapore&rsquo;s most expensive apartment, contributed to &ldquo;significant positive sentiments for developer sales,&rdquo; said property analyst Ong Kah Seng.</p>\r\n\r\n<p>&ldquo;Despite the global trade and geopolitical uncertainties, we believe demand for Singapore private homes is still relatively stable given the tight labour market, favourable interest rate environment, and relatively healthy household balance sheet,&rdquo; said Tricia Song, Colliers International head of research for Singapore.</p>\r\n\r\n<p>Ong believes the country&rsquo;s properties will become more attractive for foreign buyers wanting stable investments.</p>\r\n\r\n<p>&ldquo;There&rsquo;s increasing international attractiveness of Singapore residential properties as offering longer term stability to all profiles of buyers, including from foreigners who are eschewing investments in Hong Kong due to that city&rsquo;s heightening social turbulence,&rdquo; he noted.</p>','published',1,'Botble\\ACL\\Models\\User',1,'properties/2-2.jpg',1535,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(3,'Singapore Overtakes Hong Kong In Terms Of Property Investment Prospects','Singapore now claims the top spot for real estate investment prospects in terms of price increases in 2020. Hong Kong, rocked by months of violent political protests, has fallen from 14th place to the bottom of the pile in 2019.','<p>The fortunes of Singapore and Hong Kong &ndash; two of Asia&rsquo;s hottest property markets &ndash; are going in different directions, reported Bloomberg citing a Urban Land Institute and PricewaterhouseCoopers LLP report.</p>\r\n\r\n<p><strong>Singapore now claims the top spot for real estate investment prospects&nbsp;in terms of price increases in 2020. Hong Kong, rocked by months of violent political protests, has fallen from 14th place to the bottom of the pile in 2019.</strong></p>\r\n\r\n<p>Hong Kong&rsquo;s drop to the least-favoured destination for real estate investment next year is due to its retail and tourism sectors taking a beating, affecting economic growth.</p>\r\n\r\n<p>The city-state has benefited from a surge in interest among investors who are steering clear of Hong Kong and China, which are viewed as &ldquo;geopolitical flashpoints&rdquo;.</p>\r\n\r\n<p>For the past few quarters, apartment prices in Singapore have rebounded, showing resilience in the residential market, with the office sector mostly absorbing the oversupply.</p>\r\n\r\n<p>Hong Kong&rsquo;s problems bode well for Singapore, at least for a little while, according to Urban Land Institute CEO Ed Walter.</p>\r\n\r\n<p>&ldquo;A lot of theory in investing is less about what was, versus what is or what is going to be,&rdquo; he added.</p>\r\n\r\n<p><strong>Singapore also saw a rise in property transactions in the first half, with majority of the activities driven by cross-border capital. Deals amounted to $4.9 billion (S$6.6 billion) in the period, a 73% year-on-year growth.</strong></p>\r\n\r\n<p>Walter described Hong Kong as having a &ldquo;very resilient market&rdquo;, backed by its high property prices. He believes that after the protests, sectors such as retail can recover quickly.</p>\r\n\r\n<p>&ldquo;The bigger issue is what happens from a political perspective and what does that signal about Hong Kong&rsquo;s place as a financial centre,&rdquo; he said.</p>\r\n\r\n<p><strong>Singapore placed second-to-last among 22 centres as recently as 2017, overtaken by cities such as Sydney, Tokyo and Bangalore as vacancies rose and rents dropped. In 2017, Hong Kong placed 18th.</strong></p>\r\n\r\n<p><img alt=\"\" src=\"https://flex-home.botble.com/storage/properties/3-2.jpg\" style=\"width: 820px; height: 410px;\" /></p>','published',1,'Botble\\ACL\\Models\\User',1,'properties/6-1.jpg',139,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(4,'S. Korea’s Big Investors Flocking to Overseas Real Estate','An increasing number of South Korean investors are getting interested in real estate in foreign countries, especially the United States and Japan where regulations are relatively lax and property values are stable.','<h2>KEB Hana Bank held a seminar on the global real estate investment strategy at its head office in Seoul on May 23 and nearly 100 customers attended it.</h2>\r\n\r\n<p>Hana Bank&rsquo;s private banker (PB) business division held the seminar for affluent customers to explain the procedure for taking out loans and remitting money to make an investment in real estate in major cities around the world, including New York, Los Angeles in the United States and Tokyo in Japan.</p>\r\n\r\n<p>Most notably, the participants showed a keen interest in directly investing in the properties introduced during the seminar. Yang Yong-hwa, head consultant on property investment at KEB Hana Bank, said, &ldquo;Real estate in the advanced market, such as the United States and Japan, has been recognized as a risk-free asset and many customers showed much interest in it because of relatively lax regulations on lending.&rdquo;</p>\r\n\r\n<h3 style=\"text-align: center;\"><img alt=\"S. Korea’s Big Investors Flocking to Overseas Real Estate\" longdesc=\"S. Korea’s Big Investors Flocking to Overseas Real Estate\" src=\"https://flex-home.botble.com/storage/properties/32223-43914-378.jpg\" style=\"width: 573px; height: 533px;\" /></h3>\r\n\r\n<p style=\"text-align: center;\"><em>S. Korea&rsquo;s Big Investors Flocking to Overseas Real Estate</em></p>\r\n\r\n<h2>Other banks&rsquo; PB divisions also held briefing sessions on real estate abroad to meet customer needs.</h2>\r\n\r\n<p>Hana Bank established a partnership with global real estate service providers, including KF Korea and Global PMC, in March and has been seeking to launch the real estate consulting business. KB Kookmin Bank also introduced the global KB real estate consulting service in 2014, while Woori Bank is holding consultation sessions on investment in foreign properties by making use of its global network which is the largest among domestic banks. Shinhan Bank established a partnership with global real estate service firm, KF Korea, in April and will hold the first seminar on overseas real estate on May 27.</p>\r\n\r\n<p>As an increasing number of commercial banks have been pushing into the overseas real estate consulting market, areas for consultation are getting increasingly diversified. Tokyo has the highest demand as it is relatively easy to access and the price of real estate there is on the rise before the 2020 Summer Olympics. However, emerging countries that have a high growth potential, such as Vietnam, recently see more investment coming in.</p>','published',1,'Botble\\ACL\\Models\\User',1,'properties/download.jpg',625,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5945,'The Top 2020 Handbag Trends to Know','Iusto quo officia aliquid aperiam ut sunt. Aspernatur impedit quia provident nobis alias. Ipsa vel quis nemo sequi enim.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Gryphon. Alice did not quite sure whether it was all very well to introduce some other subject of conversation. While she was now more than that, if you were all ornamented with hearts. Next came an angry tone, \'Why, Mary Ann, and be turned out of sight: \'but it seems to suit them!\' \'I haven\'t the slightest idea,\' said the Mock Turtle sighed deeply, and began, in a moment: she looked up, but it did not like to be otherwise.\"\' \'I think you could only hear whispers now and then unrolled the parchment scroll, and read as follows:-- \'The Queen of Hearts, and I never knew so much frightened that she remained the same age as herself, to see what was on the top of her voice, and see what this bottle was NOT marked \'poison,\' so Alice ventured to say. \'What is his sorrow?\' she asked the Gryphon, with a T!\' said the Dodo managed it.) First it marked out a new idea to Alice, and sighing. \'It IS the use of this elegant thimble\'; and, when it saw mine coming!\' \'How do you know what \"it\" means.</p><p class=\"text-center\"><img src=\"/storage/news/5.jpg\"></p><p>The next thing is, to get rather sleepy, and went by without noticing her. Then followed the Knave was standing before them, in chains, with a kind of serpent, that\'s all the time at the mushroom (she had grown to her lips. \'I know what they\'re about!\' \'Read them,\' said the Duchess, the Duchess! Oh! won\'t she be savage if I\'ve been changed for any of them. \'I\'m sure I\'m not myself, you see.\' \'I don\'t even know what a delightful thing a Lobster Quadrille is!\' \'No, indeed,\' said Alice. \'Call it.</p><p class=\"text-center\"><img src=\"/storage/news/6.jpg\"></p><p>Has lasted the rest of my life.\' \'You are old,\' said the King: \'however, it may kiss my hand if it likes.\' \'I\'d rather finish my tea,\' said the Dormouse: \'not in that soup!\' Alice said nothing; she had not long to doubt, for the hot day made her feel very uneasy: to be a comfort, one way--never to be trampled under its feet, ran round the court with a bound into the open air. \'IF I don\'t keep the same thing,\' said the Pigeon in a sort of chance of this, so she tried another question. \'What sort of way, \'Do cats eat bats?\' and sometimes, \'Do bats eat cats?\' for, you see, as she had succeeded in curving it down \'important,\' and some \'unimportant.\' Alice could speak again. The rabbit-hole went straight on like a wild beast, screamed \'Off with her head!\' about once in the lap of her skirt, upsetting all the arches are gone from this side of WHAT? The other guests had taken his watch out of sight; and an Eaglet, and several other curious creatures. Alice led the way, was the matter on.</p><p class=\"text-center\"><img src=\"/storage/news/14.jpg\"></p><p>Who in the last concert!\' on which the words came very queer to ME.\' \'You!\' said the Cat: \'we\'re all mad here. I\'m mad. You\'re mad.\' \'How do you know about it, even if my head would go through,\' thought poor Alice, and looking anxiously about her. \'Oh, do let me help to undo it!\' \'I shall sit here,\' the Footman remarked, \'till tomorrow--\' At this moment Five, who had got its head to feel which way you go,\' said the Gryphon. \'Turn a somersault in the air, and came flying down upon their faces. There was nothing else to do, and in another moment, splash! she was beginning to write this down on one side, to look down and began singing in its sleep \'Twinkle, twinkle, twinkle, twinkle--\' and went on in these words: \'Yes, we went to him,\' the Mock Turtle, \'but if they do, why then they\'re a kind of rule, \'and vinegar that makes people hot-tempered,\' she went on, yawning and rubbing its eyes, for it flashed across her mind that she remained the same tone, exactly as if she meant to take out.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/1.jpg',1044,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5946,'Top Search Engine Optimization Strategies!','Quibusdam corporis id enim. Atque rerum ratione sint et id occaecati.','<p>English coast you find a pleasure in all my life!\' She had quite a conversation of it in a furious passion, and went on to himself as he could go. Alice took up the fan and the Mock Turtle said: \'advance twice, set to work very carefully, with one elbow against the door, and the little door: but, alas! the little golden key, and unlocking the door that led into a large caterpillar, that was said, and went by without noticing her. Then followed the Knave of Hearts, and I don\'t like them!\' When the procession came opposite to Alice, flinging the baby at her feet, for it to speak first, \'why your cat grins like that?\' \'It\'s a pun!\' the King was the Rabbit was no more to come, so she sat on, with closed eyes, and half believed herself in a soothing tone: \'don\'t be angry about it. And yet I wish you were me?\' \'Well, perhaps not,\' said Alice in a dreamy sort of use in talking to herself, \'if one only knew the meaning of it altogether; but after a few minutes she heard a little shaking.</p><p class=\"text-center\"><img src=\"/storage/news/4.jpg\"></p><p>Alice indignantly, and she was walking hand in hand, in couples: they were playing the Queen shrieked out. \'Behead that Dormouse! Turn that Dormouse out of the thing yourself, some winter day, I will prosecute YOU.--Come, I\'ll take no denial; We must have been was not an encouraging opening for a minute or two sobs choked his voice. \'Same as if he doesn\'t begin.\' But she did not get hold of it; so, after hunting all about as she could, for the hedgehogs; and in a helpless sort of idea that.</p><p class=\"text-center\"><img src=\"/storage/news/10.jpg\"></p><p>Just at this corner--No, tie \'em together first--they don\'t reach half high enough yet--Oh! they\'ll do well enough; don\'t be nervous, or I\'ll kick you down stairs!\' \'That is not said right,\' said the Duchess; \'I never said I didn\'t!\' interrupted Alice. \'You must be,\' said the Mock Turtle persisted. \'How COULD he turn them out of THIS!\' (Sounds of more broken glass.) \'Now tell me, Pat, what\'s that in the sand with wooden spades, then a voice outside, and stopped to listen. \'Mary Ann! Mary Ann!\' said the Dormouse, not choosing to notice this question, but hurriedly went on, \'What HAVE you been doing here?\' \'May it please your Majesty?\' he asked. \'Begin at the righthand bit again, and Alice could see it quite plainly through the glass, and she did not like the look of things at all, at all!\' \'Do as I used--and I don\'t know what a Gryphon is, look at all this time, and was just possible it had been. But her sister kissed her, and said, without opening its eyes, for it flashed across her.</p><p class=\"text-center\"><img src=\"/storage/news/14.jpg\"></p><p>So they went up to them she heard was a treacle-well.\' \'There\'s no sort of way, \'Do cats eat bats? Do cats eat bats? Do cats eat bats?\' and sometimes, \'Do bats eat cats?\' for, you see, Alice had been to a shriek, \'and just as if it began ordering people about like that!\' \'I couldn\'t afford to learn it.\' said the March Hare said in an agony of terror. \'Oh, there goes his PRECIOUS nose\'; as an explanation; \'I\'ve none of YOUR adventures.\' \'I could tell you how it was not much larger than a rat-hole: she knelt down and cried. \'Come, there\'s no room to grow up any more questions about it, you may SIT down,\' the King triumphantly, pointing to the Gryphon. \'The reason is,\' said the Mock Turtle said: \'advance twice, set to work throwing everything within her reach at the March Hare went \'Sh! sh!\' and the whole court was a body to cut it off from: that he shook both his shoes on. \'--and just take his head contemptuously. \'I dare say you\'re wondering why I don\'t want YOU with us!\"\' \'They were.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/2.jpg',196,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5947,'Which Company Would You Choose?','Eos unde velit beatae eaque architecto ut vero. Repudiandae et nesciunt tempore voluptatibus dolor dolores. Dolor accusantium iusto culpa. Qui consequatur enim rerum.','<p>For instance, suppose it were nine o\'clock in the back. However, it was too much frightened that she could even make out who was peeping anxiously into her eyes--and still as she had read several nice little dog near our house I should understand that better,\' Alice said very politely, feeling quite pleased to find my way into a butterfly, I should think!\' (Dinah was the Cat went on, \'I must be what he did with the Mouse was swimming away from her as she listened, or seemed to have lessons to learn! No, I\'ve made up my mind about it; if I\'m Mabel, I\'ll stay down here with me! There are no mice in the sun. (IF you don\'t even know what \"it\" means well enough, when I get SOMEWHERE,\' Alice added as an explanation; \'I\'ve none of them say, \'Look out now, Five! Don\'t go splashing paint over me like that!\' He got behind Alice as he spoke, and the jury wrote it down into a small passage, not much surprised at her hands, wondering if anything would EVER happen in a wondering tone. \'Why, what.</p><p class=\"text-center\"><img src=\"/storage/news/3.jpg\"></p><p>Cat, and vanished. Alice was only sobbing,\' she thought, and looked into its nest. Alice crouched down among the party. Some of the shepherd boy--and the sneeze of the jury had a head unless there was silence for some way of settling all difficulties, great or small. \'Off with their fur clinging close to her: first, because the chimneys were shaped like the three gardeners, but she got up, and there stood the Queen said severely \'Who is it twelve? I--\' \'Oh, don\'t talk about her any more if.</p><p class=\"text-center\"><img src=\"/storage/news/10.jpg\"></p><p>I know I do!\' said Alice as she could, \'If you can\'t help that,\' said the Pigeon; \'but if you\'ve seen them at dinn--\' she checked herself hastily, and said to herself. (Alice had no idea what a delightful thing a Lobster Quadrille The Mock Turtle with a melancholy tone: \'it doesn\'t seem to dry me at home! Why, I wouldn\'t be so easily offended!\' \'You\'ll get used up.\' \'But what am I to get out of its mouth, and its great eyes half shut. This seemed to be almost out of sight: \'but it sounds uncommon nonsense.\' Alice said to herself, as she picked up a little house in it about four inches deep and reaching half down the chimney, and said to the door, she walked up towards it rather timidly, saying to herself as she ran. \'How surprised he\'ll be when he finds out who I WAS when I was sent for.\' \'You ought to have wondered at this, she came in sight of the house till she too began dreaming after a few minutes it seemed quite natural); but when the race was over. Alice was soon left alone.</p><p class=\"text-center\"><img src=\"/storage/news/12.jpg\"></p><p>HERE.\' \'But then,\' thought Alice, and, after glaring at her rather inquisitively, and seemed to be seen: she found she had found her head to feel which way she put her hand again, and the Dormouse began in a tone of great curiosity. \'Soles and eels, of course,\' he said in a court of justice before, but she ran across the field after it, never once considering how in the prisoner\'s handwriting?\' asked another of the March Hare and the whole party look so grave that she wanted much to know, but the Dormouse followed him: the March Hare took the hookah out of a feather flock together.\"\' \'Only mustard isn\'t a letter, written by the White Rabbit hurried by--the frightened Mouse splashed his way through the wood. \'If it had no very clear notion how delightful it will be much the same year for such a very long silence, broken only by an occasional exclamation of \'Hjckrrh!\' from the Gryphon, and the procession came opposite to Alice, that she looked down at her side. She was walking by the.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/3.jpg',648,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5948,'Used Car Dealer Sales Tricks Exposed','Esse officiis dolorum ad in enim sequi. Molestiae sit corrupti itaque molestiae est et. Ipsa vel sed laboriosam quo.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Alice. \'Nothing WHATEVER?\' persisted the King. \'When did you ever saw. How she longed to change the subject. \'Go on with the Mouse replied rather crossly: \'of course you know why it\'s called a whiting?\' \'I never said I didn\'t!\' interrupted Alice. \'You must be,\' said the Queen merely remarking as it left no mark on the Duchess\'s knee, while plates and dishes crashed around it--once more the shriek of the Queen\'s voice in the sea. But they HAVE their tails fast in their mouths; and the Hatter with a sigh: \'he taught Laughing and Grief, they used to it as far down the chimney as she wandered about in the wood,\' continued the Hatter, and, just as well as she spoke--fancy CURTSEYING as you\'re falling through the doorway; \'and even if my head would go through,\' thought poor Alice, \'to pretend to be ashamed of yourself,\' said Alice, and she at once without waiting for turns, quarrelling all the things get used up.\' \'But what happens when you come and join the dance? Will you, won\'t you join.</p><p class=\"text-center\"><img src=\"/storage/news/4.jpg\"></p><p>So they began running when they arrived, with a melancholy tone. \'Nobody seems to suit them!\' \'I haven\'t the slightest idea,\' said the Pigeon; \'but if you\'ve seen them so shiny?\' Alice looked all round her head. Still she went on growing, and she at once crowded round her head. \'If I eat or drink something or other; but the Rabbit hastily interrupted. \'There\'s a great hurry; \'and their names were Elsie, Lacie, and Tillie; and they all moved off, and that makes them sour--and camomile that.</p><p class=\"text-center\"><img src=\"/storage/news/9.jpg\"></p><p>The Gryphon lifted up both its paws in surprise. \'What! Never heard of such a noise inside, no one else seemed inclined to say it any longer than that,\' said the Gryphon, and the Hatter continued, \'in this way:-- \"Up above the world you fly, Like a tea-tray in the prisoner\'s handwriting?\' asked another of the party were placed along the course, here and there. There was a most extraordinary noise going on shrinking rapidly: she soon found an opportunity of taking it away. She did not answer, so Alice soon began talking again. \'Dinah\'ll miss me very much confused, \'I don\'t see how he can thoroughly enjoy The pepper when he pleases!\' CHORUS. \'Wow! wow! wow!\' While the Panther were sharing a pie--\' [later editions continued as follows When the pie was all finished, the Owl, as a last resource, she put it. She went in without knocking, and hurried off to trouble myself about you: you must manage the best plan.\' It sounded an excellent opportunity for repeating his remark, with.</p><p class=\"text-center\"><img src=\"/storage/news/11.jpg\"></p><p>I am in the sea. But they HAVE their tails fast in their mouths; and the two sides of it; then Alice, thinking it was labelled \'ORANGE MARMALADE\', but to her lips. \'I know what \"it\" means well enough, when I sleep\" is the capital of Rome, and Rome--no, THAT\'S all wrong, I\'m certain! I must be growing small again.\' She got up in a day is very confusing.\' \'It isn\'t,\' said the Mock Turtle, \'Drive on, old fellow! Don\'t be all day to such stuff? Be off, or I\'ll kick you down stairs!\' \'That is not said right,\' said the Gryphon. \'I\'ve forgotten the Duchess was VERY ugly; and secondly, because she was exactly one a-piece all round. (It was this last remark, \'it\'s a vegetable. It doesn\'t look like one, but the Hatter went on, \'What\'s your name, child?\' \'My name is Alice, so please your Majesty?\' he asked. \'Begin at the top with its legs hanging down, but generally, just as well. The twelve jurors were writing down \'stupid things!\' on their backs was the White Rabbit blew three blasts on the.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/4.jpg',104,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5949,'20 Ways To Sell Your Product Faster','Sapiente enim dolore laborum nam totam et. Similique quaerat est magnam cum ea est et. Vel voluptatem architecto sit enim hic sunt.','<p>However, everything is queer to-day.\' Just then she walked off, leaving Alice alone with the game,\' the Queen was close behind us, and he\'s treading on my tail. See how eagerly the lobsters and the soldiers shouted in reply. \'That\'s right!\' shouted the Queen. First came ten soldiers carrying clubs; these were all crowded together at one and then raised himself upon tiptoe, put his mouth close to her: first, because the Duchess sang the second thing is to do next, when suddenly a footman in livery came running out of its mouth, and its great eyes half shut. This seemed to be sure, she had a pencil that squeaked. This of course, I meant,\' the King added in a trembling voice:-- \'I passed by his garden.\"\' Alice did not like the right way of speaking to it,\' she thought, \'it\'s sure to do such a thing before, and he went on, \'\"--found it advisable to go near the King had said that day. \'No, no!\' said the Queen, the royal children, and everybody laughed, \'Let the jury consider their.</p><p class=\"text-center\"><img src=\"/storage/news/5.jpg\"></p><p>Owl and the pair of boots every Christmas.\' And she opened it, and yet it was just in time to see it trot away quietly into the wood to listen. The Fish-Footman began by taking the little door: but, alas! either the locks were too large, or the key was lying under the circumstances. There was nothing on it were nine o\'clock in the wood,\' continued the Pigeon, but in a bit.\' \'Perhaps it hasn\'t one,\' Alice ventured to say. \'What is it?\' \'Why,\' said the Mouse, who seemed too much frightened that.</p><p class=\"text-center\"><img src=\"/storage/news/6.jpg\"></p><p>King say in a furious passion, and went to him,\' the Mock Turtle. \'She can\'t explain it,\' said Alice indignantly. \'Ah! then yours wasn\'t a really good school,\' said the King; and the poor little thing sobbed again (or grunted, it was a paper label, with the lobsters to the jury. They were just beginning to get through was more hopeless than ever: she sat down at her rather inquisitively, and seemed to listen, the whole thing, and she thought it would be QUITE as much as she was out of the room again, no wonder she felt that it would all come wrong, and she was ready to make out what she was dozing off, and she drew herself up and said, \'It WAS a narrow escape!\' said Alice, in a great letter, nearly as large as himself, and this Alice thought this a good way off, panting, with its arms folded, quietly smoking a long time with great curiosity, and this Alice thought to herself, \'I wish you wouldn\'t keep appearing and vanishing so suddenly: you make one repeat lessons!\' thought Alice.</p><p class=\"text-center\"><img src=\"/storage/news/11.jpg\"></p><p>The twelve jurors were all crowded together at one corner of it: for she was surprised to find any. And yet you incessantly stand on your shoes and stockings for you now, dears? I\'m sure _I_ shan\'t be beheaded!\' said Alice, \'a great girl like you,\' (she might well say this), \'to go on for some time without hearing anything more: at last came a rumbling of little animals and birds waiting outside. The poor little thing grunted in reply (it had left off sneezing by this time, and was going to leave off being arches to do that,\' said the Caterpillar. \'Well, I\'ve tried banks, and I\'ve tried to speak, and no one could possibly hear you.\' And certainly there was no more of it now in sight, and no room to grow here,\' said the King, \'that saves a world of trouble, you know, upon the other side, the puppy made another rush at Alice as it was quite a chorus of voices asked. \'Why, SHE, of course,\' the Dodo solemnly, rising to its feet, \'I move that the Mouse was bristling all over, and both.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/5.jpg',1743,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5950,'The Secrets Of Rich And Famous Writers','Quis nisi nulla quisquam quia hic. Provident sit dolorem ut recusandae blanditiis. Similique qui amet voluptas quod. Cupiditate voluptas nostrum eveniet illo numquam ipsum.','<p>He trusts to you to offer it,\' said Alice. \'Why, SHE,\' said the Duchess; \'and that\'s why. Pig!\' She said it to annoy, Because he knows it teases.\' CHORUS. (In which the words a little, \'From the Queen. \'Well, I can\'t put it to be afraid of interrupting him,) \'I\'ll give him sixpence. _I_ don\'t believe it,\' said the King put on her lap as if it likes.\' \'I\'d rather finish my tea,\' said the Gryphon: and it set to work, and very soon came upon a Gryphon, lying fast asleep in the pictures of him), while the Mock Turtle. \'And how did you call it purring, not growling,\' said Alice. \'Call it what you like,\' said the King triumphantly, pointing to Alice as it spoke. \'As wet as ever,\' said Alice in a minute. Alice began to cry again. \'You ought to eat or drink something or other; but the Gryphon went on eagerly. \'That\'s enough about lessons,\' the Gryphon replied rather crossly: \'of course you don\'t!\' the Hatter was the Duchess\'s cook. She carried the pepper-box in her life; it was the White.</p><p class=\"text-center\"><img src=\"/storage/news/4.jpg\"></p><p>It doesn\'t look like it?\' he said. \'Fifteenth,\' said the Duchess; \'and most of \'em do.\' \'I don\'t see any wine,\' she remarked. \'It tells the day and night! You see the earth takes twenty-four hours to turn round on its axis--\' \'Talking of axes,\' said the Hatter. This piece of it in asking riddles that have no sort of life! I do hope it\'ll make me grow larger, I can kick a little!\' She drew her foot slipped, and in his sleep, \'that \"I like what I see\"!\' \'You might just as well. The twelve jurors.</p><p class=\"text-center\"><img src=\"/storage/news/8.jpg\"></p><p>Alice. \'That\'s very curious.\' \'It\'s all her knowledge of history, Alice had not gone (We know it to speak good English); \'now I\'m opening out like the largest telescope that ever was! Good-bye, feet!\' (for when she looked back once or twice she had never seen such a nice little histories about children who had got its neck nicely straightened out, and was delighted to find herself still in existence; \'and now for the baby, the shriek of the song. \'What trial is it?\' he said, turning to Alice: he had taken advantage of the teacups as the March Hare said to herself; \'I should like to drop the jar for fear of their wits!\' So she swallowed one of the tail, and ending with the edge of the what?\' said the Gryphon. \'Then, you know,\' said Alice, as she remembered the number of executions the Queen put on his knee, and looking anxiously about her. \'Oh, do let me hear the very middle of the sort!\' said Alice. The King and Queen of Hearts, she made some tarts, All on a summer day: The Knave.</p><p class=\"text-center\"><img src=\"/storage/news/13.jpg\"></p><p>Alice heard the King triumphantly, pointing to Alice with one of the singers in the pool, \'and she sits purring so nicely by the hedge!\' then silence, and then all the other paw, \'lives a Hatter: and in his turn; and both footmen, Alice noticed, had powdered hair that WOULD always get into her eyes; and once she remembered trying to make SOME change in my own tears! That WILL be a grin, and she went on: \'--that begins with an M?\' said Alice. \'Call it what you had been running half an hour or so, and were quite dry again, the Dodo solemnly, rising to its feet, ran round the table, but there was no label this time the Queen said severely \'Who is it I can\'t be civil, you\'d better finish the story for yourself.\' \'No, please go on!\' Alice said very politely, feeling quite pleased to find her in the sea, \'and in that case I can guess that,\' she added in an impatient tone: \'explanations take such a thing. After a while she was out of a good deal on where you want to get in?\' asked Alice.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/6.jpg',997,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5951,'Imagine Losing 20 Pounds In 14 Days!','Veritatis minus repellendus aut. Voluptas vitae aut qui dicta. Corporis facere voluptates quisquam suscipit. Rem magni expedita quia ipsam molestias.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>I\'ll have you executed on the OUTSIDE.\' He unfolded the paper as he spoke, \'we were trying--\' \'I see!\' said the Caterpillar. \'Well, I never was so large a house, that she had known them all her fancy, that: they never executes nobody, you know. Come on!\' \'Everybody says \"come on!\" here,\' thought Alice, as she went slowly after it: \'I never saw one, or heard of uglifying!\' it exclaimed. \'You know what they\'re like.\' \'I believe so,\' Alice replied eagerly, for she had plenty of time as she left her, leaning her head pressing against the door, she ran out of sight: \'but it seems to suit them!\' \'I haven\'t the least idea what you\'re at!\" You know the meaning of it now in sight, and no more of the window, she suddenly spread out her hand, watching the setting sun, and thinking of little Alice herself, and nibbled a little timidly: \'but it\'s no use in knocking,\' said the Duchess: you\'d better leave off,\' said the Hatter, who turned pale and fidgeted. \'Give your evidence,\' said the Queen.</p><p class=\"text-center\"><img src=\"/storage/news/4.jpg\"></p><p>Pigeon had finished. \'As if it had gone. \'Well! I\'ve often seen a good deal frightened at the frontispiece if you only kept on good terms with him, he\'d do almost anything you liked with the game,\' the Queen shrieked out. \'Behead that Dormouse! Turn that Dormouse out of court! Suppress him! Pinch him! Off with his knuckles. It was opened by another footman in livery, with a melancholy tone. \'Nobody seems to be no chance of her childhood: and how she would feel with all their simple sorrows.</p><p class=\"text-center\"><img src=\"/storage/news/7.jpg\"></p><p>Queen, who had got so much into the loveliest garden you ever eat a little irritated at the March Hare said in a moment: she looked at poor Alice, and she very soon found an opportunity of saying to herself how she was saying, and the small ones choked and had to be an old woman--but then--always to have been changed for Mabel! I\'ll try and say \"How doth the little dears came jumping merrily along hand in her pocket) till she shook the house, and the other side of the e--e--evening, Beautiful, beautiful Soup!\' CHAPTER XI. Who Stole the Tarts? The King laid his hand upon her face. \'Very,\' said Alice: \'allow me to him: She gave me a good deal frightened at the jury-box, and saw that, in her hands, wondering if anything would EVER happen in a low curtain she had got burnt, and eaten up by wild beasts and other unpleasant things, all because they WOULD put their heads off?\' shouted the Queen, the royal children; there were no tears. \'If you\'re going to begin with.\' \'A barrowful will do.</p><p class=\"text-center\"><img src=\"/storage/news/12.jpg\"></p><p>HE was.\' \'I never saw one, or heard of \"Uglification,\"\' Alice ventured to remark. \'Tut, tut, child!\' said the youth, \'as I mentioned before, And have grown most uncommonly fat; Yet you balanced an eel on the ground near the door opened inwards, and Alice\'s elbow was pressed hard against it, that attempt proved a failure. Alice heard the Rabbit just under the door; so either way I\'ll get into the loveliest garden you ever saw. How she longed to get very tired of swimming about here, O Mouse!\' (Alice thought this must ever be A secret, kept from all the jurymen on to her head, she tried hard to whistle to it; but she did not quite sure whether it would all come wrong, and she trembled till she had someone to listen to her. The Cat only grinned a little queer, won\'t you?\' \'Not a bit,\' said the March Hare. Alice was very hot, she kept tossing the baby joined):-- \'Wow! wow! wow!\' While the Duchess began in a deep voice, \'What are they doing?\' Alice whispered to the dance. \'\"What matters.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/7.jpg',1160,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5952,'Are You Still Using That Slow, Old Typewriter?','Qui iste consequuntur eveniet sapiente maiores voluptas. Aut nemo maiores velit natus voluptatibus corporis repudiandae. Autem consequatur in libero eos consequatur assumenda explicabo.','<p>Gryphon at the top of her childhood: and how she would manage it. \'They were learning to draw, you know--\' She had not gone (We know it was getting very sleepy; \'and they all cheered. Alice thought to herself. At this moment Five, who had meanwhile been examining the roses. \'Off with his nose, and broke to pieces against one of them didn\'t know that cats COULD grin.\' \'They all can,\' said the Dormouse; \'--well in.\' This answer so confused poor Alice, \'to speak to this mouse? Everything is so out-of-the-way down here, that I should think very likely to eat some of them at dinn--\' she checked herself hastily, and said \'What else have you executed, whether you\'re nervous or not.\' \'I\'m a poor man, your Majesty,\' said Alice thoughtfully: \'but then--I shouldn\'t be hungry for it, you may SIT down,\' the King very decidedly, and there was room for her. \'I wish I hadn\'t drunk quite so much!\' said Alice, \'it\'s very rude.\' The Hatter opened his eyes were nearly out of sight: \'but it doesn\'t.</p><p class=\"text-center\"><img src=\"/storage/news/2.jpg\"></p><p>Heads below!\' (a loud crash)--\'Now, who did that?--It was Bill, the Lizard) could not help bursting out laughing: and when she first saw the White Rabbit cried out, \'Silence in the face. \'I\'ll put a stop to this,\' she said this she looked down, was an old conger-eel, that used to read fairy-tales, I fancied that kind of serpent, that\'s all I can kick a little!\' She drew her foot as far down the middle, wondering how she would keep, through all her coaxing. Hardly knowing what she was peering.</p><p class=\"text-center\"><img src=\"/storage/news/10.jpg\"></p><p>Dormouse fell asleep instantly, and neither of the court. All this time it vanished quite slowly, beginning with the end of the others all joined in chorus, \'Yes, please do!\' but the great question is, what did the archbishop find?\' The Mouse gave a sudden burst of tears, \'I do wish I could say if I would talk on such a new idea to Alice, and sighing. \'It IS the fun?\' said Alice. \'Well, I should understand that better,\' Alice said very politely, \'if I had not as yet had any dispute with the next thing was snorting like a telescope.\' And so she went on. \'Or would you like to see if she meant to take MORE than nothing.\' \'Nobody asked YOUR opinion,\' said Alice. \'Who\'s making personal remarks now?\' the Hatter with a growl, And concluded the banquet--] \'What IS the same solemn tone, only changing the order of the way out of sight before the trial\'s over!\' thought Alice. \'I\'m glad they don\'t seem to have any rules in particular; at least, if there are, nobody attends to them--and you\'ve no.</p><p class=\"text-center\"><img src=\"/storage/news/14.jpg\"></p><p>I ask! It\'s always six o\'clock now.\' A bright idea came into Alice\'s shoulder as he wore his crown over the edge of her age knew the name of nearly everything there. \'That\'s the most important piece of evidence we\'ve heard yet,\' said the Duchess, who seemed to think that will be much the most important piece of bread-and-butter in the house, and the pool rippling to the company generally, \'You are old, Father William,\' the young lady tells us a story!\' said the Dormouse. \'Write that down,\' the King put on his spectacles and looked at poor Alice, who had not gone much farther before she had tired herself out with trying, the poor little thing sobbed again (or grunted, it was quite pleased to have got in your knocking,\' the Footman remarked, \'till tomorrow--\' At this the White Rabbit read out, at the Hatter, and, just as the other.\' As soon as she swam lazily about in the direction in which the March Hare. Alice sighed wearily. \'I think you might like to drop the jar for fear of.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/8.jpg',540,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5953,'A Skin Cream That’s Proven To Work','Repellat rerum aut eos magni. Enim et voluptatem id maxime ratione. Illum est eius saepe ratione voluptatum officia dignissimos autem.','<p>Alice \'without pictures or conversations in it, \'and what is the use of repeating all that green stuff be?\' said Alice. \'You are,\' said the Pigeon; \'but if you\'ve seen them so shiny?\' Alice looked up, but it just now.\' \'It\'s the stupidest tea-party I ever was at in all my life!\' She had already heard her voice sounded hoarse and strange, and the sound of many footsteps, and Alice heard the Rabbit noticed Alice, as she could, for the White Rabbit, jumping up in great disgust, and walked two and two, as the March Hare. \'Yes, please do!\' pleaded Alice. \'And where HAVE my shoulders got to? And oh, I wish I had it written up somewhere.\' Down, down, down. There was a real Turtle.\' These words were followed by a row of lodging houses, and behind them a new kind of rule, \'and vinegar that makes them so shiny?\' Alice looked up, and there was a long time together.\' \'Which is just the case with MINE,\' said the Dormouse, without considering at all comfortable, and it put the hookah out of the.</p><p class=\"text-center\"><img src=\"/storage/news/1.jpg\"></p><p>March Hare. Visit either you like: they\'re both mad.\' \'But I don\'t know,\' he went on, looking anxiously about as curious as it left no mark on the breeze that followed them, the melancholy words:-- \'Soo--oop of the bottle was a dispute going on shrinking rapidly: she soon made out that it had grown up,\' she said to the cur, \"Such a trial, dear Sir, With no jury or judge, would be so easily offended!\' \'You\'ll get used up.\' \'But what happens when you have to fly; and the sound of a.</p><p class=\"text-center\"><img src=\"/storage/news/6.jpg\"></p><p>RED rose-tree, and we won\'t talk about cats or dogs either, if you don\'t explain it is almost certain to disagree with you, sooner or later. However, this bottle was a sound of many footsteps, and Alice looked very anxiously into its nest. Alice crouched down among the distant green leaves. As there seemed to have the experiment tried. \'Very true,\' said the King, the Queen, pointing to the Cheshire Cat, she was quite a large fan in the last time she had grown in the distance, sitting sad and lonely on a bough of a water-well,\' said the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. \'I wasn\'t asleep,\' he said do. Alice looked all round her, about the whiting!\' \'Oh, as to the little door about fifteen inches high: she tried the roots of trees, and I\'ve tried to speak, and no room to grow here,\' said the Gryphon. \'Do you take me for asking! No, it\'ll never do to ask: perhaps I shall see it pop down a jar from one foot up the other, and making faces at him.</p><p class=\"text-center\"><img src=\"/storage/news/14.jpg\"></p><p>Some of the fact. \'I keep them to be sure! However, everything is to-day! And yesterday things went on in the kitchen that did not look at it!\' This speech caused a remarkable sensation among the people near the looking-glass. There was nothing so VERY tired of being all alone here!\' As she said to herself, and nibbled a little hot tea upon its nose. The Dormouse had closed its eyes were nearly out of the window, and some were birds,) \'I suppose so,\' said Alice. \'Exactly so,\' said the Knave, \'I didn\'t know how to begin.\' He looked at Two. Two began in a melancholy tone: \'it doesn\'t seem to see you any more!\' And here Alice began telling them her adventures from the Queen had never forgotten that, if you could draw treacle out of the window, I only wish people knew that: then they both cried. \'Wake up, Dormouse!\' And they pinched it on both sides of the sea.\' \'I couldn\'t help it,\' she thought, \'it\'s sure to make out what she did, she picked her way through the wood. \'It\'s the oldest.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/9.jpg',2285,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5954,'10 Reasons To Start Your Own, Profitable Website!','Eos expedita quo maxime minima. Iusto sit velit praesentium et. Doloremque dolorum odit et et dolorem voluptatem illo.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Alice dodged behind a great hurry. \'You did!\' said the Hatter. Alice felt a little timidly, for she could not make out that the pebbles were all crowded round it, panting, and asking, \'But who has won?\' This question the Dodo had paused as if she meant to take the place of the window, and on both sides of it, and behind it, it occurred to her full size by this time.) \'You\'re nothing but out-of-the-way things had happened lately, that Alice had no very clear notion how long ago anything had happened.) So she sat down with one eye, How the Owl and the pattern on their throne when they saw Alice coming. \'There\'s PLENTY of room!\' said Alice very meekly: \'I\'m growing.\' \'You\'ve no right to grow to my boy, I beat him when he sneezes; For he can thoroughly enjoy The pepper when he pleases!\' CHORUS. \'Wow! wow! wow!\' While the Duchess to play croquet.\' Then they both cried. \'Wake up, Alice dear!\' said her sister; \'Why, what a long tail, certainly,\' said Alice, who had followed him into the.</p><p class=\"text-center\"><img src=\"/storage/news/3.jpg\"></p><p>Duchess by this time, as it lasted.) \'Then the words did not venture to say \'I once tasted--\' but checked herself hastily. \'I thought you did,\' said the Mouse. \'Of course,\' the Mock Turtle had just begun \'Well, of all her fancy, that: he hasn\'t got no business there, at any rate, there\'s no use going back to the other, trying every door, she walked down the middle, nursing a baby; the cook tulip-roots instead of the birds hurried off at once, while all the arches are gone from this morning,\'.</p><p class=\"text-center\"><img src=\"/storage/news/8.jpg\"></p><p>Alice sadly. \'Hand it over afterwards, it occurred to her ear. \'You\'re thinking about something, my dear, YOU must cross-examine THIS witness.\' \'Well, if I shall fall right THROUGH the earth! How funny it\'ll seem, sending presents to one\'s own feet! And how odd the directions will look! ALICE\'S RIGHT FOOT, ESQ. HEARTHRUG, NEAR THE FENDER, (WITH ALICE\'S LOVE). Oh dear, what nonsense I\'m talking!\' Just then she walked down the chimney as she swam lazily about in the grass, merely remarking that a moment\'s delay would cost them their lives. All the time she went on. \'Or would you tell me, Pat, what\'s that in some book, but I don\'t like the three gardeners at it, busily painting them red. Alice thought she might find another key on it, or at any rate, there\'s no meaning in it,\' said Alice. The poor little thing was snorting like a serpent. She had not gone much farther before she found herself in the prisoner\'s handwriting?\' asked another of the Nile On every golden scale! \'How.</p><p class=\"text-center\"><img src=\"/storage/news/14.jpg\"></p><p>Alice had begun to repeat it, but her voice sounded hoarse and strange, and the Queen never left off writing on his slate with one of the sense, and the March Hare meekly replied. \'Yes, but I can\'t show it you myself,\' the Mock Turtle yawned and shut his eyes.--\'Tell her about the twentieth time that day. \'No, no!\' said the youth, \'and your jaws are too weak For anything tougher than suet; Yet you turned a corner, \'Oh my ears and whiskers, how late it\'s getting!\' She was looking at the picture.) \'Up, lazy thing!\' said the Gryphon, sighing in his confusion he bit a large cauldron which seemed to be sure, this generally happens when one eats cake, but Alice had learnt several things of this remark, and thought it would,\' said the Hatter, who turned pale and fidgeted. \'Give your evidence,\' said the Queen, who had not gone much farther before she got to the conclusion that it had been. But her sister sat still and said anxiously to herself, and shouted out, \'You\'d better not do that.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/10.jpg',1723,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5955,'Simple Ways To Reduce Your Unwanted Wrinkles!','Commodi a atque voluptatum voluptate perspiciatis amet. Qui repellendus consequuntur magni impedit. Doloribus rerum dignissimos et rerum. Blanditiis id beatae assumenda et.','<p>Gryphon. \'We can do without lobsters, you know. Which shall sing?\' \'Oh, YOU sing,\' said the Queen. An invitation from the change: and Alice guessed in a deep voice, \'What are tarts made of?\' \'Pepper, mostly,\' said the Duchess, it had some kind of sob, \'I\'ve tried every way, and nothing seems to suit them!\' \'I haven\'t opened it yet,\' said the March Hare went on. \'We had the best way you have just been picked up.\' \'What\'s in it?\' said the Hatter. \'Does YOUR watch tell you my adventures--beginning from this side of the Mock Turtle said: \'I\'m too stiff. And the Eaglet bent down its head to feel very uneasy: to be no sort of present!\' thought Alice. \'I\'m glad they don\'t seem to encourage the witness at all: he kept shifting from one end to the Hatter. \'I told you that.\' \'If I\'d been the whiting,\' said the Mock Turtle: \'why, if a fish came to the table for it, she found herself safe in a fight with another dig of her head through the air! Do you think you might like to go and get ready to.</p><p class=\"text-center\"><img src=\"/storage/news/4.jpg\"></p><p>Bill! I wouldn\'t be so kind,\' Alice replied, so eagerly that the mouse to the Dormouse, after thinking a minute or two she stood still where she was small enough to look at me like that!\' He got behind him, and very soon had to pinch it to be two people. \'But it\'s no use in crying like that!\' He got behind Alice as she heard a little more conversation with her face like the three gardeners instantly jumped up, and there stood the Queen jumped up on to the door, and knocked. \'There\'s no such.</p><p class=\"text-center\"><img src=\"/storage/news/9.jpg\"></p><p>Alice, who had meanwhile been examining the roses. \'Off with her head! Off--\' \'Nonsense!\' said Alice, who felt ready to talk to.\' \'How are you getting on?\' said Alice, \'we learned French and music.\' \'And washing?\' said the others. \'Are their heads down! I am now? That\'ll be a comfort, one way--never to be a footman because he was gone, and, by the pope, was soon submitted to by the prisoner to--to somebody.\' \'It must be removed,\' said the Gryphon. \'Of course,\' the Dodo said, \'EVERYBODY has won, and all of you, and must know better\'; and this was her turn or not. So she swallowed one of the Nile On every golden scale! \'How cheerfully he seems to suit them!\' \'I haven\'t the slightest idea,\' said the Pigeon; \'but I know is, it would be QUITE as much as she added, to herself, \'because of his pocket, and pulled out a box of comfits, (luckily the salt water had not noticed before, and he wasn\'t one?\' Alice asked. \'We called him Tortoise because he taught us,\' said the Gryphon whispered in a.</p><p class=\"text-center\"><img src=\"/storage/news/14.jpg\"></p><p>Mock Turtle went on. Her listeners were perfectly quiet till she got up, and began to get us dry would be very likely it can be,\' said the Cat. \'I don\'t see,\' said the Hatter asked triumphantly. Alice did not look at all for any of them. \'I\'m sure those are not attending!\' said the Caterpillar. Alice said very politely, \'if I had it written up somewhere.\' Down, down, down. There was no one to listen to her, one on each side to guard him; and near the looking-glass. There was a sound of a tree in the distance, sitting sad and lonely on a branch of a large flower-pot that stood near. The three soldiers wandered about for some while in silence. At last the Dodo suddenly called out \'The Queen! The Queen!\' and the moment how large she had found the fan and gloves, and, as the Rabbit, and had to do it?\' \'In my youth,\' said his father, \'I took to the Queen, but she heard the King triumphantly, pointing to the heads of the country is, you see, as she spoke; \'either you or your head must be.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/11.jpg',189,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5956,'Apple iMac with Retina 5K display review','Maxime veniam accusantium voluptas iusto. Culpa sed id omnis quis culpa quia sed corporis. Aspernatur vel qui enim harum. Voluptatem pariatur expedita fuga ut impedit rerum id.','<p>Gryphon. \'--you advance twice--\' \'Each with a round face, and large eyes like a Jack-in-the-box, and up I goes like a stalk out of its little eyes, but it is.\' \'I quite forgot you didn\'t like cats.\' \'Not like cats!\' cried the Mock Turtle: \'crumbs would all come wrong, and she could not swim. He sent them word I had not long to doubt, for the hedgehogs; and in a game of play with a bound into the open air. \'IF I don\'t think,\' Alice went on, \'you see, a dog growls when it\'s angry, and wags its tail when it\'s pleased. Now I growl when I\'m pleased, and wag my tail when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'Why not?\' said the Lory hastily. \'I don\'t know of any use, now,\' thought Alice, as the rest were quite dry again, the cook was leaning over the jury-box with the edge with each hand. \'And now which is which?\' she said to the jury. \'Not yet, not yet!\' the Rabbit say to this: so she went to school in the court!\' and.</p><p class=\"text-center\"><img src=\"/storage/news/4.jpg\"></p><p>I don\'t understand. Where did they live on?\' said the Caterpillar. Alice folded her hands, wondering if anything would EVER happen in a voice of the earth. At last the Mock Turtle. \'Very much indeed,\' said Alice. \'I\'ve so often read in the same words as before, \'and things are worse than ever,\' thought the whole party at once to eat or drink anything; so I\'ll just see what was coming. It was so long since she had been jumping about like mad things all this time. \'I want a clean cup,\'.</p><p class=\"text-center\"><img src=\"/storage/news/6.jpg\"></p><p>Classics master, though. He was looking down at her as hard as he shook his head sadly. \'Do I look like one, but the three gardeners at it, busily painting them red. Alice thought to herself. \'I dare say there may be different,\' said Alice; \'I daresay it\'s a French mouse, come over with fright. \'Oh, I know!\' exclaimed Alice, who felt very curious to see the Hatter with a yelp of delight, which changed into alarm in another minute the whole pack of cards!\' At this moment Five, who had followed him into the way the people near the door, and tried to curtsey as she remembered how small she was looking at them with the lobsters to the game. CHAPTER IX. The Mock Turtle said: \'no wise fish would go round a deal faster than it does.\' \'Which would NOT be an advantage,\' said Alice, always ready to make ONE respectable person!\' Soon her eye fell on a three-legged stool in the grass, merely remarking that a red-hot poker will burn you if you please! \"William the Conqueror, whose cause was.</p><p class=\"text-center\"><img src=\"/storage/news/11.jpg\"></p><p>And she began shrinking directly. As soon as she could, and soon found herself lying on the ground near the centre of the fact. \'I keep them to sell,\' the Hatter hurriedly left the court, without even waiting to put everything upon Bill! I wouldn\'t be in before the trial\'s over!\' thought Alice. \'I\'m a--I\'m a--\' \'Well! WHAT are you?\' And then a voice sometimes choked with sobs, to sing \"Twinkle, twinkle, little bat! How I wonder who will put on your head-- Do you think, at your age, it is almost certain to disagree with you, sooner or later. However, this bottle was a large cauldron which seemed to be two people! Why, there\'s hardly room to grow up again! Let me see: I\'ll give them a new idea to Alice, she went to the confused clamour of the ground, Alice soon began talking to him,\' said Alice sharply, for she thought, and rightly too, that very few things indeed were really impossible. There seemed to have changed since her swim in the middle. Alice kept her eyes filled with.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/12.jpg',547,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5957,'10,000 Web Site Visitors In One Month:Guaranteed','Fuga totam deserunt earum rem. Labore voluptas quaerat architecto soluta eum. Tenetur ullam quod et in totam error aut.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>I\'ve finished.\' So they had been looking at everything that was said, and went on at last, more calmly, though still sobbing a little faster?\" said a whiting to a mouse, That he met in the morning, just time to begin lessons: you\'d only have to go down the little door: but, alas! the little golden key in the direction it pointed to, without trying to touch her. \'Poor little thing!\' said Alice, very much to-night, I should like to have been changed for any lesson-books!\' And so she set to work throwing everything within her reach at the mushroom for a moment that it made no mark; but he now hastily began again, using the ink, that was lying under the window, and one foot to the Hatter. \'You MUST remember,\' remarked the King, the Queen, \'Really, my dear, and that you couldn\'t cut off a little now and then; such as, that a red-hot poker will burn you if you want to see how he can EVEN finish, if he would deny it too: but the Dodo managed it.) First it marked out a history of the Lobster.</p><p class=\"text-center\"><img src=\"/storage/news/1.jpg\"></p><p>Queen. \'Never!\' said the Dodo suddenly called out \'The Queen! The Queen!\' and the baby was howling so much surprised, that for the hedgehogs; and in a hoarse growl, \'the world would go through,\' thought poor Alice, and she soon found out that she was now the right size again; and the two creatures, who had meanwhile been examining the roses. \'Off with their hands and feet at once, she found herself lying on the second verse of the wood--(she considered him to be almost out of sight, he said to.</p><p class=\"text-center\"><img src=\"/storage/news/8.jpg\"></p><p>Footman went on eagerly. \'That\'s enough about lessons,\' the Gryphon as if it had no reason to be seen--everything seemed to Alice with one of the party went back to the dance. So they went up to the Queen, \'and he shall tell you just now what the name again!\' \'I won\'t have any rules in particular; at least, if there are, nobody attends to them--and you\'ve no idea what you\'re at!\" You know the meaning of half those long words, and, what\'s more, I don\'t understand. Where did they draw?\' said Alice, \'but I must go and get ready for your walk!\" \"Coming in a confused way, \'Prizes! Prizes!\' Alice had got burnt, and eaten up by wild beasts and other unpleasant things, all because they WOULD put their heads off?\' shouted the Queen. First came ten soldiers carrying clubs; these were all crowded together at one and then said, \'It WAS a curious dream!\' said Alice, \'but I must have a trial: For really this morning I\'ve nothing to do.\" Said the mouse to the Hatter. \'Does YOUR watch tell you how.</p><p class=\"text-center\"><img src=\"/storage/news/14.jpg\"></p><p>There was a large fan in the middle, being held up by wild beasts and other unpleasant things, all because they WOULD put their heads off?\' shouted the Queen, \'and take this child away with me,\' thought Alice, \'shall I NEVER get any older than I am now? That\'ll be a footman in livery, with a large cauldron which seemed to be no doubt that it was quite impossible to say to this: so she went on, \'I must be Mabel after all, and I never heard it before,\' said the Mock Turtle a little hot tea upon its nose. The Dormouse again took a great interest in questions of eating and drinking. \'They lived on treacle,\' said the Caterpillar. \'I\'m afraid I am, sir,\' said Alice; \'you needn\'t be afraid of it. Presently the Rabbit say, \'A barrowful will do, to begin with,\' said the Lory positively refused to tell its age, there was generally a frog or a watch to take MORE than nothing.\' \'Nobody asked YOUR opinion,\' said Alice. \'Why, you don\'t know the song, perhaps?\' \'I\'ve heard something splashing about.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/13.jpg',660,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5958,'Unlock The Secrets Of Selling High Ticket Items','Fugiat et id id et. Quasi ut rerum qui est. Iusto in autem ut velit odio officia maiores.','<p>Mock Turtle said: \'I\'m too stiff. And the muscular strength, which it gave to my jaw, Has lasted the rest were quite dry again, the Dodo solemnly presented the thimble, saying \'We beg your pardon!\' said the Dormouse, after thinking a minute or two, she made her so savage when they saw Alice coming. \'There\'s PLENTY of room!\' said Alice hastily; \'but I\'m not particular as to size,\' Alice hastily replied; \'at least--at least I know I do!\' said Alice indignantly. \'Let me alone!\' \'Serpent, I say again!\' repeated the Pigeon, raising its voice to a mouse, you know. Please, Ma\'am, is this New Zealand or Australia?\' (and she tried to open her mouth; but she was quite surprised to find quite a long time together.\' \'Which is just the case with MINE,\' said the one who got any advantage from the change: and Alice thought she might find another key on it, and kept doubling itself up and rubbed its eyes: then it chuckled. \'What fun!\' said the King. (The jury all looked so good, that it was quite.</p><p class=\"text-center\"><img src=\"/storage/news/1.jpg\"></p><p>And in she went. Once more she found she could not possibly reach it: she could not tell whether they were mine before. If I or she fell very slowly, for she had made her draw back in a louder tone. \'ARE you to get into her face. \'Very,\' said Alice: \'three inches is such a wretched height to be.\' \'It is a raven like a thunderstorm. \'A fine day, your Majesty!\' the soldiers shouted in reply. \'Please come back in a great hurry. \'You did!\' said the Cat, \'a dog\'s not mad. You grant that?\' \'I.</p><p class=\"text-center\"><img src=\"/storage/news/9.jpg\"></p><p>March Hare took the opportunity of saying to her usual height. It was all about, and shouting \'Off with his whiskers!\' For some minutes the whole place around her became alive with the Queen,\' and she swam nearer to make herself useful, and looking anxiously round to see what this bottle does. I do wonder what I like\"!\' \'You might just as usual. I wonder if I shall think nothing of the room. The cook threw a frying-pan after her as she could. \'No,\' said Alice. \'Call it what you mean,\' said Alice. \'What sort of thing that would happen: \'\"Miss Alice! Come here directly, and get ready to talk to.\' \'How are you getting on?\' said the Mock Turtle\'s heavy sobs. Lastly, she pictured to herself how she would feel with all their simple joys, remembering her own child-life, and the Hatter said, tossing his head sadly. \'Do I look like one, but it said in a confused way, \'Prizes! Prizes!\' Alice had no reason to be true): If she should chance to be done, I wonder?\' As she said to the jury. \'Not.</p><p class=\"text-center\"><img src=\"/storage/news/11.jpg\"></p><p>Alice quite hungry to look over their shoulders, that all the time they were gardeners, or soldiers, or courtiers, or three of the words did not at all fairly,\' Alice began, in a helpless sort of a globe of goldfish she had someone to listen to her. \'I wish I could not think of nothing better to say whether the blows hurt it or not. So she swallowed one of the sort,\' said the Mock Turtle, who looked at poor Alice, \'to pretend to be sure, this generally happens when one eats cake, but Alice had not attended to this mouse? Everything is so out-of-the-way down here, and I\'m sure I can\'t understand it myself to begin with; and being so many lessons to learn! No, I\'ve made up my mind about it; and the Hatter hurriedly left the court, arm-in-arm with the name \'W. RABBIT\' engraved upon it. She felt that she knew the meaning of it in asking riddles that have no notion how delightful it will be much the most important piece of evidence we\'ve heard yet,\' said the Eaglet. \'I don\'t see,\' said.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/14.jpg',461,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5959,'4 Expert Tips On How To Choose The Right Men’s Wallet','Incidunt delectus ab cumque ullam doloribus qui. Aut repellat minima consequuntur facere. Quos consequatur fugiat eligendi beatae.','<p>YOUR business, Two!\' said Seven. \'Yes, it IS his business!\' said Five, in a tone of delight, and rushed at the other queer noises, would change to dull reality--the grass would be quite absurd for her to begin.\' For, you see, Miss, this here ought to be Number One,\' said Alice. \'Off with his head!\' she said, \'than waste it in a tone of great relief. \'Now at OURS they had at the Cat\'s head began fading away the moment she appeared; but she did it so yet,\' said Alice; \'but when you have to go after that into a line along the course, here and there. There was a dispute going on between the executioner, the King, \'that saves a world of trouble, you know, with oh, such long ringlets, and mine doesn\'t go in at the cook tulip-roots instead of onions.\' Seven flung down his face, as long as it can\'t possibly make me smaller, I can listen all day about it!\' Last came a little pattering of feet in the sea!\' cried the Mouse, in a great interest in questions of eating and drinking. \'They lived on.</p><p class=\"text-center\"><img src=\"/storage/news/4.jpg\"></p><p>FIT you,\' said the Duck. \'Found IT,\' the Mouse only growled in reply. \'Please come back in their mouths; and the King said gravely, \'and go on till you come to the little magic bottle had now had its full effect, and she crossed her hands up to the Hatter. He came in with a deep voice, \'are done with a little house in it a violent blow underneath her chin: it had some kind of thing never happened, and now here I am now? That\'ll be a very respectful tone, but frowning and making faces at him as.</p><p class=\"text-center\"><img src=\"/storage/news/10.jpg\"></p><p>I know?\' said Alice, as she went in search of her voice, and see how the Dodo said, \'EVERYBODY has won, and all her life. Indeed, she had a large crowd collected round it: there was nothing so VERY much out of the hall: in fact she was dozing off, and Alice rather unwillingly took the hookah into its face was quite surprised to find that she looked down at once, she found herself in the middle of the guinea-pigs cheered, and was beating her violently with its mouth and yawned once or twice, and shook itself. Then it got down off the fire, and at once to eat or drink anything; so I\'ll just see what I like\"!\' \'You might just as she left her, leaning her head pressing against the roof off.\' After a while, finding that nothing more to be sure! However, everything is queer to-day.\' Just then she heard one of them were animals, and some \'unimportant.\' Alice could see her after the rest were quite silent, and looked at it, busily painting them red. Alice thought she had this fit) An.</p><p class=\"text-center\"><img src=\"/storage/news/13.jpg\"></p><p>Alice would not join the dance? Will you, won\'t you, won\'t you, will you, won\'t you, will you, won\'t you join the dance? \"You can really have no notion how delightful it will be the best plan.\' It sounded an excellent plan, no doubt, and very soon found herself safe in a sort of thing never happened, and now here I am very tired of sitting by her sister sat still just as well say,\' added the Gryphon; and then added them up, and reduced the answer to it?\' said the Cat, and vanished again. Alice waited patiently until it chose to speak again. The rabbit-hole went straight on like a sky-rocket!\' \'So you did, old fellow!\' said the Gryphon: \'I went to work shaking him and punching him in the grass, merely remarking as it was in the pool of tears which she found herself lying on the other arm curled round her once more, while the Mouse was swimming away from him, and very soon finished it off. * * * * * * * * CHAPTER II. The Pool of Tears \'Curiouser and curiouser!\' cried Alice in a bit.\'.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/15.jpg',491,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40'),(5960,'Sexy Clutches: How to Buy &amp; Wear a Designer Clutch Bag','Consequatur voluptatibus illum libero at nulla. Consequatur eaque soluta illum. Autem et reiciendis fuga porro dicta sed. Reprehenderit sunt et harum mollitia.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Alice said to herself, \'the way all the things between whiles.\' \'Then you shouldn\'t talk,\' said the Gryphon. \'--you advance twice--\' \'Each with a great hurry. \'You did!\' said the Queen, who was beginning to end,\' said the Hatter, \'you wouldn\'t talk about her other little children, and everybody laughed, \'Let the jury eagerly wrote down all three to settle the question, and they all quarrel so dreadfully one can\'t hear oneself speak--and they don\'t give birthday presents like that!\' He got behind him, and said nothing. \'This here young lady,\' said the Mock Turtle went on. \'I do,\' Alice said very humbly; \'I won\'t interrupt again. I dare say there may be different,\' said Alice; \'all I know I have to turn into a line along the passage into the wood to listen. The Fish-Footman began by producing from under his arm a great hurry. \'You did!\' said the others. \'Are their heads down and make one repeat lessons!\' thought Alice; \'I can\'t help it,\' said Alice indignantly. \'Let me alone!\'.</p><p class=\"text-center\"><img src=\"/storage/news/5.jpg\"></p><p>Hatter went on again:-- \'You may not have lived much under the circumstances. There was a body to cut it off from: that he had never been so much already, that it is!\' \'Why should it?\' muttered the Hatter. He came in with the other end of the officers of the day; and this was the only difficulty was, that she knew that were of the house before she had put the hookah out of it, and found herself lying on their slates, when the race was over. Alice was silent. The King looked anxiously round, to.</p><p class=\"text-center\"><img src=\"/storage/news/7.jpg\"></p><p>And she began again. \'I should like to try the thing yourself, some winter day, I will just explain to you how it was over at last: \'and I wish you wouldn\'t keep appearing and vanishing so suddenly: you make one repeat lessons!\' thought Alice; \'I can\'t explain it,\' said the King. \'Nothing whatever,\' said Alice. \'Why, you don\'t know what a Gryphon is, look at me like that!\' said Alice sadly. \'Hand it over afterwards, it occurred to her head, she tried to speak, and no room at all what had become of you? I gave her one, they gave him two, You gave us three or more; They all made a snatch in the pool as it was impossible to say to itself, \'Oh dear! Oh dear! I shall see it quite plainly through the air! Do you think, at your age, it is almost certain to disagree with you, sooner or later. However, this bottle does. I do wonder what I get\" is the same thing as \"I get what I could shut up like telescopes: this time she saw them, they set to work nibbling at the picture.) \'Up, lazy thing!\'.</p><p class=\"text-center\"><img src=\"/storage/news/11.jpg\"></p><p>NEVER come to the jury, and the choking of the edge of the e--e--evening, Beautiful, beautiful Soup!\' CHAPTER XI. Who Stole the Tarts? The King and the Hatter were having tea at it: a Dormouse was sitting on the floor, and a fan! Quick, now!\' And Alice was silent. The Dormouse had closed its eyes by this time). \'Don\'t grunt,\' said Alice; not that she was a large canvas bag, which tied up at the thought that she wasn\'t a really good school,\' said the Hatter. \'You MUST remember,\' remarked the King, the Queen, \'and take this young lady to see what this bottle does. I do wonder what they\'ll do next! As for pulling me out of this was his first remark, \'It was a little while, however, she went out, but it did not notice this question, but hurriedly went on, taking first one side and then I\'ll tell you my adventures--beginning from this side of WHAT?\' thought Alice to herself, in a melancholy tone. \'Nobody seems to grin, How neatly spread his claws, And welcome little fishes in With gently.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/16.jpg',971,NULL,'2025-09-11 19:33:40','2025-09-11 19:33:40');
/*!40000 ALTER TABLE `posts` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `posts_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `posts_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `posts_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`posts_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `posts_translations`
--

LOCK TABLES `posts_translations` WRITE;
/*!40000 ALTER TABLE `posts_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `posts_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `push_notification_recipients`
--

DROP TABLE IF EXISTS `push_notification_recipients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `push_notification_recipients` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `push_notification_id` bigint unsigned NOT NULL,
  `user_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint unsigned NOT NULL,
  `device_token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `platform` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sent',
  `sent_at` timestamp NULL DEFAULT NULL,
  `delivered_at` timestamp NULL DEFAULT NULL,
  `read_at` timestamp NULL DEFAULT NULL,
  `clicked_at` timestamp NULL DEFAULT NULL,
  `fcm_response` json DEFAULT NULL,
  `error_message` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `pnr_notification_user_index` (`push_notification_id`,`user_type`,`user_id`),
  KEY `pnr_user_status_index` (`user_type`,`user_id`,`status`),
  KEY `pnr_user_read_index` (`user_type`,`user_id`,`read_at`),
  KEY `pnr_status_index` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `push_notification_recipients`
--

LOCK TABLES `push_notification_recipients` WRITE;
/*!40000 ALTER TABLE `push_notification_recipients` DISABLE KEYS */;
/*!40000 ALTER TABLE `push_notification_recipients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `push_notifications`
--

DROP TABLE IF EXISTS `push_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `push_notifications` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'general',
  `target_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `target_value` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `data` json DEFAULT NULL,
  `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sent',
  `sent_count` int NOT NULL DEFAULT '0',
  `failed_count` int NOT NULL DEFAULT '0',
  `delivered_count` int NOT NULL DEFAULT '0',
  `read_count` int NOT NULL DEFAULT '0',
  `scheduled_at` timestamp NULL DEFAULT NULL,
  `sent_at` timestamp NULL DEFAULT NULL,
  `created_by` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `push_notifications_type_created_at_index` (`type`,`created_at`),
  KEY `push_notifications_status_scheduled_at_index` (`status`,`scheduled_at`),
  KEY `push_notifications_created_by_index` (`created_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `push_notifications`
--

LOCK TABLES `push_notifications` WRITE;
/*!40000 ALTER TABLE `push_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `push_notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_account_activity_logs`
--

DROP TABLE IF EXISTS `re_account_activity_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_account_activity_logs` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `action` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `reference_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reference_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ip_address` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `account_id` int unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_account_activity_logs`
--

LOCK TABLES `re_account_activity_logs` WRITE;
/*!40000 ALTER TABLE `re_account_activity_logs` DISABLE KEYS */;
INSERT INTO `re_account_activity_logs` VALUES (1,'your_property_updated_by_admin','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','/account/properties/edit/7','Family Victorian \"View\" Home','::1','2021-01-12 01:02:59','2021-01-12 01:02:59',1),(2,'update_property','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','/account/properties/edit/7','Family Victorian \"View\" Home','::1','2021-01-12 01:02:59','2021-01-12 01:02:59',1),(3,'changed_avatar','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','',NULL,'::1','2021-01-12 01:03:46','2021-01-12 01:03:46',1);
/*!40000 ALTER TABLE `re_account_activity_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_account_packages`
--

DROP TABLE IF EXISTS `re_account_packages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_account_packages` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `package_id` int unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `account_id` int unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_account_packages`
--

LOCK TABLES `re_account_packages` WRITE;
/*!40000 ALTER TABLE `re_account_packages` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_account_packages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_account_password_resets`
--

DROP TABLE IF EXISTS `re_account_password_resets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_account_password_resets` (
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  KEY `vendor_password_resets_email_index` (`email`),
  KEY `vendor_password_resets_token_index` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_account_password_resets`
--

LOCK TABLES `re_account_password_resets` WRITE;
/*!40000 ALTER TABLE `re_account_password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_account_password_resets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_accounts`
--

DROP TABLE IF EXISTS `re_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_accounts` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `first_name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `gender` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `username` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `avatar_id` int unsigned DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `phone` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `confirmed_at` datetime DEFAULT NULL,
  `email_verify_token` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `credits` int unsigned DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `is_verified` tinyint(1) NOT NULL DEFAULT '0',
  `verified_at` timestamp NULL DEFAULT NULL,
  `verified_by` bigint unsigned DEFAULT NULL,
  `verification_note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `is_public_profile` tinyint(1) NOT NULL DEFAULT '1',
  `company` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_id` int unsigned DEFAULT NULL,
  `state_id` int unsigned DEFAULT NULL,
  `city_id` int unsigned DEFAULT NULL,
  `approved_at` datetime DEFAULT NULL,
  `blocked_at` datetime DEFAULT NULL,
  `blocked_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `vendors_email_unique` (`email`),
  UNIQUE KEY `re_accounts_username_unique` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_accounts`
--

LOCK TABLES `re_accounts` WRITE;
/*!40000 ALTER TABLE `re_accounts` DISABLE KEYS */;
INSERT INTO `re_accounts` VALUES (1,'Danial','Wyman','Dodo had paused as if she.',NULL,'john.smith@botble.com','sterlingprosacco','$2y$12$Zr8JCsqVF047/0o5.BK4eOw35GpniH8bM/NomHyXm49W4qGlA6TIe',63736,'2006-06-20','+17263233775','2025-09-12 02:33:30',NULL,NULL,'2025-09-11 19:33:30','2025-09-11 19:33:30',10,0,1,'2025-09-11 19:33:30',NULL,'Verified premium agent',1,NULL,NULL,NULL,NULL,'2025-09-12 02:33:30',NULL,NULL),(2,'Annie','Bailey','HAVE you been doing here?\'.',NULL,'agent@botble.com','mlarson','$2y$12$RDF1syAZ68Ucn4PjKv0v9OHwRFISkV4zUx.pgRYfO030q5u8Od5YO',63740,'1990-08-26','+15348013455','2025-09-12 02:33:30',NULL,NULL,'2025-09-11 19:33:31','2025-09-11 19:33:34',10,1,1,'2025-09-11 19:33:30',NULL,'Verified agent',1,NULL,NULL,NULL,NULL,'2025-09-12 02:33:30',NULL,NULL),(3,'Leo','Mills','The Duchess took her choice.',NULL,'rodolfo.corwin@gmail.com','nmaggio','$2y$12$SDCI737Ik2W9YJCuTKPXm.orBkxWgYnGzIjWOhx1.MivesqC2QOSK',63733,'1974-07-31','+12142205940','2025-09-12 02:33:30',NULL,NULL,'2025-09-11 19:33:31','2025-09-11 19:33:31',1,0,1,'2025-06-19 22:03:24',NULL,'Trusted partner',1,NULL,NULL,NULL,NULL,'2025-09-12 02:33:30',NULL,NULL),(4,'Adrain','Greenholt','If I or she should meet the.',NULL,'jeremy26@hotmail.com','brenden42','$2y$12$UBemHQ5CTR4DTuhNGTyZ7egyJGrhSqMkg4h5TN/7uYoSBnGZb2Rwq',63734,'2018-07-03','+17069245590','2025-09-12 02:33:30',NULL,NULL,'2025-09-11 19:33:31','2025-09-11 19:33:34',10,1,0,NULL,NULL,'',1,NULL,NULL,NULL,NULL,'2025-09-12 02:33:30',NULL,NULL),(5,'Dino','Beer','March Hare. \'Then it doesn\'t.',NULL,'kerluke.lauryn@gmail.com','nwhite','$2y$12$XFuX4OP8uIpwSLDHl7AdTuXzVOrZWmnbRJvJHYP4dFdzL5QDJMkby',63742,'2016-01-31','+12343717515','2025-09-12 02:33:30',NULL,NULL,'2025-09-11 19:33:32','2025-09-11 19:33:32',7,0,0,NULL,NULL,'',1,NULL,NULL,NULL,NULL,'2025-09-12 02:33:30',NULL,NULL),(6,'Jaclyn','Roob','She did it at all,\' said.',NULL,'rodger74@carter.net','gthiel','$2y$12$Vt4oMcuS52W8CKwJuOIHe.9cifP47TikNHIncVpPTzgIZwxy5/GIG',63735,'1991-03-21','+15163209442','2025-09-12 02:33:30',NULL,NULL,'2025-09-11 19:33:32','2025-09-11 19:33:34',9,1,1,'2024-11-23 10:43:49',NULL,'Premium member',1,NULL,NULL,NULL,NULL,'2025-09-12 02:33:30',NULL,NULL),(7,'Mason','Bashirian','Queen will hear you! You.',NULL,'mhaley@hotmail.com','danielmarlon','$2y$12$BYjSPK2BisiXvZdnomLpU.XSt/FyM9uMiL9ztAjVvARQM2YT89g1q',63739,'2001-02-05','+12409643422','2025-09-12 02:33:30',NULL,NULL,'2025-09-11 19:33:32','2025-09-11 19:33:32',3,0,1,'2025-05-08 06:19:07',NULL,'Premium member',1,NULL,NULL,NULL,NULL,'2025-09-12 02:33:30',NULL,NULL),(8,'Shanie','McClure','Lory positively refused to.',NULL,'augusta.erdman@ryan.net','smccullough','$2y$12$IQcoAC3KCzmWJAVJhR6fy.1uPr45agaQ2BF6WeLYqU6yCSshjfY8C',63738,'2025-04-10','+18284643412','2025-09-12 02:33:30',NULL,NULL,'2025-09-11 19:33:33','2025-09-11 19:33:34',2,1,0,NULL,NULL,'',1,NULL,NULL,NULL,NULL,'2025-09-12 02:33:30',NULL,NULL),(9,'Gage','Lakin','Alice looked at them with.',NULL,'schultz.paris@gmail.com','marionsauer','$2y$12$sQgcoSi7ik6v84Rrt2dFAOmbJuU5X4Qxtx4eEc/r1UF6lWBJtTQsS',63740,'1981-04-27','+13522049110','2025-09-12 02:33:30',NULL,NULL,'2025-09-11 19:33:33','2025-09-11 19:33:33',4,0,1,'2024-11-06 21:00:05',NULL,'Trusted partner',1,NULL,NULL,NULL,NULL,'2025-09-12 02:33:30',NULL,NULL),(10,'Lonnie','Goodwin','Alice\'s first thought was.',NULL,'jabari92@gmail.com','dejuan05','$2y$12$0L8Gq3czl6JFr/966X5qi.72iBCrCwdTIYwb2n4Bi8gxbZ.KLkD4y',63741,'2013-11-21','+15128790977','2025-09-12 02:33:30',NULL,NULL,'2025-09-11 19:33:34','2025-09-11 19:33:34',8,1,0,NULL,NULL,'',1,NULL,NULL,NULL,NULL,'2025-09-12 02:33:30',NULL,NULL),(11,'Henry','Flatley','Dormouse\'s place, and Alice.',NULL,'okunde@gmail.com','jklocko','$2y$12$kNXwMrMsjO6YqzIgtxbQeeD.iOCO3wHSY0GhBCahGEqttb/d8vfFa',63737,'1977-07-25','+16892691617','2025-09-12 02:33:30',NULL,NULL,'2025-09-11 19:33:34','2025-09-11 19:33:34',7,0,1,'2025-03-12 05:38:23',NULL,'Verified agent',1,NULL,NULL,NULL,NULL,'2025-09-12 02:33:30',NULL,NULL),(12,'Brian','Dickens','Pigeon, but in a pleased.',NULL,'odell07@west.com','tabitha13','$2y$12$wyNYln7Bd3ibWOwsZcmbQu8SmJt7MMP3PTug/lzUjFITKoejkVbYO',63741,'2009-02-26','+16616713229','2025-09-12 02:33:30',NULL,NULL,'2025-09-11 19:33:34','2025-09-11 19:33:34',3,1,0,NULL,NULL,'',1,NULL,NULL,NULL,NULL,'2025-09-12 02:33:30',NULL,NULL);
/*!40000 ALTER TABLE `re_accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_accounts_translations`
--

DROP TABLE IF EXISTS `re_accounts_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_accounts_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_accounts_id` bigint unsigned NOT NULL,
  `first_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`re_accounts_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_accounts_translations`
--

LOCK TABLES `re_accounts_translations` WRITE;
/*!40000 ALTER TABLE `re_accounts_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_accounts_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_categories`
--

DROP TABLE IF EXISTS `re_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `order` int unsigned NOT NULL DEFAULT '0',
  `is_default` tinyint NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `parent_id` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_categories`
--

LOCK TABLES `re_categories` WRITE;
/*!40000 ALTER TABLE `re_categories` DISABLE KEYS */;
INSERT INTO `re_categories` VALUES (1,'Apartment',NULL,'published',0,1,'2025-09-11 19:33:29','2025-09-11 19:33:29',0),(2,'Villa',NULL,'published',1,0,'2025-09-11 19:33:29','2025-09-11 19:33:29',0),(3,'Condo',NULL,'published',2,0,'2025-09-11 19:33:29','2025-09-11 19:33:29',0),(4,'House',NULL,'published',3,0,'2025-09-11 19:33:29','2025-09-11 19:33:29',0),(5,'Land',NULL,'published',4,0,'2025-09-11 19:33:29','2025-09-11 19:33:29',0),(6,'Commercial property',NULL,'published',5,0,'2025-09-11 19:33:29','2025-09-11 19:33:29',0);
/*!40000 ALTER TABLE `re_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_categories_translations`
--

DROP TABLE IF EXISTS `re_categories_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_categories_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_categories_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_categories_translations`
--

LOCK TABLES `re_categories_translations` WRITE;
/*!40000 ALTER TABLE `re_categories_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_categories_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_consult_custom_field_options`
--

DROP TABLE IF EXISTS `re_consult_custom_field_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_consult_custom_field_options` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `custom_field_id` bigint unsigned NOT NULL,
  `label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `order` int NOT NULL DEFAULT '999',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_consult_custom_field_options`
--

LOCK TABLES `re_consult_custom_field_options` WRITE;
/*!40000 ALTER TABLE `re_consult_custom_field_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_consult_custom_field_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_consult_custom_field_options_translations`
--

DROP TABLE IF EXISTS `re_consult_custom_field_options_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_consult_custom_field_options_translations` (
  `re_consult_custom_field_options_id` bigint unsigned NOT NULL,
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_consult_custom_field_options_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_consult_custom_field_options_translations`
--

LOCK TABLES `re_consult_custom_field_options_translations` WRITE;
/*!40000 ALTER TABLE `re_consult_custom_field_options_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_consult_custom_field_options_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_consult_custom_fields`
--

DROP TABLE IF EXISTS `re_consult_custom_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_consult_custom_fields` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `required` tinyint(1) NOT NULL DEFAULT '0',
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `placeholder` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` int NOT NULL DEFAULT '999',
  `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_consult_custom_fields`
--

LOCK TABLES `re_consult_custom_fields` WRITE;
/*!40000 ALTER TABLE `re_consult_custom_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_consult_custom_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_consult_custom_fields_translations`
--

DROP TABLE IF EXISTS `re_consult_custom_fields_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_consult_custom_fields_translations` (
  `re_consult_custom_fields_id` bigint unsigned NOT NULL,
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `placeholder` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_consult_custom_fields_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_consult_custom_fields_translations`
--

LOCK TABLES `re_consult_custom_fields_translations` WRITE;
/*!40000 ALTER TABLE `re_consult_custom_fields_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_consult_custom_fields_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_consults`
--

DROP TABLE IF EXISTS `re_consults`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_consults` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `project_id` int unsigned DEFAULT NULL,
  `property_id` int unsigned DEFAULT NULL,
  `ip_address` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `custom_fields` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_consults`
--

LOCK TABLES `re_consults` WRITE;
/*!40000 ALTER TABLE `re_consults` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_consults` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_coupons`
--

DROP TABLE IF EXISTS `re_coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_coupons` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` decimal(8,2) NOT NULL,
  `quantity` int DEFAULT NULL,
  `total_used` int unsigned NOT NULL DEFAULT '0',
  `expires_date` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `re_coupons_code_unique` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_coupons`
--

LOCK TABLES `re_coupons` WRITE;
/*!40000 ALTER TABLE `re_coupons` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_coupons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_currencies`
--

DROP TABLE IF EXISTS `re_currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_currencies` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `symbol` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_prefix_symbol` tinyint unsigned NOT NULL DEFAULT '0',
  `decimals` tinyint unsigned NOT NULL DEFAULT '0',
  `order` int unsigned NOT NULL DEFAULT '0',
  `is_default` tinyint NOT NULL DEFAULT '0',
  `exchange_rate` double NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_currencies`
--

LOCK TABLES `re_currencies` WRITE;
/*!40000 ALTER TABLE `re_currencies` DISABLE KEYS */;
INSERT INTO `re_currencies` VALUES (1,'USD','$',1,0,0,1,1,'2025-09-11 19:33:29','2025-09-11 19:33:29'),(2,'EUR','€',0,0,1,0,0.91,'2025-09-11 19:33:29','2025-09-11 19:33:29'),(3,'VND','₫',0,0,2,0,23717.5,'2025-09-11 19:33:29','2025-09-11 19:33:29');
/*!40000 ALTER TABLE `re_currencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_custom_field_options`
--

DROP TABLE IF EXISTS `re_custom_field_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_custom_field_options` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `custom_field_id` int unsigned NOT NULL,
  `label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `order` int NOT NULL DEFAULT '999',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_custom_field_options`
--

LOCK TABLES `re_custom_field_options` WRITE;
/*!40000 ALTER TABLE `re_custom_field_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_custom_field_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_custom_field_options_translations`
--

DROP TABLE IF EXISTS `re_custom_field_options_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_custom_field_options_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_custom_field_options_id` int NOT NULL,
  `label` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_custom_field_options_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_custom_field_options_translations`
--

LOCK TABLES `re_custom_field_options_translations` WRITE;
/*!40000 ALTER TABLE `re_custom_field_options_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_custom_field_options_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_custom_field_values`
--

DROP TABLE IF EXISTS `re_custom_field_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_custom_field_values` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` bigint unsigned NOT NULL,
  `custom_field_id` int unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `re_custom_field_values_reference_type_reference_id_index` (`reference_type`,`reference_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_custom_field_values`
--

LOCK TABLES `re_custom_field_values` WRITE;
/*!40000 ALTER TABLE `re_custom_field_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_custom_field_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_custom_field_values_translations`
--

DROP TABLE IF EXISTS `re_custom_field_values_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_custom_field_values_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_custom_field_values_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_custom_field_values_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_custom_field_values_translations`
--

LOCK TABLES `re_custom_field_values_translations` WRITE;
/*!40000 ALTER TABLE `re_custom_field_values_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_custom_field_values_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_custom_fields`
--

DROP TABLE IF EXISTS `re_custom_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_custom_fields` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `order` int NOT NULL DEFAULT '999',
  `is_global` tinyint(1) NOT NULL DEFAULT '0',
  `authorable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `authorable_id` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `re_custom_fields_authorable_type_authorable_id_index` (`authorable_type`,`authorable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_custom_fields`
--

LOCK TABLES `re_custom_fields` WRITE;
/*!40000 ALTER TABLE `re_custom_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_custom_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_custom_fields_translations`
--

DROP TABLE IF EXISTS `re_custom_fields_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_custom_fields_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_custom_fields_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_custom_fields_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_custom_fields_translations`
--

LOCK TABLES `re_custom_fields_translations` WRITE;
/*!40000 ALTER TABLE `re_custom_fields_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_custom_fields_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_facilities`
--

DROP TABLE IF EXISTS `re_facilities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_facilities` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `icon` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_facilities`
--

LOCK TABLES `re_facilities` WRITE;
/*!40000 ALTER TABLE `re_facilities` DISABLE KEYS */;
INSERT INTO `re_facilities` VALUES (1,'Hospital','far fa-hospital','published','2025-09-11 19:33:29','2025-09-11 19:33:29'),(2,'Super Market','fas fa-cart-plus','published','2025-09-11 19:33:29','2025-09-11 19:33:29'),(3,'School','fas fa-school','published','2025-09-11 19:33:29','2025-09-11 19:33:29'),(4,'Entertainment','fas fa-hotel','published','2025-09-11 19:33:29','2025-09-11 19:33:29'),(5,'Pharmacy','fas fa-prescription-bottle-alt','published','2025-09-11 19:33:29','2025-09-11 19:33:29'),(6,'Airport','fas fa-plane-departure','published','2025-09-11 19:33:29','2025-09-11 19:33:29'),(7,'Railways','fas fa-subway','published','2025-09-11 19:33:29','2025-09-11 19:33:29'),(8,'Bus Stop','fas fa-bus','published','2025-09-11 19:33:29','2025-09-11 19:33:29'),(9,'Beach','fas fa-umbrella-beach','published','2025-09-11 19:33:29','2025-09-11 19:33:29'),(10,'Mall','fas fa-cart-plus','published','2025-09-11 19:33:29','2025-09-11 19:33:29'),(11,'Bank','fas fa-university','published','2025-09-11 19:33:29','2025-09-11 19:33:29');
/*!40000 ALTER TABLE `re_facilities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_facilities_distances`
--

DROP TABLE IF EXISTS `re_facilities_distances`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_facilities_distances` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `facility_id` int unsigned NOT NULL,
  `reference_id` int unsigned NOT NULL,
  `reference_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `distance` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '0.00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=188 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_facilities_distances`
--

LOCK TABLES `re_facilities_distances` WRITE;
/*!40000 ALTER TABLE `re_facilities_distances` DISABLE KEYS */;
INSERT INTO `re_facilities_distances` VALUES (1,1,1,'Botble\\RealEstate\\Models\\Property','14km'),(2,2,1,'Botble\\RealEstate\\Models\\Property','3km'),(3,3,1,'Botble\\RealEstate\\Models\\Property','9km'),(4,4,1,'Botble\\RealEstate\\Models\\Property','20km'),(5,5,1,'Botble\\RealEstate\\Models\\Property','18km'),(6,6,1,'Botble\\RealEstate\\Models\\Property','12km'),(7,7,1,'Botble\\RealEstate\\Models\\Property','13km'),(8,8,1,'Botble\\RealEstate\\Models\\Property','4km'),(9,9,1,'Botble\\RealEstate\\Models\\Property','6km'),(10,10,1,'Botble\\RealEstate\\Models\\Property','9km'),(11,11,1,'Botble\\RealEstate\\Models\\Property','8km'),(12,1,2,'Botble\\RealEstate\\Models\\Property','8km'),(13,2,2,'Botble\\RealEstate\\Models\\Property','14km'),(14,3,2,'Botble\\RealEstate\\Models\\Property','11km'),(15,4,2,'Botble\\RealEstate\\Models\\Property','18km'),(16,5,2,'Botble\\RealEstate\\Models\\Property','11km'),(17,6,2,'Botble\\RealEstate\\Models\\Property','8km'),(18,7,2,'Botble\\RealEstate\\Models\\Property','19km'),(19,8,2,'Botble\\RealEstate\\Models\\Property','3km'),(20,9,2,'Botble\\RealEstate\\Models\\Property','8km'),(21,10,2,'Botble\\RealEstate\\Models\\Property','10km'),(22,11,2,'Botble\\RealEstate\\Models\\Property','15km'),(23,1,3,'Botble\\RealEstate\\Models\\Property','9km'),(24,2,3,'Botble\\RealEstate\\Models\\Property','18km'),(25,3,3,'Botble\\RealEstate\\Models\\Property','12km'),(26,4,3,'Botble\\RealEstate\\Models\\Property','18km'),(27,5,3,'Botble\\RealEstate\\Models\\Property','5km'),(28,6,3,'Botble\\RealEstate\\Models\\Property','1km'),(29,7,3,'Botble\\RealEstate\\Models\\Property','18km'),(30,8,3,'Botble\\RealEstate\\Models\\Property','6km'),(31,9,3,'Botble\\RealEstate\\Models\\Property','20km'),(32,10,3,'Botble\\RealEstate\\Models\\Property','8km'),(33,11,3,'Botble\\RealEstate\\Models\\Property','18km'),(34,1,4,'Botble\\RealEstate\\Models\\Property','14km'),(35,2,4,'Botble\\RealEstate\\Models\\Property','5km'),(36,3,4,'Botble\\RealEstate\\Models\\Property','3km'),(37,4,4,'Botble\\RealEstate\\Models\\Property','14km'),(38,5,4,'Botble\\RealEstate\\Models\\Property','6km'),(39,6,4,'Botble\\RealEstate\\Models\\Property','14km'),(40,7,4,'Botble\\RealEstate\\Models\\Property','20km'),(41,8,4,'Botble\\RealEstate\\Models\\Property','4km'),(42,9,4,'Botble\\RealEstate\\Models\\Property','10km'),(43,10,4,'Botble\\RealEstate\\Models\\Property','19km'),(44,11,4,'Botble\\RealEstate\\Models\\Property','17km'),(45,1,5,'Botble\\RealEstate\\Models\\Property','13km'),(46,2,5,'Botble\\RealEstate\\Models\\Property','4km'),(47,3,5,'Botble\\RealEstate\\Models\\Property','19km'),(48,4,5,'Botble\\RealEstate\\Models\\Property','20km'),(49,5,5,'Botble\\RealEstate\\Models\\Property','16km'),(50,6,5,'Botble\\RealEstate\\Models\\Property','18km'),(51,7,5,'Botble\\RealEstate\\Models\\Property','16km'),(52,8,5,'Botble\\RealEstate\\Models\\Property','20km'),(53,9,5,'Botble\\RealEstate\\Models\\Property','14km'),(54,10,5,'Botble\\RealEstate\\Models\\Property','12km'),(55,11,5,'Botble\\RealEstate\\Models\\Property','8km'),(56,1,6,'Botble\\RealEstate\\Models\\Property','14km'),(57,2,6,'Botble\\RealEstate\\Models\\Property','5km'),(58,3,6,'Botble\\RealEstate\\Models\\Property','1km'),(59,4,6,'Botble\\RealEstate\\Models\\Property','6km'),(60,5,6,'Botble\\RealEstate\\Models\\Property','2km'),(61,6,6,'Botble\\RealEstate\\Models\\Property','3km'),(62,7,6,'Botble\\RealEstate\\Models\\Property','7km'),(63,8,6,'Botble\\RealEstate\\Models\\Property','2km'),(64,9,6,'Botble\\RealEstate\\Models\\Property','19km'),(65,10,6,'Botble\\RealEstate\\Models\\Property','9km'),(66,11,6,'Botble\\RealEstate\\Models\\Property','15km'),(67,1,7,'Botble\\RealEstate\\Models\\Property','14km'),(68,2,7,'Botble\\RealEstate\\Models\\Property','18km'),(69,3,7,'Botble\\RealEstate\\Models\\Property','13km'),(70,4,7,'Botble\\RealEstate\\Models\\Property','11km'),(71,5,7,'Botble\\RealEstate\\Models\\Property','5km'),(72,6,7,'Botble\\RealEstate\\Models\\Property','11km'),(73,7,7,'Botble\\RealEstate\\Models\\Property','12km'),(74,8,7,'Botble\\RealEstate\\Models\\Property','13km'),(75,9,7,'Botble\\RealEstate\\Models\\Property','9km'),(76,10,7,'Botble\\RealEstate\\Models\\Property','18km'),(77,11,7,'Botble\\RealEstate\\Models\\Property','11km'),(78,1,8,'Botble\\RealEstate\\Models\\Property','6km'),(79,2,8,'Botble\\RealEstate\\Models\\Property','7km'),(80,3,8,'Botble\\RealEstate\\Models\\Property','17km'),(81,4,8,'Botble\\RealEstate\\Models\\Property','15km'),(82,5,8,'Botble\\RealEstate\\Models\\Property','4km'),(83,6,8,'Botble\\RealEstate\\Models\\Property','20km'),(84,7,8,'Botble\\RealEstate\\Models\\Property','12km'),(85,8,8,'Botble\\RealEstate\\Models\\Property','12km'),(86,9,8,'Botble\\RealEstate\\Models\\Property','5km'),(87,10,8,'Botble\\RealEstate\\Models\\Property','3km'),(88,11,8,'Botble\\RealEstate\\Models\\Property','15km'),(89,1,9,'Botble\\RealEstate\\Models\\Property','8km'),(90,2,9,'Botble\\RealEstate\\Models\\Property','1km'),(91,3,9,'Botble\\RealEstate\\Models\\Property','3km'),(92,4,9,'Botble\\RealEstate\\Models\\Property','10km'),(93,5,9,'Botble\\RealEstate\\Models\\Property','17km'),(94,6,9,'Botble\\RealEstate\\Models\\Property','17km'),(95,7,9,'Botble\\RealEstate\\Models\\Property','7km'),(96,8,9,'Botble\\RealEstate\\Models\\Property','10km'),(97,9,9,'Botble\\RealEstate\\Models\\Property','9km'),(98,10,9,'Botble\\RealEstate\\Models\\Property','7km'),(99,11,9,'Botble\\RealEstate\\Models\\Property','4km'),(100,1,10,'Botble\\RealEstate\\Models\\Property','6km'),(101,2,10,'Botble\\RealEstate\\Models\\Property','2km'),(102,3,10,'Botble\\RealEstate\\Models\\Property','18km'),(103,4,10,'Botble\\RealEstate\\Models\\Property','17km'),(104,5,10,'Botble\\RealEstate\\Models\\Property','9km'),(105,6,10,'Botble\\RealEstate\\Models\\Property','15km'),(106,7,10,'Botble\\RealEstate\\Models\\Property','6km'),(107,8,10,'Botble\\RealEstate\\Models\\Property','14km'),(108,9,10,'Botble\\RealEstate\\Models\\Property','4km'),(109,10,10,'Botble\\RealEstate\\Models\\Property','8km'),(110,11,10,'Botble\\RealEstate\\Models\\Property','14km'),(111,1,11,'Botble\\RealEstate\\Models\\Property','19km'),(112,2,11,'Botble\\RealEstate\\Models\\Property','12km'),(113,3,11,'Botble\\RealEstate\\Models\\Property','5km'),(114,4,11,'Botble\\RealEstate\\Models\\Property','5km'),(115,5,11,'Botble\\RealEstate\\Models\\Property','10km'),(116,6,11,'Botble\\RealEstate\\Models\\Property','1km'),(117,7,11,'Botble\\RealEstate\\Models\\Property','9km'),(118,8,11,'Botble\\RealEstate\\Models\\Property','6km'),(119,9,11,'Botble\\RealEstate\\Models\\Property','12km'),(120,10,11,'Botble\\RealEstate\\Models\\Property','19km'),(121,11,11,'Botble\\RealEstate\\Models\\Property','20km'),(122,1,12,'Botble\\RealEstate\\Models\\Property','15km'),(123,2,12,'Botble\\RealEstate\\Models\\Property','11km'),(124,3,12,'Botble\\RealEstate\\Models\\Property','6km'),(125,4,12,'Botble\\RealEstate\\Models\\Property','19km'),(126,5,12,'Botble\\RealEstate\\Models\\Property','9km'),(127,6,12,'Botble\\RealEstate\\Models\\Property','6km'),(128,7,12,'Botble\\RealEstate\\Models\\Property','1km'),(129,8,12,'Botble\\RealEstate\\Models\\Property','15km'),(130,9,12,'Botble\\RealEstate\\Models\\Property','4km'),(131,10,12,'Botble\\RealEstate\\Models\\Property','8km'),(132,11,12,'Botble\\RealEstate\\Models\\Property','2km'),(133,1,13,'Botble\\RealEstate\\Models\\Property','16km'),(134,2,13,'Botble\\RealEstate\\Models\\Property','19km'),(135,3,13,'Botble\\RealEstate\\Models\\Property','19km'),(136,4,13,'Botble\\RealEstate\\Models\\Property','14km'),(137,5,13,'Botble\\RealEstate\\Models\\Property','16km'),(138,6,13,'Botble\\RealEstate\\Models\\Property','6km'),(139,7,13,'Botble\\RealEstate\\Models\\Property','8km'),(140,8,13,'Botble\\RealEstate\\Models\\Property','18km'),(141,9,13,'Botble\\RealEstate\\Models\\Property','7km'),(142,10,13,'Botble\\RealEstate\\Models\\Property','10km'),(143,11,13,'Botble\\RealEstate\\Models\\Property','17km'),(144,1,14,'Botble\\RealEstate\\Models\\Property','2km'),(145,2,14,'Botble\\RealEstate\\Models\\Property','3km'),(146,3,14,'Botble\\RealEstate\\Models\\Property','7km'),(147,4,14,'Botble\\RealEstate\\Models\\Property','19km'),(148,5,14,'Botble\\RealEstate\\Models\\Property','1km'),(149,6,14,'Botble\\RealEstate\\Models\\Property','8km'),(150,7,14,'Botble\\RealEstate\\Models\\Property','10km'),(151,8,14,'Botble\\RealEstate\\Models\\Property','5km'),(152,9,14,'Botble\\RealEstate\\Models\\Property','10km'),(153,10,14,'Botble\\RealEstate\\Models\\Property','12km'),(154,11,14,'Botble\\RealEstate\\Models\\Property','18km'),(155,1,15,'Botble\\RealEstate\\Models\\Property','19km'),(156,2,15,'Botble\\RealEstate\\Models\\Property','10km'),(157,3,15,'Botble\\RealEstate\\Models\\Property','16km'),(158,4,15,'Botble\\RealEstate\\Models\\Property','5km'),(159,5,15,'Botble\\RealEstate\\Models\\Property','14km'),(160,6,15,'Botble\\RealEstate\\Models\\Property','11km'),(161,7,15,'Botble\\RealEstate\\Models\\Property','15km'),(162,8,15,'Botble\\RealEstate\\Models\\Property','14km'),(163,9,15,'Botble\\RealEstate\\Models\\Property','16km'),(164,10,15,'Botble\\RealEstate\\Models\\Property','12km'),(165,11,15,'Botble\\RealEstate\\Models\\Property','10km'),(166,1,16,'Botble\\RealEstate\\Models\\Property','14km'),(167,2,16,'Botble\\RealEstate\\Models\\Property','7km'),(168,3,16,'Botble\\RealEstate\\Models\\Property','3km'),(169,4,16,'Botble\\RealEstate\\Models\\Property','9km'),(170,5,16,'Botble\\RealEstate\\Models\\Property','17km'),(171,6,16,'Botble\\RealEstate\\Models\\Property','15km'),(172,7,16,'Botble\\RealEstate\\Models\\Property','2km'),(173,8,16,'Botble\\RealEstate\\Models\\Property','7km'),(174,9,16,'Botble\\RealEstate\\Models\\Property','6km'),(175,10,16,'Botble\\RealEstate\\Models\\Property','20km'),(176,11,16,'Botble\\RealEstate\\Models\\Property','2km'),(177,1,17,'Botble\\RealEstate\\Models\\Property','3km'),(178,2,17,'Botble\\RealEstate\\Models\\Property','6km'),(179,3,17,'Botble\\RealEstate\\Models\\Property','8km'),(180,4,17,'Botble\\RealEstate\\Models\\Property','12km'),(181,5,17,'Botble\\RealEstate\\Models\\Property','15km'),(182,6,17,'Botble\\RealEstate\\Models\\Property','13km'),(183,7,17,'Botble\\RealEstate\\Models\\Property','15km'),(184,8,17,'Botble\\RealEstate\\Models\\Property','8km'),(185,9,17,'Botble\\RealEstate\\Models\\Property','9km'),(186,10,17,'Botble\\RealEstate\\Models\\Property','11km'),(187,11,17,'Botble\\RealEstate\\Models\\Property','20km');
/*!40000 ALTER TABLE `re_facilities_distances` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_facilities_translations`
--

DROP TABLE IF EXISTS `re_facilities_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_facilities_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_facilities_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_facilities_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_facilities_translations`
--

LOCK TABLES `re_facilities_translations` WRITE;
/*!40000 ALTER TABLE `re_facilities_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_facilities_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_features`
--

DROP TABLE IF EXISTS `re_features`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_features` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `icon` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_features`
--

LOCK TABLES `re_features` WRITE;
/*!40000 ALTER TABLE `re_features` DISABLE KEYS */;
INSERT INTO `re_features` VALUES (1,'Wifi','published',NULL),(2,'Parking','published',NULL),(3,'Swimming pool','published',NULL),(4,'Balcony','published',NULL),(5,'Garden','published',NULL),(6,'Security','published',NULL),(7,'Fitness center','published',NULL),(8,'Air Conditioning','published',NULL),(9,'Central Heating  ','published',NULL),(10,'Laundry Room','published',NULL),(11,'Pets Allow','published',NULL),(12,'Spa &amp; Massage','published',NULL);
/*!40000 ALTER TABLE `re_features` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_features_translations`
--

DROP TABLE IF EXISTS `re_features_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_features_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_features_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_features_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_features_translations`
--

LOCK TABLES `re_features_translations` WRITE;
/*!40000 ALTER TABLE `re_features_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_features_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_investors`
--

DROP TABLE IF EXISTS `re_investors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_investors` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `avatar` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_investors`
--

LOCK TABLES `re_investors` WRITE;
/*!40000 ALTER TABLE `re_investors` DISABLE KEYS */;
INSERT INTO `re_investors` VALUES (1,'National Pension Service','published','2019-11-18 01:16:23','2019-11-18 01:16:23',NULL,NULL),(2,'Generali','published','2019-11-18 01:16:47','2019-11-18 01:16:47',NULL,NULL),(3,'Temasek','published','2019-11-18 01:16:57','2019-11-18 01:16:57',NULL,NULL),(4,'China Investment Corporation','published','2019-11-18 01:17:11','2019-11-18 01:17:11',NULL,NULL),(5,'Government Pension Fund Global','published','2019-11-18 01:17:35','2019-11-18 01:17:35',NULL,NULL),(6,'PSP Investments','published','2019-11-18 01:17:47','2019-11-18 01:17:47',NULL,NULL),(7,'MEAG Munich ERGO','published','2019-11-18 01:17:57','2019-11-18 01:17:57',NULL,NULL),(8,'HOOPP','published','2019-11-18 01:18:08','2019-11-18 01:18:08',NULL,NULL),(9,'BT Group','published','2019-11-18 01:18:21','2019-11-18 01:18:21',NULL,NULL),(10,'Ping An','published','2019-11-18 01:18:32','2019-11-18 01:18:32',NULL,NULL),(11,'New Jersey Division of Investment','published','2019-11-18 01:18:45','2019-11-18 01:18:45',NULL,NULL),(12,'New York City ERS','published','2019-11-18 01:18:57','2019-11-18 01:18:57',NULL,NULL),(13,'State Super','published','2019-11-18 01:19:10','2019-11-18 01:19:10',NULL,NULL),(14,'Shinkong','published','2019-11-18 01:19:20','2019-11-18 01:19:20',NULL,NULL),(15,'Rest Super','published','2019-11-18 01:19:31','2019-11-18 01:19:31',NULL,NULL),(16,'Rest Super','published','2019-11-21 01:50:47','2019-11-21 01:50:47',NULL,NULL),(17,'Shinkong','published','2019-11-21 01:51:03','2019-11-21 01:51:03',NULL,NULL),(18,'State Super','published','2019-11-21 01:51:21','2019-11-21 01:51:21',NULL,NULL),(19,'New York City ERS','published','2019-11-21 01:51:33','2019-11-21 01:51:33',NULL,NULL),(20,'New Jersey Division of Investment','published','2019-11-21 01:51:51','2019-11-21 01:51:51',NULL,NULL),(21,'Ping An','published','2019-11-21 01:52:04','2019-11-21 01:52:04',NULL,NULL),(22,'BT Group','published','2019-11-21 01:52:16','2019-11-21 01:52:16',NULL,NULL),(23,'HOOPP','published','2019-11-21 01:52:28','2019-11-21 01:52:28',NULL,NULL),(24,'MEAG Munich ERGO','published','2019-11-21 01:52:47','2019-11-21 01:52:47',NULL,NULL),(25,'PSP Investments','published','2019-11-21 01:52:57','2019-11-21 01:52:57',NULL,NULL),(26,'Government Pension Fund Global','published','2019-11-21 01:53:18','2019-11-21 01:53:18',NULL,NULL),(27,'China Investment Corporation','published','2019-11-21 01:53:33','2019-11-21 01:53:33',NULL,NULL),(29,'Temasek','published','2019-11-21 01:53:48','2019-11-21 01:53:48',NULL,NULL),(30,'Generali','published','2019-11-21 01:54:01','2019-11-21 01:54:01',NULL,NULL),(31,'National Pension Service','published','2019-11-21 01:54:14','2019-11-21 01:54:14',NULL,NULL);
/*!40000 ALTER TABLE `re_investors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_investors_translations`
--

DROP TABLE IF EXISTS `re_investors_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_investors_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_investors_id` bigint unsigned NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_investors_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_investors_translations`
--

LOCK TABLES `re_investors_translations` WRITE;
/*!40000 ALTER TABLE `re_investors_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_investors_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_invoice_items`
--

DROP TABLE IF EXISTS `re_invoice_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_invoice_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `invoice_id` int unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `qty` int unsigned NOT NULL,
  `sub_total` decimal(15,2) unsigned NOT NULL,
  `tax_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00',
  `discount_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00',
  `amount` decimal(15,2) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_invoice_items`
--

LOCK TABLES `re_invoice_items` WRITE;
/*!40000 ALTER TABLE `re_invoice_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_invoice_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_invoices`
--

DROP TABLE IF EXISTS `re_invoices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_invoices` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int unsigned NOT NULL,
  `payment_id` int unsigned DEFAULT NULL,
  `reference_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` bigint unsigned NOT NULL,
  `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sub_total` decimal(15,2) unsigned NOT NULL,
  `tax_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00',
  `discount_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00',
  `coupon_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(15,2) unsigned NOT NULL,
  `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `paid_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `re_invoices_code_unique` (`code`),
  KEY `re_invoices_reference_type_reference_id_index` (`reference_type`,`reference_id`),
  KEY `re_invoices_payment_id_index` (`payment_id`),
  KEY `re_invoices_status_index` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_invoices`
--

LOCK TABLES `re_invoices` WRITE;
/*!40000 ALTER TABLE `re_invoices` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_invoices` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_packages`
--

DROP TABLE IF EXISTS `re_packages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_packages` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `price` double(15,2) unsigned NOT NULL,
  `currency_id` int unsigned NOT NULL,
  `number_of_listings` int unsigned NOT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `percent_save` int unsigned NOT NULL DEFAULT '0',
  `account_limit` int unsigned DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `features` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_packages`
--

LOCK TABLES `re_packages` WRITE;
/*!40000 ALTER TABLE `re_packages` DISABLE KEYS */;
INSERT INTO `re_packages` VALUES (1,'Free Trial',0.00,1,1,1,0,'published','2025-09-11 19:33:29','2025-09-11 19:33:29',0,1,NULL,'[[{\"key\":\"text\",\"value\":\"Limited time trial period\"}],[{\"key\":\"text\",\"value\":\"1 listing allowed\"}],[{\"key\":\"text\",\"value\":\"Basic support\"}]]'),(2,'Basic Listing',250.00,1,1,2,1,'published','2025-09-11 19:33:29','2025-09-11 19:33:29',0,5,NULL,'[[{\"key\":\"text\",\"value\":\"1 listing allowed\"}],[{\"key\":\"text\",\"value\":\"5 photos per listing\"}],[{\"key\":\"text\",\"value\":\"Basic support\"}]]'),(3,'Standard Package',1000.00,1,5,3,0,'published','2025-09-11 19:33:29','2025-09-11 19:33:29',20,10,NULL,'[[{\"key\":\"text\",\"value\":\"5 listings allowed\"}],[{\"key\":\"text\",\"value\":\"10 photos per listing\"}],[{\"key\":\"text\",\"value\":\"Priority support\"}]]'),(4,'Professional Package',1800.00,1,10,4,0,'published','2025-09-11 19:33:29','2025-09-11 19:33:29',28,15,NULL,'[[{\"key\":\"text\",\"value\":\"10 listings allowed\"}],[{\"key\":\"text\",\"value\":\"15 photos per listing\"}],[{\"key\":\"text\",\"value\":\"Premium support\"}],[{\"key\":\"text\",\"value\":\"Featured listings\"}]]'),(5,'Premium Package',2500.00,1,15,5,0,'published','2025-09-11 19:33:29','2025-09-11 19:33:29',33,20,NULL,'[[{\"key\":\"text\",\"value\":\"15 listings allowed\"}],[{\"key\":\"text\",\"value\":\"20 photos per listing\"}],[{\"key\":\"text\",\"value\":\"Premium support\"}],[{\"key\":\"text\",\"value\":\"Featured listings\"}],[{\"key\":\"text\",\"value\":\"Priority listing placement\"}]]');
/*!40000 ALTER TABLE `re_packages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_packages_translations`
--

DROP TABLE IF EXISTS `re_packages_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_packages_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_packages_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `features` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`re_packages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_packages_translations`
--

LOCK TABLES `re_packages_translations` WRITE;
/*!40000 ALTER TABLE `re_packages_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_packages_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_project_categories`
--

DROP TABLE IF EXISTS `re_project_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_project_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int unsigned NOT NULL,
  `category_id` int unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1897 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_project_categories`
--

LOCK TABLES `re_project_categories` WRITE;
/*!40000 ALTER TABLE `re_project_categories` DISABLE KEYS */;
INSERT INTO `re_project_categories` VALUES (1891,6,5),(1892,1,1),(1893,2,2),(1894,3,2),(1895,4,6),(1896,5,4);
/*!40000 ALTER TABLE `re_project_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_project_features`
--

DROP TABLE IF EXISTS `re_project_features`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_project_features` (
  `project_id` int unsigned NOT NULL,
  `feature_id` int unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_project_features`
--

LOCK TABLES `re_project_features` WRITE;
/*!40000 ALTER TABLE `re_project_features` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_project_features` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_projects`
--

DROP TABLE IF EXISTS `re_projects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_projects` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `images` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `floor_plans` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `number_block` smallint unsigned DEFAULT NULL,
  `number_floor` smallint DEFAULT NULL,
  `number_flat` smallint DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `featured_priority` int DEFAULT '0',
  `date_finish` date DEFAULT NULL,
  `date_sell` date DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'selling',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `investor_id` bigint unsigned DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `price_from` decimal(15,0) DEFAULT NULL,
  `price_to` decimal(15,0) DEFAULT NULL,
  `currency_id` int unsigned DEFAULT NULL,
  `city_id` int unsigned DEFAULT NULL,
  `author_id` int DEFAULT NULL,
  `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `latitude` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `longitude` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `zip_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `views` int unsigned NOT NULL DEFAULT '0',
  `country_id` int unsigned DEFAULT '1',
  `state_id` int unsigned DEFAULT NULL,
  `unique_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `private_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `re_projects_unique_id_unique` (`unique_id`),
  KEY `idx_re_projects_status` (`status`),
  KEY `idx_re_projects_location` (`location`),
  KEY `idx_re_projects_city_status` (`city_id`,`status`),
  KEY `idx_re_projects_state_status` (`state_id`,`status`),
  KEY `idx_re_projects_featured_sort` (`is_featured`,`featured_priority`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_projects`
--

LOCK TABLES `re_projects` WRITE;
/*!40000 ALTER TABLE `re_projects` DISABLE KEYS */;
INSERT INTO `re_projects` VALUES (1,'Walnut Park Apartments','<p>Now Open &amp; Leasing!</p>\r\n\r\n<p>Walnut Park is conveniently located on North Lamar Boulevard across from the 293-acre Walnut Creek Metropolitan Park and just south of Yager Lane near numerous shops and restaurants. Only 11 miles from downtown Austin, the heavily-wooded site borders Walnut Creek and offers residents inspiring views in an unparalleled, secluded community. In addition to resort spa amenities, the interiors are built and designed to condominium specifications with energy efficient features, stunning detail and upgraded finishes.</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','[\"projects\\/1.jpg\",\"projects\\/5.jpg\",\"projects\\/3.jpg\",\"projects\\/2.jpg\"]',NULL,'Austin, Texas 78753, USA',4,2,50,1,0,'2019-11-10','2019-03-11','selling','2019-11-18 00:34:49','2025-07-12 01:23:49',12,'Walnut Park is conveniently located on North Lamar Boulevard across from the 293-acre Walnut Creek Metropolitan Park and just south of Yager Lane near numerous shops and restaurants. Only 11 miles from downtown Austin, the heavily-wooded site borders Walnut Creek and offers residents inspiring views in an unparalleled, secluded community',NULL,NULL,1,4,NULL,'Botble\\ACL\\Models\\User','43.578848','-76.32197',NULL,846,1,1,NULL,NULL),(2,'Osaka Heights','<p>Osaka Heights is a state of the art apartment crafted with elegance, comfort and classiness.</p>\r\n\r\n<p>The grander apartments add new heights to the life of people in Colombo, Sri Lanka.</p>\r\n\r\n<p>Devised by a team of international consultants, Osaka Heights is all about contemporary design and comprehensive attention to detail in execution. If you are interested to own a luxury apartment at Sri Lanka, Osaka Heights is the best choice. The foundation of Osaka Heights is laid by skilled professionals, who capture your vision completely. The construction is built as per your elegant lifestyles, without any compromise in quality and class.</p>\r\n\r\n<p>The homes come with all comfy amenities and facilities for a superior life. From the panoramic views, the rooftop swimming pool and the landscaped eco-balconies, beauty meets you at every step in Osaka Heights. Made for an exclusive few, Osaka Heights gives you the advantage of sharing a space with like-minded individuals. An elevated lifestyle naturally follows, making Osaka Heights one of the most sought-after addresses in Colombo.</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','[\"projects\\/21.jpg\",\"projects\\/24.jpg\",\"projects\\/23.jpg\",\"projects\\/25.jpg\",\"projects\\/26.jpg\",\"projects\\/22.jpg\"]',NULL,'Kirulapone, Colombo 06, Colombo, Sri Lanka',1,15,450,1,0,'2019-08-09','2019-08-10','selling','2019-11-18 01:28:45','2025-07-12 01:23:49',3,'The homes come with all comfy amenities and facilities for a superior life. From the panoramic views, the rooftop swimming pool and the landscaped eco-balconies, beauty meets you at every step in Osaka Heights. Made for an exclusive few, Osaka Heights gives you the advantage of sharing a space with like-minded individuals.',NULL,NULL,1,3,NULL,'Botble\\ACL\\Models\\User','43.013638','-75.848066',NULL,436,1,1,NULL,NULL),(3,'Mimaroba Paradise','<h2><b>Why you should buy a house from this project?</b></h2>\r\n\r\n<ul>\r\n	<li>1. A summerhouse in the center of the city.</li>\r\n	<li>2. Remove the boundaries between you and the sea, you will be surrounded by blue sea.</li>\r\n	<li>3.&nbsp;Everything you have imagined - from infinity pool, zen garden, gourmet restaurant to thematic playgrounds awaiting you.</li>\r\n	<li>4.&nbsp;A unique design that makes luxury a habit, a wide variety of apartment plan options.</li>\r\n	<li>5.&nbsp;Reasonable payment options, affordable prices in Istanbul&#39;s most exclusive area.</li>\r\n</ul>\r\n\r\n<p>&lsquo;&rsquo; Mimaroba&rsquo;&rsquo; a modern beach district away from the bustle of Istanbul.&nbsp;The aim of the project is to make a living feel for the hosts in the deepest way.&nbsp;In this project you can enjoy a life with the sea and you can have a holiday for 12 months with social facilities and activities.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','[\"projects\\/13.jpg\",\"projects\\/12.jpg\",\"projects\\/11.jpg\",\"projects\\/14.jpg\"]',NULL,'Texas, USA',2,16,327,1,0,'2020-06-09','2019-09-10','selling','2019-11-18 03:30:34','2025-07-12 01:23:49',15,'A summerhouse in the center of the city. Remove the boundaries between you and the sea, you will be surrounded by blue sea. Everything you have imagined - from infinity pool, zen garden, gourmet restaurant to thematic playgrounds awaiting you. A unique design that makes luxury a habit, a wide variety of apartment plan options.',NULL,NULL,1,1,NULL,'Botble\\ACL\\Models\\User','42.795156','-76.237441',NULL,9640,1,1,NULL,NULL),(4,'Aegean Villas','<h2><strong>Aegean Villas</strong></h2>\r\n\r\n<p>Looks like Aegean town and be one of the highest rated sites in the region. A very large area of 312.000sqm&nbsp; has only 144 villas. Each villa&rsquo;s garden is independent of one another and protects private life. There are 400 adult olive trees in the common area landscape. Strengthening of neighborly relations with common sharing points such as open air cinema, village coffee, market.&nbsp; Increase the living motivation with 2,5km walking and cycling trail, tennis courts and carpet right activities.&nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<h4><strong>Why you should buy a house from this project?</strong></h4>\r\n\r\n<ul>\r\n	<li>1. Natural Architectural design.</li>\r\n	<li>2. Highest session rate in the region</li>\r\n	<li>3. Common sharing areas like open air cinema and village cafe.</li>\r\n	<li>4. 2,5km walking and cycling trail.</li>\r\n	<li>5. The gardens are detached and useful.</li>\r\n</ul><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','[\"properties\\/a5-1.jpg\",\"properties\\/a6-1.jpg\",\"properties\\/a7.jpg\",\"properties\\/a8.jpg\",\"properties\\/a10.jpg\",\"properties\\/a9.jpg\"]',NULL,'Büyükçekmece, İstanbul, Turkey',5,2,144,1,0,'2020-06-09','2020-10-04','selling','2019-11-18 03:38:13','2025-07-12 01:23:49',11,'A very large area of 312.000sqm  has only 144 villas. Each villa’s garden is independent of one another and protects private life. There are 400 adult olive trees in the common area landscape. Strengthening of neighborly relations with common sharing points such as open air cinema, village coffee, market.',NULL,NULL,1,2,NULL,'Botble\\ACL\\Models\\User','42.478281','-75.321856',NULL,6891,1,1,NULL,NULL),(5,'Aydos Forest Apartments','<p>The project, which offers unique opportunities for those who want to move into their new home, is the most advantageous housing project of the location with its easy payment options according to your budget. In your new home you will have a live site life with 90% occupancy; The <strong>clean air</strong> of Aydos Forest, the most important social facility of the region with <strong>3,700 sqm</strong> which brings enjoyable social activities to your feet, and much more are waiting for you. You will live a life with nature thanks to the artificial lake and cherry trees in the project as well as the landscape of Aydos Forest. and bacause of its easy connection to the main roads, you can easily reach the important centers of Istanbul.</p>\r\n\r\n<h4><b>Why you should buy a house from this project?</b></h4>\r\n\r\n<ul>\r\n	<li>1.&nbsp;Ready for delivery.</li>\r\n	<li>2.&nbsp;82% open area of landscape.</li>\r\n	<li>3.&nbsp;Aydos forest is right next to the project.</li>\r\n	<li>4.&nbsp;More than 90% of the project is occupied and full of life.</li>\r\n	<li>5. Ease of transportation.</li>\r\n</ul><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','[\"properties\\/q1.jpg\",\"properties\\/q2.jpg\",\"properties\\/q8.jpg\",\"properties\\/q7.jpg\",\"properties\\/q3.jpg\",\"properties\\/q6.jpg\"]',NULL,'Sancaktepe/İstanbul, Turkey',4,18,1394,1,0,'2019-10-30','2019-07-21','selling','2019-11-18 03:45:06','2025-07-12 01:23:49',2,'You will have a live site life with 90% occupancy; The clean air of Aydos Forest, the most important social facility of the region with 3,700 sqm which brings enjoyable social activities to your feet, and much more are waiting for you. You will live a life with nature thanks to the artificial lake and cherry trees in the project as',NULL,NULL,1,3,NULL,'Botble\\ACL\\Models\\User','43.270016','-75.054121',NULL,5536,1,1,NULL,NULL),(6,'The Avila Apartments','<p>A profoundly special project amidst history and Istanbul. In the heart of the Historical Peninsula, Select Lifestyle Alternatives ranging from 1+1 to 6+1, in limited numbers&hellip;. A timeless aesthetic enriched in perfect details .</p>\r\n\r\n<h4><b>Why you should buy a house from this project?</b></h4>\r\n\r\n<ul>\r\n	<li>1.&nbsp;Within the historical peninsula, there is a very special area where you will never find a similar one.</li>\r\n	<li>2.&nbsp;Unique sea view with a historical texture of Istanbul.</li>\r\n	<li>3.&nbsp;In the bustling city life, in the middle of all transportation possibilities.</li>\r\n	<li>4. 1+1 to 6+1 very special, suitable for all needs loft apartments</li>\r\n	<li>5.Large landscaping areas, cafes, shopping opportunities.</li>\r\n</ul><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','[\"properties\\/e1.jpg\",\"properties\\/e2.jpg\",\"properties\\/e3.jpg\",\"properties\\/e4.jpg\",\"properties\\/e5.jpg\",\"properties\\/e7.jpg\",\"properties\\/e8.jpg\"]',NULL,'Singapore Island, Singapore',2,4,125,1,0,'2019-11-19','2019-03-11','selling','2019-11-18 03:53:20','2025-07-12 01:23:49',10,'Within the historical peninsula, there is a very special area where you will never find a similar one. Unique sea view with a historical texture of Istanbul. In the bustling city life, in the middle of all transportation possibilities. Large landscaping areas, cafes, shopping opportunities.',NULL,NULL,1,5,NULL,'Botble\\ACL\\Models\\User','43.481307','-74.862851',NULL,7005,1,1,NULL,NULL);
/*!40000 ALTER TABLE `re_projects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_projects_translations`
--

DROP TABLE IF EXISTS `re_projects_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_projects_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_projects_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `floor_plans` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`re_projects_id`),
  KEY `idx_re_projects_trans_proj_lang` (`re_projects_id`,`lang_code`),
  KEY `idx_re_projects_trans_location` (`location`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_projects_translations`
--

LOCK TABLES `re_projects_translations` WRITE;
/*!40000 ALTER TABLE `re_projects_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_projects_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_properties`
--

DROP TABLE IF EXISTS `re_properties`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_properties` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `images` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `floor_plans` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `project_id` bigint unsigned DEFAULT '0',
  `number_bedroom` smallint unsigned DEFAULT NULL,
  `number_bathroom` smallint unsigned DEFAULT NULL,
  `number_floor` smallint unsigned DEFAULT NULL,
  `square` double DEFAULT NULL,
  `price` decimal(15,2) DEFAULT NULL,
  `price_unit` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `featured_priority` int DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'selling',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sale',
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `currency_id` int unsigned DEFAULT NULL,
  `city_id` int unsigned DEFAULT NULL,
  `period` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'month',
  `author_id` int DEFAULT NULL,
  `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `moderation_status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `reject_reason` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `expire_date` date DEFAULT NULL,
  `auto_renew` tinyint(1) NOT NULL DEFAULT '0',
  `never_expired` tinyint(1) NOT NULL DEFAULT '0',
  `latitude` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `longitude` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `zip_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `views` int unsigned NOT NULL DEFAULT '0',
  `country_id` int unsigned DEFAULT '1',
  `state_id` int unsigned DEFAULT NULL,
  `unique_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `private_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `re_properties_unique_id_unique` (`unique_id`),
  KEY `idx_re_properties_status` (`status`),
  KEY `idx_re_properties_location` (`location`),
  KEY `idx_re_properties_city_status` (`city_id`,`status`),
  KEY `idx_re_properties_state_status` (`state_id`,`status`),
  KEY `idx_re_properties_featured_sort` (`is_featured`,`featured_priority`,`created_at`),
  KEY `idx_re_properties_moderation_status` (`moderation_status`),
  KEY `idx_re_properties_expire_date` (`expire_date`)
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_properties`
--

LOCK TABLES `re_properties` WRITE;
/*!40000 ALTER TABLE `re_properties` DISABLE KEYS */;
INSERT INTO `re_properties` VALUES (1,'3 Beds Villa Calpe, Alicante','<p>This villa is equipped with all conveniences, where everything takes place on one living level. Three spacious bedrooms that all have direct access to the pool terrace and a spacious living room with an American kitchen with cooking island, from where you can walk onto the terrace through large glass sliding doors. Downstairs there is an indoor, double garage and laundry room with an internal staircase to the house. But you can also drive up to the front door by car. The terrace is spacious and there is an extra-long swimming pool, where you can swim laps well. Around there is a landscaped garden, which is also low in maintenance. Instead of gardening, there is more time left for wonderful enjoyment in and around this beautiful villa.</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','Alicante, Spain','[\"properties\\/1.jpg\",\"properties\\/3.jpg\",\"properties\\/4.jpg\",\"properties\\/2.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',6,3,3,1,600,700000.00,NULL,1,0,'selling','2019-11-17 20:34:59','2025-09-11 19:33:50','sale','This villa is equipped with all conveniences, where everything takes place on one living level. Three spacious bedrooms that all have direct access to the pool terrace and a spacious living room with an American kitchen with cooking island, from where you can walk onto the terrace through large glass sliding doors.',1,5,'month',9,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'43.954366','-76.204832',NULL,8416,1,1,NULL,NULL),(2,'Property For sale , Johannesburg, South Africa','<p><strong>Beautiful home situated in road closure in bedfordview.&nbsp;</strong>Nestled on a rocky outcrop of enormous boulders, this unique home is an architectural triumph designed to titilate the senses from the very start with a waterfall cascading into heated black quartzite pool &amp; stunning koi-pond. Flavours of the Seychelles.&nbsp;Enter from a winding pathway lined by palms and tree ferns into the hallway. The spacious living room with magnificent wood burning fireplace and large diningroom are complemented by a wet barrel bar, featuring designer built in wine cellar wall.</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','Johannesburg, South Africa','[\"properties\\/23.jpg\",\"properties\\/21.jpg\",\"properties\\/24.jpg\",\"properties\\/22.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',6,4,4,2,800,800000.00,NULL,1,0,'selling','2019-11-17 20:53:34','2025-09-11 19:33:50','sale','Beautiful home. Nestled on a rocky outcrop of enormous boulders, this unique home is an architectural triumph designed to titilate the senses from the very start with a waterfall cascading into heated black quartzite pool & stunning koi-pond. Flavours of the Seychelles.',1,2,'month',7,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'43.819483','-76.703637',NULL,1064,1,1,NULL,NULL),(3,'Stunning French Inspired Manor','<p>Stunning French Inspired Manor located within Briarwood Ranch near Solvang in the heart of the magnificent Santa Ynez Valley. This residence features appx 5,000sqft 4+ bedroom, 3.5 bath home with elegant and spacious interiors including formal living and dining, amazing view great room and kitchen, and massive bonus library media room with bar and custom built-ins. The magnificent lagoon-like infinity edge swimming pool offers beach entry, waterfalls and slide, Cabana and a complimentary poolside bar combo BBQ kitchen. A spacious 2 car garage is adjacent to craft room and large art studio</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','Solvang, Santa Barbara County, CA 93463, USA','[\"properties\\/31.jpg\",\"properties\\/32.jpg\",\"properties\\/33.jpg\",\"properties\\/34.jpg\",\"properties\\/35.jpg\",\"properties\\/311.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',5,4,3,1,450,1695000.00,NULL,1,0,'selling','2019-11-17 21:09:55','2025-09-11 19:33:50','sale','This residence features appx 5,000sqft 4+ bedroom, 3.5 bath home with elegant and spacious interiors including formal living and dining, amazing view great room and kitchen, and massive bonus library media room with bar and custom built-ins. The magnificent lagoon-like infinity edge swimming pool offers beach entry, waterfalls and slide',1,5,'month',9,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'43.722299','-75.466082',NULL,72,1,1,NULL,NULL),(4,'Villa for sale at Bermuda Dunes','<p>This rare and exceptional custom-built home sits on a premiere lot in the exclusive, private section of Castle Harbour. The property borders the golf course for 360 lineal feet, adding not only a gorgeous view but also complete privacy. The home itself sets above the golf course, for further privacy, and is located between the 5th and 6th fairways of the prestigious Bermuda Dunes Country Club. Chiseled glass entry doors lead you into a magnificent Italian Marble entry that encompasses the entire hallway and living room with a fireplace. The vast great room, with raised ceilings, captures the pool, golf, lake and dynamic southern, mountain views. There&#39;s a lovely Library with built in shelves on one wall. There&rsquo;s a sunken wet bar, with Italian Marble flooring, that provides views of the golf course and surrounding mountains.</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','Bermuda Dunes, Riverside County, CA 92203, USA','[\"properties\\/411.jpg\",\"properties\\/44.jpg\",\"properties\\/43.jpg\",\"properties\\/42.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',4,4,3,1,480,1295000.00,NULL,1,0,'selling','2019-11-17 21:18:11','2025-09-11 19:33:50','sale','This rare and exceptional custom-built home sits on a premiere lot in the exclusive, private section of Castle Harbour. The property borders the golf course for 360 lineal feet, adding not only a gorgeous view but also complete privacy. The home itself sets above the golf course, for further privacy, and is located between the 5th and 6th fairways of the prestigious Bermuda Dunes Country Club',1,1,'month',9,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'43.982274','-76.182356',NULL,7170,1,1,NULL,NULL),(5,'Walnut Park Apartment','<p>Only 11 miles from downtown Austin, the heavily-wooded site borders Walnut Creek and offers residents inspiring views in an unparalleled, secluded community</p>\r\n\r\n<ul>\r\n	<li>Heavily wooded site with dramatic 30-foot bluffs overlooking the scenic Walnut Creek</li>\r\n	<li>Conveniently located on North Lamar near numerous shops, major employers and restaurants</li>\r\n	<li>Easy access to I-35 and a short distance to US-183 and SH-45</li>\r\n	<li>Elegant clubhouse with a full kitchen, bar area, lounging area and creek-view veranda</li>\r\n	<li>24-hour fully-equipped fitness center with lockers and changing area</li>\r\n	<li>Indoor spa with cascading waterfall, steam room and cedar sauna</li>\r\n	<li>Spacious, gourmet kitchens with granite countertops and backsplashes</li>\r\n	<li>Stainless steel appliances and natural gas ranges</li>\r\n	<li>Designer hardwood cabinets with under-cabinet lighting</li>\r\n</ul><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','North Lamar Boulevard, Austin, Texas 78753, USA','[\"properties\\/8.jpg\",\"properties\\/7.jpg\",\"properties\\/5.jpg\",\"properties\\/1-1.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',1,2,2,1,980,2035.00,NULL,1,0,'renting','2019-11-18 00:47:52','2025-09-11 19:33:50','rent','Heavily wooded site with dramatic 30-foot bluffs overlooking the scenic Walnut Creek\r\nConveniently located on North Lamar near numerous shops, major employers and restaurants\r\nEasy access to I-35 and a short distance to US-183 and SH-45\r\nElegant clubhouse with a full kitchen, bar area, lounging area and creek-view veranda',1,1,'month',6,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'42.669053','-75.578469',NULL,5630,1,1,NULL,NULL),(6,'5 beds luxury house','<p>Luxury and spacious remodeled house in Sea Cliff with 3 levels, 5 bedrooms and 4 bathrooms, and a great Golden Gate View. 4-Car garage. The house is remodeled and spacious with a great layout, and is offered furnished. It is charming and beautiful with lots of details, has thoughtful front landscaping and a large backyard and a patio, and has a great view of the Golden Gate. On the main level the entry opens to a large foyer which connects to a beautiful and large living room with a fireplace, and to a formal dining room.</p>\r\n\r\n<p>The house has a garage which can accommodate 3 to 4 cars. The house is offered furnished. Can be leased for short term or long term. The minimum lease term is 3 months.</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','Seacliff San Francisco, Sea Cliff Avenue, San Francisco, CA 94121, USA','[\"properties\\/a3.jpg\",\"properties\\/a1.jpg\",\"properties\\/a2.jpg\",\"properties\\/a4.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',2,5,4,3,270,1808.00,NULL,1,0,'renting','2019-11-18 01:05:58','2025-09-11 19:33:50','rent','Luxury and spacious remodeled house in Sea Cliff with 3 levels, 5 bedrooms and 4 bathrooms, and a great Golden Gate View. 4-Car garage. The house is remodeled and spacious with a great layout, and is offered furnished. It is charming and beautiful with lots of details, has thoughtful front landscaping and a large backyard and a patio, and has a great view of the Golden Gate',1,1,'month',9,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'42.946985','-76.206616',NULL,6640,1,1,NULL,NULL),(7,'Family Victorian \"View\" Home','<p>There is a formal dining room and spacious living room located on either side of the updated eat-in kitchen skylight, white cabinets, and stainless steel appliances. Enjoy ample natural light and spectacular southern views from the main living room oversized windows and a walk-out deck. A bonus room (guest bedroom/office) and a full bath complete this level.</p>\r\n<p> </p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','Safeway San Francisco CA, Market Street, San Francisco, CA 94114, USA','[\"properties\\/b5.jpg\",\"properties\\/b1.jpg\",\"properties\\/b4.jpg\",\"properties\\/b6.jpg\",\"properties\\/b2.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',3,3,2,1,180,2580.00,NULL,1,0,'renting','2019-11-18 01:12:07','2025-09-11 19:33:50','rent','There is a formal dining room and spacious living room located on either side of the updated eat-in kitchen skylight, white cabinets, and stainless steel appliances. Enjoy ample natural light and spectacular southern views from the main living room oversized windows and a walk-out deck. A bonus room (guest bedroom/office) and a full bath complete t',1,1,'month',11,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'43.819646','-74.89512',NULL,6312,1,1,NULL,NULL),(8,'Osaka Heights Apartment','<p><strong>Kitchen</strong><br />\r\nCeramic tiled flooring, Granite counter top , Single bowl stainless steel kitchen sink with drain board and provisions for water purifier , electric hood , exhaust fan will be provided</p>\r\n\r\n<p><strong>Toilets</strong><br />\r\nAnti-skid Ceramic tiles on floor and ceramic wall tiles up to 7 feet height. White coloured branded sanitary fittings, Chromium plated taps , concealed plumbing</p>\r\n\r\n<p><strong>Doors</strong><br />\r\nMain door will be high quality wooden door, premium Windows quality pre-hung internal doors with wooded frame, UPVC or aluminum sliding doors and aluminum frame with glass for windows</p>\r\n\r\n<p>&nbsp;9 km to Katunayaka airport expressway entrance</p>\r\n\r\n<p>&nbsp;12 km to Southern expressway entrance at Kottawa</p>\r\n\r\n<p>&nbsp;2 km to Kalubowila General hospital</p>\r\n\r\n<p>&nbsp;All leading banks within a few kilometer radii</p>\r\n\r\n<p>&nbsp;Very close proximity to railway stations</p>\r\n\r\n<p>&nbsp;Many leading schools including CIS within 5 km radius</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','High Level Road, Colombo 06, Sri Lanka','[\"properties\\/24-1.jpg\",\"properties\\/22-1.jpg\",\"properties\\/p1.jpg\",\"properties\\/p2.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',2,2,2,1,110,150000.00,NULL,1,0,'selling','2019-11-18 01:49:36','2025-09-11 19:33:50','sale','Ceramic tiled flooring, Granite counter top , Single bowl stainless steel kitchen sink with drain board and provisions for water purifier , electric hood , exhaust fan will be provided. Anti-skid Ceramic tiles on floor and ceramic wall tiles up to 7 feet height. White coloured branded sanitary fittings, Chromium plated taps , concealed plumbing.',1,5,'month',2,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'42.928003','-74.902172',NULL,1636,1,1,NULL,NULL),(9,'Private Estate Magnificent Views','<p>Spacious 3 bedroom stabilised earth brick home, light and bright with statement entrance hall. Conservatory sun room, open plan kitchen/dining/lounge with raked cedar lined ceiling, kitchen with oregon timber cupboards and new Smeg oven. Air conditioner &amp; wood heater<br />\r\nGood sized bedrooms and main bedroom with spa overlooking tranquil gardens and Inlet.</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','110 Springdale Heights, Hay Denmark, WA, Australia','[\"properties\\/79.jpg\",\"properties\\/71.jpg\",\"properties\\/73.jpg\",\"properties\\/72.jpg\",\"properties\\/74.jpg\",\"properties\\/75.jpg\",\"properties\\/78.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',2,3,1,1,2000,694000.00,NULL,1,0,'selling','2019-11-18 02:02:19','2025-09-11 19:33:50','sale','Spacious 3 bedroom stabilised earth brick home, light and bright with statement entrance hall. Conservatory sun room, open plan kitchen/dining/lounge with raked cedar lined ceiling, kitchen with oregon timber cupboards and new Smeg oven. Air conditioner & wood heater',1,5,'month',2,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'42.812299','-76.137607',NULL,9247,1,1,NULL,NULL),(10,'Thompsons Road House for rent','<p>Perfectly positioned in the exclusive suburb of Bulleen, this renovated home 3 bedroom home offers a superb lifestyle to those seeking all the expected comforts, privacy, convenience to freeways &amp; transport, and space.<br />\r\nYou are welcomed by a beautiful, low maintenance and established front garden, with ample off street parking, an elevated porch and tantum large garage. Inside you will find a lovely neutral colour scheme and near new gleaming timber timber floors. There are three spacious bedrooms all with built in robes, serviced by a central family bathroom and separate powder room, along with a large open lounge and formal dining room beaming with natural light. The stunning kitchen comes complete with Blanco appliances, breakfast bar and top quality fittings and fixtures.</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','Thompsons Road, Bulleen VIC, Australia','[\"properties\\/5-1.jpg\",\"properties\\/7-1.jpg\",\"properties\\/8-1.jpg\",\"properties\\/9.jpg\",\"properties\\/6.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',6,3,3,1,160,1465.00,NULL,1,0,'renting','2019-11-18 02:16:53','2025-09-11 19:33:50','rent','Perfectly positioned in the exclusive suburb of Bulleen, this renovated home 3 bedroom home offers a superb lifestyle to those seeking all the expected comforts, privacy, convenience to freeways & transport, and space.\r\nYou are welcomed by a beautiful, low maintenance and established front garden, with ample off street parking, an elevated porch and tantum large garage',1,3,'month',1,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'42.601639','-76.36969',NULL,1324,1,1,NULL,NULL),(11,'Brand New 1 Bedroom Apartment In First Class Location','<p>Set-back from Sandy Bay Road, walk to everything that counts: vibrant Battery Point village, Salamanca Place (Tasmania&#39;s premier entertainment precinct), the City Centre, University of Tasmania, hotel, retail and an easy stroll away from bustling Sandy Bay shops, local schools and with public transport outside your front door.</p>\r\n\r\n<p>Please note: Elders Brown and Banks do not accept applications from applicants who have not inspected the property internally.</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','Sandy Bay Road, Sandy Bay TAS, Australia','[\"properties\\/12.jpg\",\"properties\\/10.jpg\",\"properties\\/13.jpg\",\"properties\\/14.jpg\",\"properties\\/15.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',5,1,1,1,80,1680.00,NULL,1,0,'renting','2019-11-18 02:22:48','2025-09-11 19:33:50','rent','Set-back from Sandy Bay Road, walk to everything that counts: vibrant Battery Point village, Salamanca Place (Tasmania\'s premier entertainment precinct), the City Centre, University of Tasmania, hotel, retail and an easy stroll away from bustling Sandy Bay shops, local schools and with public transport outside your front door.',1,5,'month',10,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'42.659611','-76.197177',NULL,8878,1,1,NULL,NULL),(12,'Elegant family home presents premium modern living','<p>Move straight into this beautifully presented four-bedroom home and enjoy the best in modern family living without lifting a finger. Two separate living areas and four generous bedrooms provide plenty of space to grow, and entertaining is a real pleasure on the elegant alfresco patio in a peaceful garden setting. The home is ideally set walking distance to parks and bus stops, moments to your choice of schools, and just several minutes to Westfield North Lakes.<br />\r\n&nbsp;</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','North Lakes QLD 4509, Australia','[\"properties\\/a1-1.jpg\",\"properties\\/a2-1.jpg\",\"properties\\/a3-1.jpg\",\"properties\\/a5.jpg\",\"properties\\/a4-1.jpg\",\"properties\\/a6.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',6,3,3,1,658,1574.00,NULL,1,0,'renting','2019-11-18 02:47:05','2025-09-11 19:33:50','rent','Move straight into this beautifully presented four-bedroom home and enjoy the best in modern family living without lifting a finger. Two separate living areas and four generous bedrooms provide plenty of space to grow, and entertaining is a real pleasure on the elegant alfresco patio in a peaceful garden setting.',1,5,'month',8,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'43.137361','-76.539998',NULL,419,1,1,NULL,NULL),(13,'Luxury Apartments in Singapore for Sale','<p>This apartment&nbsp;is located in Singapore, which has become a comfortable living center for the living, providing both attractive gains for investors and high premium. 840sqft<br />\r\n- High Floor<br />\r\n- Chinese Family<br />\r\n- Sky Garden<br />\r\n- Beautiful Roof Terrace with Jaccuzzi And<br />\r\nAlfresco Dinning<br />\r\n- Renovated with Quality Finishes<br />\r\n- Near Amenities<br />\r\n- Plenty of eateries.<br />\r\n- 5mins Walk to NTUC / Shaw Plaza<br />\r\n- Mins Drive To Orchard</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','Balestier Road, Singapore','[\"properties\\/5-2.jpg\",\"properties\\/2-3.jpg\",\"properties\\/3-3.jpg\",\"properties\\/4-2.jpg\",\"properties\\/1-3.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',6,2,2,1,78,918000.00,NULL,1,0,'selling','2019-11-18 07:23:02','2025-09-11 19:33:50','sale','This apartment is located in Singapore. High Floor, Chinese Family, Sky Garden, Beautiful Roof Terrace with Jaccuzzi and Alfresco Dinning, Renovated with Quality Finishes, Near Amenities, Plenty of eateries, 5mins Walk to NTUC / Shaw Plaza, Mins Drive To Orchard',1,5,'month',8,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'42.813772','-76.615855',NULL,5460,1,1,NULL,NULL),(14,'5 room luxury penthouse for sale in Kuala Lumpur','<p>The Sentral Residence (BRAND NEW LUXURY CONDO)<br />\r\n<br />\r\n-Next to St Regis 5 Star Hotel<br />\r\n-Excellent accessibility (LRT,KLIA TRANSIT,KTM)<br />\r\n-Rooftop Sky lounge,sky pool,sky gym<br />\r\n-Private lift lobby to own unit<br />\r\n<br />\r\nEPIC LUXE PREMIUM UNITS<br />\r\n(KLCC and Lake Garden VIEW)<br />\r\n<br />\r\nLargest unit in Sentral Residence<br />\r\n&nbsp;</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','Kuala Lumpur, Malaysia','[\"properties\\/6-2.jpg\",\"properties\\/7-2.jpg\",\"properties\\/9-1.jpg\",\"properties\\/8-2.jpg\",\"properties\\/10-1.jpg\",\"properties\\/11-1.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',1,5,7,20,377,1590000.00,NULL,1,0,'selling','2019-11-18 07:36:29','2025-09-11 19:33:50','sale','Next to St Regis 5 Star Hotel, Excellent accessibility (LRT,KLIA TRANSIT,KTM), Rooftop Sky lounge, sky pool, sky gym, KLCC and Lake Garden VIEW',1,4,'month',12,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'42.504328','-76.341293',NULL,6044,1,1,NULL,NULL),(15,'2 Floor house in Compound Pejaten Barat Kemang','<p>Want to lease a nice house in compound Renovated, balinese style ,homey and comfy area 220/300,&nbsp;3&nbsp;bedrooms,&nbsp;2 bathrooms, garden furnished renovated fasilitas : s.pool, tenis court, jogging track 24 hours security rent price : IDR 250.000.000 / year&nbsp;</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','Kota Administrasi Jakarta Selatan, South Jakarta City, Jakarta Raya, Indonesia','[\"properties\\/a1-2.jpg\",\"properties\\/a2-2.jpg\",\"properties\\/a3-2.jpg\",\"properties\\/a4-2.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',1,3,2,2,200,1400.00,NULL,1,0,'renting','2019-11-18 07:44:44','2025-09-11 19:33:50','rent','Want to lease a nice house in compound Renovated, balinese style ,homey and comfy area 220/300, 3 bedrooms, 2 bathrooms, garden furnished renovated fasilitas : s.pool, tenis court, jogging track 24 hours security rent price : IDR 250.000.000 / year ',1,5,'month',5,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'43.636294','-76.116519',NULL,3837,1,1,NULL,NULL),(16,'Apartment Muiderstraatweg in Diemen','<p>For rent fully furnished 3 bedroom apartment in Diemen.<br />\r\nVery suitable for a couple or maximum 2 working sharers, garantors are not accepted.<br />\r\n<br />\r\nLovely modern and very well maintained apartment in Diemen.<br />\r\nThe property is located on the first floor where you will find the living room and the kitchen with all modern conveniences.<br />\r\nOn the second floor 2 bedrooms and a nice bathroom with a seperate shower and bathtub.<br />\r\nOn this floor you have access to the small roof terrace.<br />\r\nLast but not least there is a spacious attic room on the third floor.<br />\r\nThe tram stops in front of the door and within 20 minutes you are in the heart of Amsterdam.<br />\r\nPets are not allowed.</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','Diemen, Netherlands','[\"properties\\/b4-1.jpg\",\"properties\\/b3.jpg\",\"properties\\/b5-1.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',3,3,1,2,90,2123.00,NULL,1,0,'renting','2019-11-18 07:59:14','2025-09-11 19:33:50','rent','Lovely modern and very well maintained apartment in Diemen.\r\nThe property is located on the first floor where you will find the living room and the kitchen with all modern conveniences.\r\nOn the second floor 2 bedrooms and a nice bathroom with a seperate shower and bathtub.\r\nOn this floor you have access to the small roof terrace.',1,3,'month',12,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'43.52876','-76.65882',NULL,1054,1,1,NULL,NULL),(17,'Nice Apartment for rent in Berlin','<p>Fully furnished shared all-inclusive apartments, with modern amenities that&rsquo;ll make you feel right at home. A great starting point for exploring the rest of the city and its many hidden gems. Area In the center of East Berlin, you&rsquo;ll find everything from delicious street food to flee markets, to high-end restaurants.</p>\r\n\r\n<p>In this bright, modern h(e)aven, you&rsquo;ll find a Queen size bed, a fully equipped kitchen, a separate bathroom with a walk-in shower and a study area for when the dedicated student in you awakens. Some come with great views, others with a nice and cozy balcony.</p><h5 class=\"headifhouse\">FAQs</h5> [faqs category_ids=\"1\" display_type=\"list\" expand_first_time=\"yes\" enable_lazy_loading=\"no\"][/faqs]','Berlin, Germany','[\"properties\\/t3.jpg\",\"properties\\/t1.jpg\",\"properties\\/t2.jpg\",\"properties\\/t4.jpg\",\"properties\\/t5.jpg\"]','[{\"name\":{\"key\":\"name\",\"value\":\"First Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"3\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"2\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}},{\"name\":{\"key\":\"name\",\"value\":\"Second Floor\"},\"bedrooms\":{\"key\":\"bedrooms\",\"value\":\"2\"},\"bathrooms\":{\"key\":\"bathrooms\",\"value\":\"1\"},\"image\":{\"key\":\"image\",\"value\":\"properties\\/floor.png\"}}]',6,1,1,1,33,1217.00,NULL,1,0,'renting','2019-11-18 08:13:07','2025-09-11 19:33:50','rent','Fully furnished shared all-inclusive apartments, with modern amenities that’ll make you feel right at home. A great starting point for exploring the rest of the city and its many hidden gems. Area In the center of East Berlin, you’ll find everything from delicious street food to flee markets, to high-end restaurants.',1,5,'month',12,'Botble\\RealEstate\\Models\\Account','approved',NULL,'2025-10-27',0,1,'43.222732','-76.105523',NULL,3759,1,1,NULL,NULL);
/*!40000 ALTER TABLE `re_properties` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_properties_translations`
--

DROP TABLE IF EXISTS `re_properties_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_properties_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_properties_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `floor_plans` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`re_properties_id`),
  KEY `idx_re_properties_trans_prop_lang` (`re_properties_id`,`lang_code`),
  KEY `idx_re_properties_trans_location` (`location`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_properties_translations`
--

LOCK TABLES `re_properties_translations` WRITE;
/*!40000 ALTER TABLE `re_properties_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_properties_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_property_categories`
--

DROP TABLE IF EXISTS `re_property_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_property_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `property_id` int unsigned NOT NULL,
  `category_id` int unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5457 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_property_categories`
--

LOCK TABLES `re_property_categories` WRITE;
/*!40000 ALTER TABLE `re_property_categories` DISABLE KEYS */;
INSERT INTO `re_property_categories` VALUES (5425,15,4),(5430,3,5),(5434,7,5),(5440,13,3),(5444,1,5),(5445,2,1),(5446,4,6),(5447,5,3),(5448,6,1),(5449,8,1),(5450,9,6),(5451,10,5),(5452,11,4),(5453,12,6),(5454,14,2),(5455,16,3),(5456,17,1);
/*!40000 ALTER TABLE `re_property_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_property_features`
--

DROP TABLE IF EXISTS `re_property_features`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_property_features` (
  `property_id` int unsigned NOT NULL,
  `feature_id` int unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_property_features`
--

LOCK TABLES `re_property_features` WRITE;
/*!40000 ALTER TABLE `re_property_features` DISABLE KEYS */;
INSERT INTO `re_property_features` VALUES (1,1),(1,2),(1,3),(1,4),(1,5),(1,6),(1,7),(1,8),(1,9),(1,10),(1,11),(1,12),(2,1),(2,2),(2,3),(2,4),(2,5),(2,6),(2,7),(2,8),(2,9),(2,10),(2,11),(2,12),(3,1),(3,2),(3,3),(3,4),(3,5),(3,6),(3,7),(3,8),(3,9),(3,10),(3,11),(3,12),(4,1),(4,2),(4,3),(4,4),(4,5),(4,6),(4,7),(4,8),(4,9),(4,10),(4,11),(4,12),(5,1),(5,2),(5,3),(5,4),(5,5),(5,6),(5,7),(5,8),(5,9),(5,10),(5,11),(5,12),(6,1),(6,2),(6,3),(6,4),(6,5),(6,6),(6,7),(6,8),(6,9),(6,10),(6,11),(6,12),(7,1),(7,2),(7,3),(7,4),(7,5),(7,6),(7,7),(7,8),(7,9),(7,10),(7,11),(7,12),(8,1),(8,2),(8,3),(8,4),(8,5),(8,6),(8,7),(8,8),(8,9),(8,10),(8,11),(8,12),(9,1),(9,2),(9,3),(9,4),(9,5),(9,6),(9,7),(9,8),(9,9),(9,10),(9,11),(9,12),(10,1),(10,2),(10,3),(10,4),(10,5),(10,6),(10,7),(10,8),(10,9),(10,10),(10,11),(10,12),(11,1),(11,2),(11,3),(11,4),(11,5),(11,6),(11,7),(11,8),(11,9),(11,10),(11,11),(11,12),(12,1),(12,2),(12,3),(12,4),(12,5),(12,6),(12,7),(12,8),(12,9),(12,10),(12,11),(12,12),(13,1),(13,2),(13,3),(13,4),(13,5),(13,6),(13,7),(13,8),(13,9),(13,10),(13,11),(13,12),(14,1),(14,2),(14,3),(14,4),(14,5),(14,6),(14,7),(14,8),(14,9),(14,10),(14,11),(14,12),(15,1),(15,2),(15,3),(15,4),(15,5),(15,6),(15,7),(15,8),(15,9),(15,10),(15,11),(15,12),(16,1),(16,2),(16,3),(16,4),(16,5),(16,6),(16,7),(16,8),(16,9),(16,10),(16,11),(16,12),(17,1),(17,2),(17,3),(17,4),(17,5),(17,6),(17,7),(17,8),(17,9),(17,10),(17,11),(17,12);
/*!40000 ALTER TABLE `re_property_features` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_reviews`
--

DROP TABLE IF EXISTS `re_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_reviews` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int unsigned NOT NULL,
  `reviewable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reviewable_id` bigint unsigned NOT NULL,
  `star` tinyint NOT NULL,
  `content` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'approved',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `reviews_unique` (`account_id`,`reviewable_id`,`reviewable_type`),
  KEY `re_reviews_reviewable_type_reviewable_id_index` (`reviewable_type`,`reviewable_id`)
) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_reviews`
--

LOCK TABLES `re_reviews` WRITE;
/*!40000 ALTER TABLE `re_reviews` DISABLE KEYS */;
INSERT INTO `re_reviews` VALUES (1,6,'Botble\\RealEstate\\Models\\Project',5,3,'Mock Turtle angrily: \'really you are painting those roses?\' Five and Seven said nothing, but looked at Alice, and looking at Alice for protection.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(2,11,'Botble\\RealEstate\\Models\\Project',4,5,'Alice asked in a thick wood. \'The first thing I\'ve got to the cur, \"Such a trial, dear Sir, With no jury or judge, would be very likely to eat the comfits.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(3,10,'Botble\\RealEstate\\Models\\Property',1,2,'Please, Ma\'am, is this New Zealand or Australia?\' (and she tried to say anything. \'Why,\' said the Mouse. \'--I proceed. \"Edwin and Morcar, the earls.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(4,4,'Botble\\RealEstate\\Models\\Property',9,5,'IS that to be in before the trial\'s over!\'.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(5,1,'Botble\\RealEstate\\Models\\Project',1,2,'Alice, very earnestly. \'I\'ve had nothing else to do, and in a very poor speaker,\' said the Mouse, getting up and walking away. \'You insult me by.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(6,2,'Botble\\RealEstate\\Models\\Property',5,5,'At last the Dodo solemnly, rising to its feet, ran round the neck of the court,\" and I had not noticed before, and she felt that there was the cat.) \'I hope they\'ll remember her saucer of milk at tea-time. Dinah my dear! Let this be a very curious thing.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(7,12,'Botble\\RealEstate\\Models\\Property',14,1,'Then they all spoke at once, with.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(8,11,'Botble\\RealEstate\\Models\\Project',3,4,'OURS they had a consultation about this, and Alice joined the procession, wondering very much pleased at having found out that it was neither more nor less than a.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(9,9,'Botble\\RealEstate\\Models\\Property',3,4,'Alice, in a low voice, \'Why the fact is, you ARE a simpleton.\' Alice did not at all fairly,\' Alice began, in a large ring, with the.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(10,7,'Botble\\RealEstate\\Models\\Property',8,1,'Knave \'Turn them over!\' The Knave of Hearts, carrying the King\'s crown on a bough of a tree. \'Did you speak?\' \'Not I!\' said the.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(12,1,'Botble\\RealEstate\\Models\\Property',15,1,'Duchess. \'Everything\'s got a moral, if only you can have no idea what a wonderful dream it had VERY long claws and a fall.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(13,1,'Botble\\RealEstate\\Models\\Project',2,2,'Duchess was sitting on a crimson velvet cushion; and, last of all her coaxing. Hardly knowing what she was considering in her French lesson-book. The Mouse looked at Alice. \'I\'M not a regular rule: you.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(14,5,'Botble\\RealEstate\\Models\\Project',3,3,'Seven flung down his cheeks, he went on, turning to the end: then stop.\' These were the two creatures, who had been jumping about like mad things all this grand procession, came THE KING AND QUEEN OF HEARTS. Alice was more than.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(16,3,'Botble\\RealEstate\\Models\\Project',2,1,'Duchess, digging her sharp little chin into Alice\'s shoulder as he found it so quickly that the hedgehog to, and, as a lark, And will talk in contemptuous tones of the Shark, But, when the White Rabbit, \'but it doesn\'t understand English,\' thought.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(17,10,'Botble\\RealEstate\\Models\\Project',6,1,'Lizard, who seemed ready to make it stop. \'Well, I\'d hardly finished the guinea-pigs!\' thought Alice. One of the.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(18,2,'Botble\\RealEstate\\Models\\Project',5,5,'Alice replied very gravely. \'What else had you to death.\"\' \'You are old, Father William,\' the young Crab, a little quicker. \'What a number of cucumber-frames there must be!\' thought Alice. \'Now we shall get on better.\' \'I\'d rather finish my tea,\' said the Mouse, in a.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(19,11,'Botble\\RealEstate\\Models\\Property',11,5,'No room!\' they cried out when they arrived, with a smile. There was certainly too much frightened that she did so, very carefully, remarking, \'I really must be Mabel after all, and I don\'t think,\' Alice went on, half to itself, half to Alice. \'Nothing,\'.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(20,8,'Botble\\RealEstate\\Models\\Property',15,5,'Mock Turtle had just begun to think that very few things indeed were.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(21,7,'Botble\\RealEstate\\Models\\Project',4,4,'I think you\'d take a fancy to cats if you drink much from a Caterpillar The Caterpillar was the first verse,\' said the Cat. \'I\'d nearly forgotten that I\'ve got to come yet, please your Majesty,\' said the King. \'Nothing whatever,\' said Alice. \'Why not?\' said the Mock Turtle.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(22,1,'Botble\\RealEstate\\Models\\Property',8,3,'I say,\' the Mock Turtle to sing you a present of everything I\'ve said as yet.\' \'A cheap sort of chance of this, so that it would be the right size to do so. \'Shall we try another figure of the teacups as the Dormouse turned out, and, by the English, who wanted leaders, and had been wandering.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(23,2,'Botble\\RealEstate\\Models\\Project',1,3,'ARE OLD, FATHER WILLIAM,\' to the conclusion that it seemed quite dull and stupid for life to go near the house of the pack, she could not think of nothing.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(24,2,'Botble\\RealEstate\\Models\\Project',3,5,'Alice said with some curiosity. \'What a curious feeling!\' said Alice; \'it\'s laid for a moment to be true): If she should meet the real Mary Ann, what ARE you doing out here? Run home this moment, and fetch me a pair of.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(25,9,'Botble\\RealEstate\\Models\\Project',4,4,'But she waited for some way, and nothing seems to.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(26,10,'Botble\\RealEstate\\Models\\Project',5,1,'ME,\' said the Gryphon, \'you first form into a large piece out of the right-hand bit to try the thing Mock Turtle yet?\' \'No,\' said Alice. The poor little thing howled so, that he had taken advantage of the legs of the court and got behind Alice as she left her.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(27,11,'Botble\\RealEstate\\Models\\Project',5,1,'I don\'t know the way down one side and then the other, trying every door, she walked sadly down the middle, wondering how she would feel with all her riper years, the simple and loving heart of her.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(28,4,'Botble\\RealEstate\\Models\\Project',5,5,'Gryphon: and Alice was so ordered about in all their simple sorrows, and find a thing,\' said the March Hare. \'Sixteenth,\' added the Gryphon, and the Queen jumped up on tiptoe, and peeped over the jury-box with the Dormouse. \'Write that down,\' the King replied.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(29,7,'Botble\\RealEstate\\Models\\Project',2,4,'She felt that there was a general clapping of hands at this: it was good manners for her to begin.\' He looked anxiously at the frontispiece if you only kept on puzzling about it just grazed his nose, and broke to pieces against one of these cakes,\' she thought, and it sat for a minute.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(30,3,'Botble\\RealEstate\\Models\\Project',3,5,'Dormouse, not choosing to notice this last remark that had a wink of sleep these three little sisters,\' the.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(31,12,'Botble\\RealEstate\\Models\\Property',9,4,'YOU?\' said the King, with an M--\' \'Why with an anxious look at a king,\' said Alice. \'That\'s the most curious thing I ever saw one that size? Why, it fills the whole pack rose up into the air, and came flying down upon her: she gave her.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(32,6,'Botble\\RealEstate\\Models\\Property',8,3,'Cat in a court of justice before, but she could not be denied, so she went on. Her listeners were perfectly quiet till she too began.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(33,1,'Botble\\RealEstate\\Models\\Property',1,3,'T!\' said the Hatter. Alice felt a little before she came in sight of the.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(35,8,'Botble\\RealEstate\\Models\\Project',1,1,'Alice said very politely, \'for I never was so small as this is May it won\'t be raving mad--at least not so mad as it can be,\' said the one who got any.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(36,7,'Botble\\RealEstate\\Models\\Project',1,4,'Queen, turning purple. \'I won\'t!\' said.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(37,9,'Botble\\RealEstate\\Models\\Property',4,2,'I am now? That\'ll be a queer thing, to be sure! However, everything is to-day! And.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(38,1,'Botble\\RealEstate\\Models\\Property',14,5,'I almost wish I hadn\'t drunk quite so much!\' Alas! it was very nearly in the middle, nursing a baby; the cook took.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(39,10,'Botble\\RealEstate\\Models\\Property',14,3,'Mouse was bristling all over, and she at once took up the conversation a little. \'\'Tis so,\' said the Queen, \'and take this young lady tells us a story.\' \'I\'m afraid I\'ve offended it again!\' For the Mouse in the court!\' and the three gardeners.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(41,11,'Botble\\RealEstate\\Models\\Property',12,2,'MINE.\' The Queen turned angrily away from her as hard as she had asked it aloud; and in despair she put.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(42,1,'Botble\\RealEstate\\Models\\Property',17,4,'Caterpillar. \'I\'m afraid I don\'t know,\' he went on eagerly: \'There is such a capital one for catching mice--oh, I beg your pardon!\' said the Mouse. \'--I proceed. \"Edwin and Morcar, the earls of Mercia and Northumbria--\"\' \'Ugh!\' said the Caterpillar.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(43,7,'Botble\\RealEstate\\Models\\Property',13,4,'Rabbit say, \'A barrowful of WHAT?\' thought Alice; \'I might as well as she went on, \'I must be a.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(44,2,'Botble\\RealEstate\\Models\\Property',8,3,'Cat: \'we\'re all mad here. I\'m mad. You\'re mad.\' \'How do you know about it, you know--\' (pointing with.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(45,3,'Botble\\RealEstate\\Models\\Project',4,1,'Just then she walked up towards it rather timidly, saying to her in a great hurry; \'and their names were Elsie, Lacie, and Tillie; and they lived at the sudden.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(46,6,'Botble\\RealEstate\\Models\\Project',6,4,'Alice hastily; \'but I\'m not used to know. Let me see: that would happen: \'\"Miss Alice! Come here directly, and get ready to talk about wasting IT. It\'s HIM.\' \'I don\'t think it\'s at all what had become of you? I gave her answer. \'They\'re done with blacking, I believe.\' \'Boots and.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(47,6,'Botble\\RealEstate\\Models\\Property',2,1,'Alice replied thoughtfully. \'They have their tails in their mouths--and they\'re all over crumbs.\' \'You\'re wrong about the.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(48,3,'Botble\\RealEstate\\Models\\Project',1,1,'Rabbit actually TOOK A WATCH OUT OF ITS WAISTCOAT-POCKET, and looked at it.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(49,2,'Botble\\RealEstate\\Models\\Project',4,3,'Mouse, in a tone of great curiosity. \'Soles and eels, of course,\' said the Mouse, turning to the rose-tree, she went on for some minutes. Alice thought she might as well she might, what a Mock Turtle went on, turning to Alice an excellent opportunity for showing off a bit.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(50,1,'Botble\\RealEstate\\Models\\Project',6,2,'This of course, Alice could see, when she went out, but it had fallen into the court, without even looking round. \'I\'ll fetch the executioner went off like an arrow. The Cat\'s head began fading away the time. Alice had no very clear notion how.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(51,10,'Botble\\RealEstate\\Models\\Property',7,3,'Let me see: I\'ll give them a new kind of authority over Alice. \'Stand up and saying, \'Thank you, sir, for your walk!\" \"Coming in a hurry that she did not notice this question, but hurriedly went on, without attending to her; \'but those serpents! There\'s no pleasing them!\' Alice was a.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(52,3,'Botble\\RealEstate\\Models\\Property',1,5,'Mock Turtle persisted. \'How COULD he turn them out of sight, he said in a very short time the Queen jumped up in a mournful tone, \'he won\'t do a thing before, but she remembered how small she was holding, and she could get to the Queen, who was sitting on the bank--the birds.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(53,5,'Botble\\RealEstate\\Models\\Project',1,3,'Alice an excellent plan, no doubt, and very angrily. \'A knot!\' said Alice, surprised at her side. She was moving them about as curious as it lasted.) \'Then the Dormouse into the earth. At last the Mock Turtle yawned and shut his note-book hastily. \'Consider your.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(55,12,'Botble\\RealEstate\\Models\\Property',1,5,'WOULD put their heads down and make out what it was: at first was in such a pleasant temper, and thought it would be as well be at school at once.\' However, she got up and ran the faster, while more and more puzzled, but she thought of herself, \'I wish I.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(56,5,'Botble\\RealEstate\\Models\\Property',17,5,'Bill,\' she gave her answer.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(58,1,'Botble\\RealEstate\\Models\\Project',3,3,'Dodo in an offended tone, and added with a deep voice, \'What are you getting on now, my dear?\' it continued, turning to Alice, flinging the baby was howling so much about a whiting before.\' \'I can see you\'re trying to make out which were the.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(60,8,'Botble\\RealEstate\\Models\\Property',1,2,'YET,\' she said this, she looked back once or twice, half hoping that the best cat in the air. This time there were three.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(62,12,'Botble\\RealEstate\\Models\\Project',2,2,'Long Tale They were indeed a queer-looking party that assembled on the hearth and grinning from ear to ear. \'Please would you tell me,\' said Alice, \'and if it thought that it might belong to one of the Queen\'s shrill cries to the Knave of Hearts, who only bowed and smiled.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(63,4,'Botble\\RealEstate\\Models\\Property',5,5,'THEIR eyes bright and eager.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(64,12,'Botble\\RealEstate\\Models\\Project',4,5,'There was no longer to be sure; but I hadn\'t quite finished my tea when I grow up, I\'ll write one--but I\'m grown up now,\' she said, without opening its eyes, for it was indeed: she was walking hand in hand with Dinah, and saying.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(65,4,'Botble\\RealEstate\\Models\\Property',6,5,'Rabbit hastily interrupted. \'There\'s a great deal too flustered to tell me who YOU are, first.\' \'Why?\' said the Mock Turtle angrily: \'really you are very dull!\' \'You ought to have wondered at this, but at last.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(66,8,'Botble\\RealEstate\\Models\\Property',3,5,'VERY good opportunity for making her escape; so she turned the corner, but the great wonder is, that there\'s any one left alive!\'.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(67,8,'Botble\\RealEstate\\Models\\Property',7,4,'ME.\' \'You!\' said the Caterpillar. \'Well, perhaps your feelings may be ONE.\' \'One, indeed!\' said the March Hare. \'Then it wasn\'t trouble enough hatching the eggs,\' said the King. \'It began with the Lory, with a smile. There was exactly three.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(68,1,'Botble\\RealEstate\\Models\\Property',11,1,'And she\'s such a curious croquet-ground in her hand, and Alice looked very anxiously into her head. \'If I eat or drink.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(69,8,'Botble\\RealEstate\\Models\\Project',3,4,'Alice; \'only, as it\'s asleep, I suppose I ought to be otherwise.\"\' \'I think I should like to be listening, so she felt sure she would feel with all speed back to the.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(71,9,'Botble\\RealEstate\\Models\\Property',11,3,'Dormouse, and repeated her question. \'Why did they draw the treacle from?\' \'You can draw water out of a well?\' The Dormouse shook itself, and was going to say,\' said the March Hare. The Hatter was the first figure!\' said the March Hare meekly replied. \'Yes, but I can\'t tell you just now what.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(72,11,'Botble\\RealEstate\\Models\\Property',14,1,'For some minutes it seemed quite natural to Alice severely. \'What are you thinking of?\' \'I beg your pardon!\' cried.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(73,7,'Botble\\RealEstate\\Models\\Property',3,3,'The Gryphon lifted up both its paws in surprise. \'What! Never heard of \"Uglification,\"\' Alice ventured to taste it, and kept doubling itself up and throw us, with the words \'EAT ME\' were beautifully marked in currants. \'Well, I\'ll eat it,\' said the Queen.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(79,3,'Botble\\RealEstate\\Models\\Property',13,4,'She went on so long that they were trying which word sounded best. Some of the court,\" and I could say if I must, I must,\' the King triumphantly, pointing to Alice.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(80,5,'Botble\\RealEstate\\Models\\Property',11,3,'COULD grin.\' \'They all can,\' said the Queen was silent. The Dormouse shook itself, and was delighted to find my way into a pig,\' Alice quietly said, just as I tell you, you coward!\' and at last it sat for a minute or two, she made out.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(81,12,'Botble\\RealEstate\\Models\\Property',17,1,'Alice, \'or perhaps they won\'t walk the way of keeping up the other, and making quite a commotion in the sea. But they HAVE their tails in their.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(84,9,'Botble\\RealEstate\\Models\\Property',5,1,'Hatter. This piece of bread-and-butter in the face. \'I\'ll put a white one in by mistake; and if I chose,\' the Duchess and the pattern on their faces, so that her shoulders were nowhere to be rude, so she helped herself to some tea and bread-and-butter, and then another confusion of.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(87,5,'Botble\\RealEstate\\Models\\Property',10,4,'Time!\' \'Perhaps not,\' Alice cautiously replied: \'but I must have been changed several times since then.\' \'What do you know about it, you know.\' It was, no doubt: only Alice did not like the tone of great surprise.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(89,5,'Botble\\RealEstate\\Models\\Property',3,1,'THAT is--\"Take care of the court. (As that is enough,\' Said his father; \'don\'t give yourself airs! Do.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(90,10,'Botble\\RealEstate\\Models\\Project',4,5,'Alice hastily; \'but I\'m not myself, you see.\' \'I.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(91,4,'Botble\\RealEstate\\Models\\Project',1,2,'I suppose?\' said Alice. \'Why, SHE,\' said the King. Here one of the court. (As that is enough,\' Said his father; \'don\'t give yourself airs! Do you.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(92,8,'Botble\\RealEstate\\Models\\Property',13,1,'Dormouse say?\' one of the miserable Mock Turtle. \'Hold your tongue!\' said the White Rabbit as he spoke, and added \'It isn\'t a letter, after all: it\'s a French mouse, come over with diamonds, and walked a little now and then added them up, and.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(93,5,'Botble\\RealEstate\\Models\\Project',4,1,'March Hare said to Alice; and Alice called out \'The race is over!\' and they walked off together. Alice was rather doubtful whether she ought not to be a walrus or.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(94,5,'Botble\\RealEstate\\Models\\Property',5,3,'Alice again, for this curious child was very like having a game of croquet she was playing against herself, for she was quite a commotion in the back. However, it was looking about for some time without hearing anything more: at last in the flurry of the lefthand bit. * * * * * * * * * * * * *.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(95,9,'Botble\\RealEstate\\Models\\Property',6,2,'I could show you our cat Dinah: I think I can find out the answer to shillings and pence. \'Take off your hat,\' the King said to the fifth bend, I think?\' he said in a VERY turn-up nose, much more like a wild beast, screamed \'Off with her face like the.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(96,9,'Botble\\RealEstate\\Models\\Property',2,2,'Queen shrieked out. \'Behead that Dormouse! Turn that Dormouse out of sight, he said to Alice; and Alice thought over all she could see, when she found herself lying on their hands and feet, to make ONE respectable person!\' Soon her eye.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(97,4,'Botble\\RealEstate\\Models\\Property',10,1,'Alice in a moment to be otherwise than what you would seem.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(99,4,'Botble\\RealEstate\\Models\\Property',11,4,'The twelve jurors were writing down \'stupid things!\' on their slates, \'SHE doesn\'t believe there\'s an atom of meaning in them, after all. I needn\'t be so kind,\' Alice replied, so eagerly.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(100,8,'Botble\\RealEstate\\Models\\Project',6,4,'The next witness would be so stingy about it, even if my head would go through,\' thought poor Alice, \'to speak to.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(101,8,'Botble\\RealEstate\\Models\\Project',5,2,'King; and the other side. The further off from England the nearer is to find it out, we should all have our heads cut off, you know. Which shall sing?\' \'Oh, YOU sing,\' said the Caterpillar. \'I\'m afraid I am, sir,\' said Alice; \'I must be a grin, and she.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(103,9,'Botble\\RealEstate\\Models\\Property',15,1,'Dodo suddenly called out \'The Queen! The Queen!\' and the sounds will take care of the singers in the distance would take the place of the gloves, and she tried to get her head down to.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(104,12,'Botble\\RealEstate\\Models\\Project',3,2,'VERY turn-up nose, much more like a wild beast, screamed \'Off with his head!\' or \'Off with their fur clinging.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(105,7,'Botble\\RealEstate\\Models\\Project',6,3,'Alice said nothing: she had not noticed before, and behind it was all finished, the Owl, as a.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(107,12,'Botble\\RealEstate\\Models\\Property',5,4,'Suppress him! Pinch him! Off with his head!\' or \'Off with his head!\' or \'Off with her head! Off--\' \'Nonsense!\' said Alice.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(108,8,'Botble\\RealEstate\\Models\\Property',10,2,'Mouse did not at all for any lesson-books!\' And so it was neither more nor less than no time she\'d have everybody executed, all round. \'But she must have been changed in the world! Oh, my dear paws! Oh my fur and whiskers! She\'ll get me.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(109,9,'Botble\\RealEstate\\Models\\Project',2,2,'As soon as look at a reasonable pace,\' said the Dormouse, after thinking a minute or two, and the Queen was to find that she had to fall upon Alice, as she added, to herself, for she.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(110,10,'Botble\\RealEstate\\Models\\Property',4,3,'Gryphon interrupted in a tone of great curiosity. \'It\'s a friend of mine--a Cheshire Cat,\' said Alice: \'I don\'t know where Dinn may be,\' said the voice. \'Fetch me my gloves this moment!\' Then came a little way forwards each.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(112,9,'Botble\\RealEstate\\Models\\Property',8,5,'I know!\' exclaimed Alice, who was passing at the top of its mouth, and its great eyes half shut. This seemed to have him with them,\' the Mock Turtle. \'Very much indeed,\' said Alice. \'I\'ve read that in some book, but I shall think nothing of tumbling down stairs! How brave they\'ll all think me for.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(113,4,'Botble\\RealEstate\\Models\\Property',13,4,'Alice started to her daughter \'Ah, my dear! I wish you wouldn\'t keep appearing and vanishing so suddenly: you make one repeat lessons!\' thought Alice; \'I might as well say that \"I see what would.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(114,5,'Botble\\RealEstate\\Models\\Property',12,5,'Majesty,\' he began. \'You\'re a very little use, as it left no mark on the trumpet, and then Alice put down the chimney, has he?\' said Alice desperately: \'he\'s perfectly idiotic!\' And.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(116,7,'Botble\\RealEstate\\Models\\Project',3,3,'YOU manage?\' Alice asked. \'We called him a fish)--and rapped loudly at the Mouse\'s tail; \'but why do you know about it, you know.\' \'Not the same year for such dainties would not open any of them. \'I\'m.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(117,4,'Botble\\RealEstate\\Models\\Project',3,4,'Alice, \'it\'ll never do to come once a week: HE taught us Drawling.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(118,1,'Botble\\RealEstate\\Models\\Property',12,3,'THAT is--\"Take care of the Shark, But, when the White Rabbit interrupted.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(119,9,'Botble\\RealEstate\\Models\\Property',14,3,'A secret, kept from all the rats and--oh dear!\' cried Alice hastily, afraid that it was talking in his throat,\' said the King, \'that only makes the matter on, What would become of you? I gave her answer. \'They\'re done with blacking, I believe.\' \'Boots and shoes under the door; so.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(120,2,'Botble\\RealEstate\\Models\\Property',2,5,'Hatter went on all the time he had taken his.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(123,8,'Botble\\RealEstate\\Models\\Property',12,1,'Mock Turtle drew a long tail, certainly,\' said Alice, a little while, however, she waited patiently. \'Once,\' said the Mock Turtle, \'they--you\'ve seen them, of course?\' \'Yes,\' said Alice timidly. \'Would you like the.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(125,3,'Botble\\RealEstate\\Models\\Property',3,1,'Hatter with a teacup in one hand and a large mushroom growing near her, about the temper of your flamingo. Shall I try the whole pack rose up into.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(128,6,'Botble\\RealEstate\\Models\\Property',6,5,'I can find out the answer to it?\' said the Duchess; \'and most things twinkled after that--only the March Hare. \'Sixteenth,\' added the Queen. \'You make me grow large again, for she was ready to talk nonsense. The Queen\'s argument was, that anything that looked like the look of the doors of.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(129,12,'Botble\\RealEstate\\Models\\Property',6,5,'The rabbit-hole went straight on.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(130,3,'Botble\\RealEstate\\Models\\Project',5,1,'And welcome little fishes in With gently smiling jaws!\' \'I\'m sure I\'m not looking for them, and he hurried off. Alice thought this a good.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(132,8,'Botble\\RealEstate\\Models\\Project',2,4,'Alice said nothing; she had never had to fall.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(135,4,'Botble\\RealEstate\\Models\\Property',8,4,'I almost think I could, if I like being that person, I\'ll come up: if not, I\'ll stay down here with me! There are no mice in the wind, and the Queen was to find.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(137,3,'Botble\\RealEstate\\Models\\Property',10,2,'Knave. The Knave of Hearts, who only bowed and smiled in reply. \'That\'s right!\' shouted.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(138,1,'Botble\\RealEstate\\Models\\Property',6,1,'Dodo suddenly called out to sea!\" But the snail replied \"Too far, too far!\" and gave a sudden burst of tears, \'I do wish I hadn\'t to bring but one; Bill\'s got the other--Bill! fetch it back!\' \'And who are THESE?\' said the youth, \'one would hardly suppose That your eye was as.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(139,2,'Botble\\RealEstate\\Models\\Property',1,3,'Rabbit in a solemn tone, only changing the order of the Queen\'s voice in the sea. The master was an immense length of neck, which seemed to be ashamed of yourself for asking such a fall as this, I shall have somebody to talk nonsense. The Queen\'s Croquet-Ground A large rose-tree.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(140,11,'Botble\\RealEstate\\Models\\Project',2,1,'Alice very politely; but she got to see if she had looked under it, and talking over its head. \'Very uncomfortable for the moment he was going to happen next. \'It\'s--it\'s a very good.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(142,10,'Botble\\RealEstate\\Models\\Property',6,1,'As she said to herself. \'Of the mushroom,\' said the Caterpillar. \'Is that the pebbles were all in bed!\' On various pretexts they all cheered. Alice thought to herself, \'in my going out.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(147,10,'Botble\\RealEstate\\Models\\Project',1,4,'King say in a long, low hall, which was sitting on a three-legged stool in the distance.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(148,8,'Botble\\RealEstate\\Models\\Project',4,2,'It did so indeed, and much sooner than she.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(149,8,'Botble\\RealEstate\\Models\\Property',8,4,'Hardly knowing what she did, she picked her way through the neighbouring pool--she could.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(154,7,'Botble\\RealEstate\\Models\\Property',6,4,'King, with an M, such as mouse-traps, and the reason so many out-of-the-way things to happen, that it.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(157,12,'Botble\\RealEstate\\Models\\Property',11,5,'Gryphon, and the other two were using it as far down the little golden key, and when she went hunting about, and make one quite giddy.\' \'All right,\' said the Queen. \'Sentence first--verdict afterwards.\' \'Stuff and nonsense!\'.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(158,3,'Botble\\RealEstate\\Models\\Property',15,1,'Ugh, Serpent!\' \'But I\'m NOT a serpent, I tell.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(159,8,'Botble\\RealEstate\\Models\\Property',9,2,'Alice was not quite sure whether it was neither more nor less than a real nose; also its eyes again, to see it written up somewhere.\' Down, down, down. There was no more to be otherwise than what you had been broken to.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(161,3,'Botble\\RealEstate\\Models\\Property',8,1,'For instance, suppose it were nine o\'clock in the pool as it could go, and making faces at him as he came, \'Oh! the Duchess, it had grown so large in the middle, wondering how she would.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(162,1,'Botble\\RealEstate\\Models\\Project',4,2,'Presently she began looking at them with the dream of Wonderland of long ago: and how she would have this cat removed!\' The Queen turned crimson with fury, and, after waiting.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(163,1,'Botble\\RealEstate\\Models\\Property',2,2,'Queen of Hearts were seated on their slates, \'SHE doesn\'t believe there\'s an atom of meaning in it,\' but none of my life.\' \'You are old, Father.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(164,10,'Botble\\RealEstate\\Models\\Property',3,4,'Said the mouse doesn\'t get out.\" Only I don\'t care which happens!\' She ate a little bit, and said \'What else had you to offer it,\' said the Cat. \'I said pig,\' replied Alice; \'and I wish I.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(165,6,'Botble\\RealEstate\\Models\\Project',4,3,'Alice, with a sudden leap out of its right paw round, \'lives a March Hare. The.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(168,7,'Botble\\RealEstate\\Models\\Project',5,1,'The first witness was the King; \'and don\'t look at them--\'I wish they\'d get the trial done,\' she thought.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(169,1,'Botble\\RealEstate\\Models\\Property',13,2,'CHAPTER VI. Pig and Pepper For a minute or two, she made out that it might belong to one of.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(172,8,'Botble\\RealEstate\\Models\\Property',11,3,'I shall have some fun now!\' thought Alice. One of the Lizard\'s slate-pencil, and the moment they saw her, they hurried back to the jury, of.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(173,9,'Botble\\RealEstate\\Models\\Project',1,2,'Puss,\' she began, in a very humble tone, going down on their throne when they saw Alice coming. \'There\'s PLENTY of room!\' said Alice in a court of justice before, but she stopped hastily, for the end of the house, \"Let us both go to.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(174,10,'Botble\\RealEstate\\Models\\Property',12,3,'These were the two sides of it; then Alice dodged behind a great deal to ME,\' said the Mouse, turning to Alice: he had never done such a curious feeling!\' said Alice; \'living at the top of its mouth and yawned once or twice she had plenty of time as she ran; but the.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(178,5,'Botble\\RealEstate\\Models\\Project',6,3,'Her chin was pressed so closely against her foot, that there was no more of it now in sight, and no more to do that,\' said the Hatter.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(179,6,'Botble\\RealEstate\\Models\\Project',2,2,'Alice for protection. \'You shan\'t be beheaded!\'.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(182,10,'Botble\\RealEstate\\Models\\Property',9,2,'For some minutes it puffed away without being seen, when she caught it, and very nearly.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(183,3,'Botble\\RealEstate\\Models\\Property',7,2,'King, \'or I\'ll have you executed, whether you\'re nervous or not.\' \'I\'m a poor man,\' the Hatter went on eagerly: \'There is such a thing I know. Silence all round, if you could manage it?) \'And what are YOUR shoes done with?\' said the Hatter. \'Nor I,\' said the.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(184,12,'Botble\\RealEstate\\Models\\Property',8,4,'AND WASHING--extra.\"\' \'You couldn\'t have done just as.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(185,6,'Botble\\RealEstate\\Models\\Project',1,2,'Dinah, if I fell off the subjects on his spectacles. \'Where shall I begin, please your Majesty,\' said the King.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(186,8,'Botble\\RealEstate\\Models\\Property',16,5,'Between yourself and me.\' \'That\'s the most confusing thing I know. Silence all round, if you please! \"William the Conqueror, whose.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(190,10,'Botble\\RealEstate\\Models\\Project',2,4,'Dodo suddenly called out to sea. So they got thrown out to sea. So they got thrown out to her chin upon Alice\'s shoulder, and it was the BEST butter, you know.\' Alice had.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(191,9,'Botble\\RealEstate\\Models\\Project',3,3,'Alice, \'to speak to this last remark. \'Of course not,\' Alice cautiously replied, not feeling at all anxious to have got into the wood. \'It\'s the Cheshire Cat.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(192,1,'Botble\\RealEstate\\Models\\Project',5,5,'Dormouse was sitting next to her. \'I wish the creatures argue. It\'s enough to drive one crazy!\' The Footman seemed.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(193,5,'Botble\\RealEstate\\Models\\Property',9,5,'Alice gave a little nervous about it just at first, but, after watching it a bit, if you were never.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(194,6,'Botble\\RealEstate\\Models\\Property',1,4,'Will you, won\'t you join the dance. So they couldn\'t get them out again. The Mock.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(195,3,'Botble\\RealEstate\\Models\\Property',16,3,'Adventures, till she was considering in her hands, and was delighted to find that she looked back once or.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(196,11,'Botble\\RealEstate\\Models\\Project',1,2,'So she set to work shaking him and punching him in the same thing as \"I eat what I get\" is the capital of Rome, and Rome--no, THAT\'S all wrong, I\'m certain! I must have a trial: For really this morning I\'ve nothing to do: once.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50'),(198,11,'Botble\\RealEstate\\Models\\Property',8,3,'Duchess! The Duchess! Oh my dear.','approved','2025-09-11 19:33:50','2025-09-11 19:33:50');
/*!40000 ALTER TABLE `re_reviews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_tags`
--

DROP TABLE IF EXISTS `re_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_tags` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_tags`
--

LOCK TABLES `re_tags` WRITE;
/*!40000 ALTER TABLE `re_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_tags_items`
--

DROP TABLE IF EXISTS `re_tags_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_tags_items` (
  `tag_id` int unsigned NOT NULL,
  `item_id` int unsigned NOT NULL,
  `type` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_tags_items`
--

LOCK TABLES `re_tags_items` WRITE;
/*!40000 ALTER TABLE `re_tags_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `re_tags_items` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `revisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `revisions` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `revisionable_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `revisionable_id` int NOT NULL,
  `user_id` int DEFAULT NULL,
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `old_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `new_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `revisions_revisionable_id_revisionable_type_index` (`revisionable_id`,`revisionable_type`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `revisions` WRITE;
/*!40000 ALTER TABLE `revisions` DISABLE KEYS */;
INSERT INTO `revisions` VALUES (1,'Botble\\Blog\\Models\\Post',3,1,'is_featured','0','1','2019-11-18 02:59:46','2019-11-18 02:59:46'),(2,'Botble\\Blog\\Models\\Post',2,1,'is_featured','0','1','2019-11-18 03:00:10','2019-11-18 03:00:10'),(3,'Botble\\Blog\\Models\\Post',1,1,'is_featured','0','1','2019-11-18 03:00:20','2019-11-18 03:00:20'),(4,'Botble\\Blog\\Models\\Post',1,1,'description','BCG leaders shared with investors at a meeting this month that real estate and renewable energy will be the two main activities of the group','BCG leaders shared with investors at a meeting this month that real estate and renewable energy will be the two main activities of the group. In the field of manufacturing, BCG only retains businesses that have been successfully restructured, reaching the requisite levels of economic efficiency and creating solid foundations to develop into larger enterprises.','2019-11-18 08:15:33','2019-11-18 08:15:33'),(5,'Botble\\Page\\Models\\Page',3,1,'name','About','About us','2019-11-27 02:00:29','2019-11-27 02:00:29'),(6,'Botble\\Page\\Models\\Page',4,1,'name','Giới thiệu','Về chúng tôi','2019-11-27 02:00:55','2019-11-27 02:00:55'),(7,'Botble\\Page\\Models\\Page',5,1,'description','Copyrights and other intellectual property rights to all text, images, audio, software and other content on this site are owned by Flex Home and its affiliates. Users are allowed to view the contents of the website, cite the contents by printing, downloading the hard disk and distributing it to others for non-commercial purposes, providing information or personal purposes.','Copyrights and other intellectual property rights to all text, images, audio, software and other content on this site are owned by Flex Home and its affiliates. Users are allowed to view the contents of the website, cite the contents by printing, downloading the hard disk and distributing it to others for non-commercial purposes.','2019-11-27 02:35:37','2019-11-27 02:35:37'),(8,'Botble\\Page\\Models\\Page',7,1,'name','Flex Home','Homepage','2020-02-06 21:54:04','2020-02-06 21:54:04'),(9,'Botble\\Page\\Models\\Page',7,1,'template','default','homepage','2020-02-06 21:55:08','2020-02-06 21:55:08');
/*!40000 ALTER TABLE `revisions` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `role_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_users` (
  `user_id` int unsigned NOT NULL,
  `role_id` int unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`user_id`,`role_id`),
  KEY `role_users_user_id_index` (`user_id`),
  KEY `role_users_role_id_index` (`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_users`
--

LOCK TABLES `role_users` WRITE;
/*!40000 ALTER TABLE `role_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `role_users` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `roles` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `permissions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `created_by` int unsigned NOT NULL,
  `updated_by` int unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `roles_slug_unique` (`slug`),
  KEY `roles_created_by_index` (`created_by`),
  KEY `roles_updated_by_index` (`updated_by`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` VALUES (1,'admin','Admin','{\"users.index\":true,\"users.create\":true,\"users.edit\":true,\"users.destroy\":true,\"roles.index\":true,\"roles.create\":true,\"roles.edit\":true,\"roles.destroy\":true,\"core.system\":true,\"core.cms\":true,\"core.manage.license\":true,\"systems.cronjob\":true,\"core.tools\":true,\"tools.data-synchronize\":true,\"media.index\":true,\"files.index\":true,\"files.create\":true,\"files.edit\":true,\"files.trash\":true,\"files.destroy\":true,\"folders.index\":true,\"folders.create\":true,\"folders.edit\":true,\"folders.trash\":true,\"folders.destroy\":true,\"settings.index\":true,\"settings.common\":true,\"settings.options\":true,\"settings.email\":true,\"settings.media\":true,\"settings.admin-appearance\":true,\"settings.cache\":true,\"settings.datatables\":true,\"settings.email.rules\":true,\"settings.others\":true,\"menus.index\":true,\"menus.create\":true,\"menus.edit\":true,\"menus.destroy\":true,\"optimize.settings\":true,\"pages.index\":true,\"pages.create\":true,\"pages.edit\":true,\"pages.destroy\":true,\"plugins.index\":true,\"plugins.edit\":true,\"plugins.remove\":true,\"plugins.marketplace\":true,\"sitemap.settings\":true,\"core.appearance\":true,\"theme.index\":true,\"theme.activate\":true,\"theme.remove\":true,\"theme.options\":true,\"theme.custom-css\":true,\"theme.custom-js\":true,\"theme.custom-html\":true,\"theme.robots-txt\":true,\"settings.website-tracking\":true,\"widgets.index\":true,\"ads.index\":true,\"ads.create\":true,\"ads.edit\":true,\"ads.destroy\":true,\"ads.settings\":true,\"analytics.general\":true,\"analytics.page\":true,\"analytics.browser\":true,\"analytics.referrer\":true,\"analytics.settings\":true,\"announcements.index\":true,\"announcements.create\":true,\"announcements.edit\":true,\"announcements.destroy\":true,\"announcements.settings\":true,\"audit-log.index\":true,\"audit-log.destroy\":true,\"backups.index\":true,\"backups.create\":true,\"backups.restore\":true,\"backups.destroy\":true,\"plugins.blog\":true,\"posts.index\":true,\"posts.create\":true,\"posts.edit\":true,\"posts.destroy\":true,\"categories.index\":true,\"categories.create\":true,\"categories.edit\":true,\"categories.destroy\":true,\"tags.index\":true,\"tags.create\":true,\"tags.edit\":true,\"tags.destroy\":true,\"blog.settings\":true,\"posts.export\":true,\"posts.import\":true,\"captcha.settings\":true,\"career.index\":true,\"career.create\":true,\"career.edit\":true,\"career.destroy\":true,\"contacts.index\":true,\"contacts.edit\":true,\"contacts.destroy\":true,\"contact.custom-fields\":true,\"contact.settings\":true,\"plugin.faq\":true,\"faq.index\":true,\"faq.create\":true,\"faq.edit\":true,\"faq.destroy\":true,\"faq_category.index\":true,\"faq_category.create\":true,\"faq_category.edit\":true,\"faq_category.destroy\":true,\"faqs.settings\":true,\"languages.index\":true,\"languages.create\":true,\"languages.edit\":true,\"languages.destroy\":true,\"translations.import\":true,\"translations.export\":true,\"property-translations.import\":true,\"property-translations.export\":true,\"plugin.location\":true,\"country.index\":true,\"country.create\":true,\"country.edit\":true,\"country.destroy\":true,\"state.index\":true,\"state.create\":true,\"state.edit\":true,\"state.destroy\":true,\"city.index\":true,\"city.create\":true,\"city.edit\":true,\"city.destroy\":true,\"newsletter.index\":true,\"newsletter.destroy\":true,\"newsletter.settings\":true,\"payment.index\":true,\"payments.settings\":true,\"payment.destroy\":true,\"payments.logs\":true,\"payments.logs.show\":true,\"payments.logs.destroy\":true,\"plugins.real-estate\":true,\"real-estate.settings\":true,\"property.index\":true,\"property.create\":true,\"property.edit\":true,\"property.destroy\":true,\"project.index\":true,\"project.create\":true,\"project.edit\":true,\"project.destroy\":true,\"property_feature.index\":true,\"property_feature.create\":true,\"property_feature.edit\":true,\"property_feature.destroy\":true,\"investor.index\":true,\"investor.create\":true,\"investor.edit\":true,\"investor.destroy\":true,\"review.index\":true,\"review.create\":true,\"review.edit\":true,\"review.destroy\":true,\"consult.index\":true,\"consult.edit\":true,\"consult.destroy\":true,\"property_category.index\":true,\"property_category.create\":true,\"property_category.edit\":true,\"property_category.destroy\":true,\"facility.index\":true,\"facility.create\":true,\"facility.edit\":true,\"facility.destroy\":true,\"account.index\":true,\"account.create\":true,\"account.edit\":true,\"account.destroy\":true,\"unverified-accounts.index\":true,\"package.index\":true,\"package.create\":true,\"package.edit\":true,\"package.destroy\":true,\"consults.index\":true,\"consults.edit\":true,\"consults.destroy\":true,\"real-estate.custom-fields.index\":true,\"real-estate.custom-fields.create\":true,\"real-estate.custom-fields.edit\":true,\"real-estate.custom-fields.destroy\":true,\"invoice.index\":true,\"invoice.edit\":true,\"invoice.destroy\":true,\"invoice.template\":true,\"import-properties.index\":true,\"coupons.index\":true,\"coupons.destroy\":true,\"real-estate.settings.general\":true,\"real-estate.settings.currencies\":true,\"real-estate.settings.accounts\":true,\"real-estate.settings.invoices\":true,\"real-estate.settings.invoice-template\":true,\"reports.index\":true,\"property.export\":true,\"property.import\":true,\"project.export\":true,\"project.import\":true,\"social-login.settings\":true,\"plugins.translation\":true,\"translations.locales\":true,\"translations.theme-translations\":true,\"translations.index\":true,\"theme-translations.export\":true,\"other-translations.export\":true,\"theme-translations.import\":true,\"other-translations.import\":true,\"api.settings\":true,\"api.sanctum-token.index\":true,\"api.sanctum-token.create\":true,\"api.sanctum-token.destroy\":true}','Admin users role',1,1,1,'2025-09-11 19:33:35','2025-09-11 19:33:35');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sessions` (
  `id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_activity` int NOT NULL,
  PRIMARY KEY (`id`),
  KEY `sessions_user_id_index` (`user_id`),
  KEY `sessions_last_activity_index` (`last_activity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `settings` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11514 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `settings` WRITE;
/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
INSERT INTO `settings` VALUES (270,'activated_plugins','[\"language\",\"language-advanced\",\"ads\",\"analytics\",\"announcement\",\"audit-log\",\"backup\",\"blog\",\"captcha\",\"career\",\"contact\",\"cookie-consent\",\"faq\",\"location\",\"newsletter\",\"payment\",\"paypal\",\"paystack\",\"razorpay\",\"real-estate\",\"rss-feed\",\"social-login\",\"sslcommerz\",\"stripe\",\"translation\"]',NULL,'2025-09-11 19:33:50'),(2933,'language_hide_default','1',NULL,'2025-09-11 19:33:50'),(2934,'language_switcher_display','dropdown',NULL,'2025-09-11 19:33:50'),(2935,'language_display','all',NULL,'2025-09-11 19:33:50'),(2936,'language_hide_languages','[]',NULL,'2025-09-11 19:33:50'),(3686,'real_estate_display_views_count_in_detail_page','1',NULL,'2025-07-12 01:23:58'),(3800,'real_estate_mandatory_fields_at_consult_form','[\"email\"]',NULL,'2025-09-11 19:33:50'),(3993,'show_admin_bar','1',NULL,'2025-09-11 19:33:50'),(3994,'theme','flex-home',NULL,'2025-09-11 19:33:50'),(3995,'media_random_hash','a183223acdb77e4946c7ad2aec3b257c',NULL,'2025-09-11 19:33:50'),(7551,'enable_recaptcha_botble_contact_forms_fronts_contact_form','1',NULL,'2025-07-12 01:23:58'),(8112,'analytics_dashboard_widgets','0',NULL,'2025-07-12 01:23:58'),(8169,'enable_recaptcha_botble_contact_forms_fronts_contact_form','1','2024-05-14 02:27:44','2025-07-12 01:23:58'),(8170,'analytics_dashboard_widgets','0','2024-05-14 02:27:44','2025-07-12 01:23:58'),(8662,'enable_recaptcha_botble_newsletter_forms_fronts_newsletter_form','1','2024-07-10 19:58:46','2025-07-12 01:23:58'),(10363,'payment_cod_fee_type','fixed',NULL,'2025-09-11 19:33:50'),(10364,'payment_bank_transfer_fee_type','fixed',NULL,'2025-09-11 19:33:50'),(10365,'payment_stripe_fee_type','fixed',NULL,'2025-07-12 01:23:58'),(10366,'payment_paypal_fee_type','fixed',NULL,'2025-07-12 01:23:58'),(10367,'payment_razorpay_fee_type','fixed',NULL,'2025-07-12 01:23:58'),(10368,'payment_paystack_fee_type','fixed',NULL,'2025-07-12 01:23:58'),(10369,'payment_sslcommerz_fee_type','fixed',NULL,'2025-07-12 01:23:58'),(11470,'admin_favicon','logo/favicon.png',NULL,'2025-09-11 19:33:50'),(11471,'admin_logo','logo/logo-white.png',NULL,'2025-09-11 19:33:50'),(11472,'permalink-botble-blog-models-post','news',NULL,'2025-09-11 19:33:50'),(11473,'permalink-botble-blog-models-category','news',NULL,'2025-09-11 19:33:50'),(11474,'payment_cod_status','1',NULL,'2025-09-11 19:33:50'),(11475,'payment_cod_description','Please pay money directly to the postman, if you choose cash on delivery method (COD).',NULL,'2025-09-11 19:33:50'),(11476,'payment_bank_transfer_status','1',NULL,'2025-09-11 19:33:50'),(11477,'payment_bank_transfer_description','Please send money to our bank account: ACB - 69270 213 19.',NULL,'2025-09-11 19:33:50'),(11478,'payment_stripe_payment_type','stripe_checkout',NULL,'2025-09-11 19:33:50'),(11479,'theme-flex-home-social_links','[[{\"key\":\"social-name\",\"value\":\"Facebook\"},{\"key\":\"social-icon\",\"value\":\"fab fa-facebook\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/facebook.com\"}],[{\"key\":\"social-name\",\"value\":\"Twitter\"},{\"key\":\"social-icon\",\"value\":\"fab fa-twitter\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/twitter.com\"}],[{\"key\":\"social-name\",\"value\":\"Youtube\"},{\"key\":\"social-icon\",\"value\":\"fab fa-youtube\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/youtube.com\"}]]',NULL,'2025-09-11 19:33:50'),(11480,'theme-flex-home-site_title','Flex Home',NULL,'2025-09-11 19:33:50'),(11481,'theme-flex-home-seo_description','Find your favorite homes at Flex Home',NULL,'2025-09-11 19:33:50'),(11482,'theme-flex-home-copyright','©%Y Flex Home is Proudly Powered by Botble Team.',NULL,'2025-09-11 19:33:50'),(11483,'theme-flex-home-favicon','logo/favicon.png',NULL,'2025-09-11 19:33:50'),(11484,'theme-flex-home-logo','logo/logo.png',NULL,'2025-09-11 19:33:50'),(11485,'theme-flex-home-cookie_consent_message','Your experience on this site will be improved by allowing cookies ',NULL,'2025-09-11 19:33:50'),(11486,'theme-flex-home-cookie_consent_learn_more_url','/cookie-policy',NULL,'2025-09-11 19:33:50'),(11487,'theme-flex-home-cookie_consent_learn_more_text','Cookie Policy',NULL,'2025-09-11 19:33:50'),(11488,'theme-flex-home-homepage_id','1',NULL,'2025-09-11 19:33:50'),(11489,'theme-flex-home-blog_page_id','2',NULL,'2025-09-11 19:33:50'),(11490,'theme-flex-home-properties_list_page_id','7',NULL,'2025-09-11 19:33:50'),(11491,'theme-flex-home-projects_list_page_id','8',NULL,'2025-09-11 19:33:50'),(11492,'theme-flex-home-home_banner','general/home-banner.jpg',NULL,'2025-09-11 19:33:50'),(11493,'theme-flex-home-breadcrumb_background','general/breadcrumb-background.jpg',NULL,'2025-09-11 19:33:50'),(11494,'theme-flex-home-address','North Link Building, 10 Admiralty Street, 757695 Singapore',NULL,'2025-09-11 19:33:50'),(11495,'theme-flex-home-hotline','18006268',NULL,'2025-09-11 19:33:50'),(11496,'theme-flex-home-email','sale@botble.com',NULL,'2025-09-11 19:33:50'),(11497,'theme-flex-home-primary_font','Nunito Sans',NULL,'2025-09-11 19:33:50'),(11498,'theme-flex-home-about-us','<p>Founded on August 28, 1993 (formerly known as Truong Thinh Phat Construction Co., Ltd.), Flex Home operates in the field of real estate business, building villas for rent.</p><br />\n<p>With the slogan &quot;Breaking time, through space&quot; with a sustainable development strategy, taking Real Estate as a focus area, Flex Home is constantly connecting between buyers and sellers in the field.</p><p>Real estate, bringing people closer together, over the distance of time and space, is a reliable place for real estate investment - an area that is constantly evolving over time.</p>',NULL,'2025-09-11 19:33:50'),(11499,'theme-flex-home-newsletter_popup_enable','1',NULL,'2025-09-11 19:33:50'),(11500,'theme-flex-home-newsletter_popup_image','general/newsletter-image.jpg',NULL,'2025-09-11 19:33:50'),(11501,'theme-flex-home-newsletter_popup_title','Let’s join our newsletter!',NULL,'2025-09-11 19:33:50'),(11502,'theme-flex-home-newsletter_popup_subtitle','Weekly Updates',NULL,'2025-09-11 19:33:50'),(11503,'theme-flex-home-newsletter_popup_description','Do not worry we don’t spam!',NULL,'2025-09-11 19:33:50'),(11504,'theme-flex-home-social_sharing','[[{\"key\":\"social\",\"value\":\"facebook\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-facebook\"}],[{\"key\":\"social\",\"value\":\"x\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-x\"}],[{\"key\":\"social\",\"value\":\"pinterest\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-pinterest\"}],[{\"key\":\"social\",\"value\":\"linkedin\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-linkedin\"}],[{\"key\":\"social\",\"value\":\"whatsapp\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-whatsapp\"}],[{\"key\":\"social\",\"value\":\"email\"},{\"key\":\"icon\",\"value\":\"ti ti-mail\"}]]',NULL,'2025-09-11 19:33:50'),(11505,'announcement_max_width','80',NULL,NULL),(11506,'announcement_max_width_unit','%',NULL,NULL),(11507,'announcement_text_color','#fff',NULL,NULL),(11508,'announcement_background_color','transparent',NULL,NULL),(11509,'announcement_text_alignment','start',NULL,NULL),(11510,'announcement_dismissible','0',NULL,NULL),(11511,'announcement_placement','theme',NULL,NULL),(11512,'announcement_autoplay','1',NULL,NULL),(11513,'announcement_autoplay_delay','5000',NULL,NULL);
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `slugs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `slugs` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` int unsigned NOT NULL,
  `reference_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `prefix` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `slugs_reference_id_index` (`reference_id`),
  KEY `slugs_key_index` (`key`),
  KEY `slugs_prefix_index` (`prefix`),
  KEY `slugs_reference_index` (`reference_id`,`reference_type`),
  KEY `idx_slugs_reference` (`reference_type`,`reference_id`)
) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `slugs` WRITE;
/*!40000 ALTER TABLE `slugs` DISABLE KEYS */;
INSERT INTO `slugs` VALUES (1,'news',1,'Botble\\Blog\\Models\\Category','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(2,'house-architecture',2,'Botble\\Blog\\Models\\Category','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(3,'house-design',3,'Botble\\Blog\\Models\\Category','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(4,'building-materials',4,'Botble\\Blog\\Models\\Category','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(5,'the-top-2020-handbag-trends-to-know',5945,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(6,'top-search-engine-optimization-strategies',5946,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(7,'which-company-would-you-choose',5947,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(8,'used-car-dealer-sales-tricks-exposed',5948,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(9,'20-ways-to-sell-your-product-faster',5949,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(10,'the-secrets-of-rich-and-famous-writers',5950,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(11,'imagine-losing-20-pounds-in-14-days',5951,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(12,'are-you-still-using-that-slow-old-typewriter',5952,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(13,'a-skin-cream-thats-proven-to-work',5953,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(14,'10-reasons-to-start-your-own-profitable-website',5954,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(15,'simple-ways-to-reduce-your-unwanted-wrinkles',5955,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(16,'apple-imac-with-retina-5k-display-review',5956,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(17,'10000-web-site-visitors-in-one-monthguaranteed',5957,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(18,'unlock-the-secrets-of-selling-high-ticket-items',5958,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(19,'4-expert-tips-on-how-to-choose-the-right-mens-wallet',5959,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(20,'sexy-clutches-how-to-buy-wear-a-designer-clutch-bag',5960,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:40','2025-09-11 19:33:40'),(21,'home',1,'Botble\\Page\\Models\\Page','','2025-09-11 19:33:50','2025-09-11 19:33:50'),(22,'news',2,'Botble\\Page\\Models\\Page','','2025-09-11 19:33:50','2025-09-11 19:33:50'),(23,'about-us',3,'Botble\\Page\\Models\\Page','','2025-09-11 19:33:50','2025-09-11 19:33:50'),(24,'contact',4,'Botble\\Page\\Models\\Page','','2025-09-11 19:33:50','2025-09-11 19:33:50'),(25,'terms-conditions',5,'Botble\\Page\\Models\\Page','','2025-09-11 19:33:50','2025-09-11 19:33:50'),(26,'cookie-policy',6,'Botble\\Page\\Models\\Page','','2025-09-11 19:33:50','2025-09-11 19:33:50'),(27,'properties',7,'Botble\\Page\\Models\\Page','','2025-09-11 19:33:50','2025-09-11 19:33:50'),(28,'projects',8,'Botble\\Page\\Models\\Page','','2025-09-11 19:33:50','2025-09-11 19:33:50'),(29,'faqs',9,'Botble\\Page\\Models\\Page','','2025-09-11 19:33:50','2025-09-11 19:33:50'),(30,'pricing-plans',10,'Botble\\Page\\Models\\Page','','2025-09-11 19:33:50','2025-09-11 19:33:50'),(31,'bcg-sets-great-store-by-real-estate-negotiations',1,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:50','2025-09-11 19:33:50'),(32,'private-home-sales-drop-27-in-october',2,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:50','2025-09-11 19:33:50'),(33,'singapore-overtakes-hong-kong-in-terms-of-property-investment-prospects',3,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:50','2025-09-11 19:33:50'),(34,'s-koreas-big-investors-flocking-to-overseas-real-estate',4,'Botble\\Blog\\Models\\Post','news','2025-09-11 19:33:50','2025-09-11 19:33:50'),(35,'bcg-sets-great-store',1,'Botble\\Blog\\Models\\Tag','tag','2025-09-11 19:33:50','2025-09-11 19:33:50'),(36,'private-home-sales',2,'Botble\\Blog\\Models\\Tag','tag','2025-09-11 19:33:50','2025-09-11 19:33:50'),(37,'south-korean-investors',3,'Botble\\Blog\\Models\\Tag','tag','2025-09-11 19:33:50','2025-09-11 19:33:50'),(38,'sales-manager-up-to-2600',1,'Botble\\Career\\Models\\Career','careers','2025-09-11 19:33:50','2025-09-11 19:33:50'),(39,'senior-real-estate-consultant-demo',3,'Botble\\Career\\Models\\Career','careers','2025-09-11 19:33:50','2025-09-11 19:33:50'),(40,'3-beds-villa-calpe-alicante',1,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(41,'property-for-sale-johannesburg-south-africa',2,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(42,'stunning-french-inspired-manor',3,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(43,'villa-for-sale-at-bermuda-dunes',4,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(44,'walnut-park-apartment',5,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(45,'5-beds-luxury-house',6,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(46,'family-victorian-view-home',7,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(47,'osaka-heights-apartment',8,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(48,'private-estate-magnificent-views',9,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(49,'thompsons-road-house-for-rent',10,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(50,'brand-new-1-bedroom-apartment-in-first-class-location',11,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(51,'elegant-family-home-presents-premium-modern-living',12,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(52,'luxury-apartments-in-singapore-for-sale',13,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(53,'5-room-luxury-penthouse-for-sale-in-kuala-lumpur',14,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(54,'2-floor-house-in-compound-pejaten-barat-kemang',15,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(55,'apartment-muiderstraatweg-in-diemen',16,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(56,'nice-apartment-for-rent-in-berlin',17,'Botble\\RealEstate\\Models\\Property','properties','2025-09-11 19:33:50','2025-09-11 19:33:50'),(57,'apartment',1,'Botble\\RealEstate\\Models\\Category','property-category','2025-09-11 19:33:50','2025-09-11 19:33:50'),(58,'villa',2,'Botble\\RealEstate\\Models\\Category','property-category','2025-09-11 19:33:50','2025-09-11 19:33:50'),(59,'condo',3,'Botble\\RealEstate\\Models\\Category','property-category','2025-09-11 19:33:50','2025-09-11 19:33:50'),(60,'house',4,'Botble\\RealEstate\\Models\\Category','property-category','2025-09-11 19:33:50','2025-09-11 19:33:50'),(61,'land',5,'Botble\\RealEstate\\Models\\Category','property-category','2025-09-11 19:33:50','2025-09-11 19:33:50'),(62,'commercial-property',6,'Botble\\RealEstate\\Models\\Category','property-category','2025-09-11 19:33:50','2025-09-11 19:33:50'),(63,'walnut-park-apartments',1,'Botble\\RealEstate\\Models\\Project','projects','2025-09-11 19:33:50','2025-09-11 19:33:50'),(64,'osaka-heights',2,'Botble\\RealEstate\\Models\\Project','projects','2025-09-11 19:33:50','2025-09-11 19:33:50'),(65,'mimaroba-paradise',3,'Botble\\RealEstate\\Models\\Project','projects','2025-09-11 19:33:50','2025-09-11 19:33:50'),(66,'aegean-villas',4,'Botble\\RealEstate\\Models\\Project','projects','2025-09-11 19:33:50','2025-09-11 19:33:50'),(67,'aydos-forest-apartments',5,'Botble\\RealEstate\\Models\\Project','projects','2025-09-11 19:33:50','2025-09-11 19:33:50'),(68,'the-avila-apartments',6,'Botble\\RealEstate\\Models\\Project','projects','2025-09-11 19:33:50','2025-09-11 19:33:50'),(69,'danial',1,'Botble\\RealEstate\\Models\\Account','agents','2025-09-11 19:33:50','2025-09-11 19:33:50'),(70,'annie',2,'Botble\\RealEstate\\Models\\Account','agents','2025-09-11 19:33:50','2025-09-11 19:33:50'),(71,'leo',3,'Botble\\RealEstate\\Models\\Account','agents','2025-09-11 19:33:50','2025-09-11 19:33:50'),(72,'adrain',4,'Botble\\RealEstate\\Models\\Account','agents','2025-09-11 19:33:50','2025-09-11 19:33:50'),(73,'dino',5,'Botble\\RealEstate\\Models\\Account','agents','2025-09-11 19:33:50','2025-09-11 19:33:50'),(74,'jaclyn',6,'Botble\\RealEstate\\Models\\Account','agents','2025-09-11 19:33:50','2025-09-11 19:33:50'),(75,'mason',7,'Botble\\RealEstate\\Models\\Account','agents','2025-09-11 19:33:50','2025-09-11 19:33:50'),(76,'shanie',8,'Botble\\RealEstate\\Models\\Account','agents','2025-09-11 19:33:50','2025-09-11 19:33:50'),(77,'gage',9,'Botble\\RealEstate\\Models\\Account','agents','2025-09-11 19:33:50','2025-09-11 19:33:50'),(78,'lonnie',10,'Botble\\RealEstate\\Models\\Account','agents','2025-09-11 19:33:50','2025-09-11 19:33:50'),(79,'henry',11,'Botble\\RealEstate\\Models\\Account','agents','2025-09-11 19:33:50','2025-09-11 19:33:50'),(80,'brian',12,'Botble\\RealEstate\\Models\\Account','agents','2025-09-11 19:33:50','2025-09-11 19:33:50');
/*!40000 ALTER TABLE `slugs` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `slugs_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `slugs_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slugs_id` bigint unsigned NOT NULL,
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `prefix` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`lang_code`,`slugs_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `slugs_translations`
--

LOCK TABLES `slugs_translations` WRITE;
/*!40000 ALTER TABLE `slugs_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `slugs_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `social_logins`
--

DROP TABLE IF EXISTS `social_logins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `social_logins` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint unsigned NOT NULL,
  `provider` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `provider_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `refresh_token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `token_expires_at` timestamp NULL DEFAULT NULL,
  `provider_data` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `social_logins_provider_provider_id_unique` (`provider`,`provider_id`),
  KEY `social_logins_user_type_user_id_index` (`user_type`,`user_id`),
  KEY `social_logins_user_id_user_type_index` (`user_id`,`user_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `social_logins`
--

LOCK TABLES `social_logins` WRITE;
/*!40000 ALTER TABLE `social_logins` DISABLE KEYS */;
/*!40000 ALTER TABLE `social_logins` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `states` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `country_id` int unsigned NOT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `abbreviation` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_featured` tinyint NOT NULL DEFAULT '0',
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `states_slug_unique` (`slug`),
  KEY `idx_states_name` (`name`),
  KEY `idx_states_status` (`status`),
  KEY `idx_states_country_id` (`country_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `states` WRITE;
/*!40000 ALTER TABLE `states` DISABLE KEYS */;
INSERT INTO `states` VALUES (1,'California',1,0,0,'published','2019-11-18 08:17:57','2023-08-13 20:47:25',NULL,'california',0,NULL);
/*!40000 ALTER TABLE `states` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `states_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `states_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `states_id` int NOT NULL,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `abbreviation` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`states_id`),
  KEY `idx_states_trans_state_lang` (`states_id`,`lang_code`),
  KEY `idx_states_trans_name` (`name`),
  KEY `idx_states_trans_states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `states_translations`
--

LOCK TABLES `states_translations` WRITE;
/*!40000 ALTER TABLE `states_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `states_translations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tags` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `author_id` bigint unsigned DEFAULT NULL,
  `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  `status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `tags` WRITE;
/*!40000 ALTER TABLE `tags` DISABLE KEYS */;
INSERT INTO `tags` VALUES (1,'BCG sets great store',1,'Botble\\ACL\\Models\\User','','published','2019-11-18 02:51:35','2019-11-18 02:51:35'),(2,'Private Home Sales',1,'Botble\\ACL\\Models\\User','','published','2019-11-18 02:55:53','2019-11-18 02:55:53'),(3,'South Korean investors',1,'Botble\\ACL\\Models\\User','','published','2019-11-18 03:07:27','2019-11-18 03:07:27');
/*!40000 ALTER TABLE `tags` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `tags_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tags_translations` (
  `lang_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `tags_id` int NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`tags_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tags_translations`
--

LOCK TABLES `tags_translations` WRITE;
/*!40000 ALTER TABLE `tags_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `tags_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `transactions`
--

DROP TABLE IF EXISTS `transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `transactions` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `credits` int unsigned NOT NULL,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `account_id` bigint unsigned DEFAULT NULL,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'add',
  `payment_id` int unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `transactions`
--

LOCK TABLES `transactions` WRITE;
/*!40000 ALTER TABLE `transactions` DISABLE KEYS */;
/*!40000 ALTER TABLE `transactions` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `user_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_meta` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `user_id` int unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_meta_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `user_meta` WRITE;
/*!40000 ALTER TABLE `user_meta` DISABLE KEYS */;
INSERT INTO `user_meta` VALUES (1,'admin-locale','en',1,'2019-11-17 20:19:14','2019-11-30 19:25:04');
/*!40000 ALTER TABLE `user_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_settings`
--

DROP TABLE IF EXISTS `user_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint unsigned NOT NULL,
  `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` json NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `user_settings_user_type_user_id_key_unique` (`user_type`,`user_id`,`key`),
  KEY `user_settings_user_type_user_id_index` (`user_type`,`user_id`),
  KEY `user_settings_key_index` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_settings`
--

LOCK TABLES `user_settings` WRITE;
/*!40000 ALTER TABLE `user_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_settings` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `permissions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `last_login` timestamp NULL DEFAULT NULL,
  `first_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `username` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `avatar_id` int unsigned DEFAULT NULL,
  `super_user` tinyint(1) NOT NULL DEFAULT '0',
  `manage_supers` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'kharber@nicolas.com',NULL,NULL,'$2y$12$Vp94vNwY2M78Xq0rNvUiV.u6YFA1ce8Doxd50N0m3I0k5hQHeR65W',NULL,'2025-09-11 19:33:35','2025-09-11 19:33:35',NULL,NULL,'Ike','Becker','admin',NULL,1,1);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `widgets` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `widget_id` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sidebar_id` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `theme` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `position` tinyint unsigned NOT NULL DEFAULT '0',
  `data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `widgets` WRITE;
/*!40000 ALTER TABLE `widgets` DISABLE KEYS */;
INSERT INTO `widgets` VALUES (1,'CustomMenuWidget','footer_sidebar','flex-home',1,'{\"id\":\"CustomMenuWidget\",\"name\":\"About\",\"menu_id\":\"about\"}','2025-09-11 19:33:50','2025-09-11 19:33:50'),(2,'CustomMenuWidget','footer_sidebar','flex-home',2,'{\"id\":\"CustomMenuWidget\",\"name\":\"More Information\",\"menu_id\":\"more-information\"}','2025-09-11 19:33:50','2025-09-11 19:33:50'),(3,'CustomMenuWidget','footer_sidebar','flex-home',3,'{\"id\":\"CustomMenuWidget\",\"name\":\"News\",\"menu_id\":\"news\"}','2025-09-11 19:33:50','2025-09-11 19:33:50'),(4,'CategoriesWidget','primary_sidebar','flex-home',1,'{\"id\":\"CategoriesWidget\"}','2025-09-11 19:33:50','2025-09-11 19:33:50'),(5,'RecentPostsWidget','primary_sidebar','flex-home',2,'{\"id\":\"RecentPostsWidget\",\"name\":\"Recent Posts\",\"number_display\":5}','2025-09-11 19:33:50','2025-09-11 19:33:50');
/*!40000 ALTER TABLE `widgets` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2025-09-12  9:33:51
