-- MySQL dump 10.13  Distrib 8.0.36, for macos14 (arm64)
--
-- Host: 127.0.0.1    Database: archielite_jobbox
-- ------------------------------------------------------
-- Server version	8.0.36

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

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

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

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

LOCK TABLES `activations` WRITE;
/*!40000 ALTER TABLE `activations` DISABLE KEYS */;
INSERT INTO `activations` VALUES (1,1,'j5Cls5M9PJZiPZHRSOV1Vd3DHWtktb9O',1,'2024-09-18 03:10:42','2024-09-18 03:10:42','2024-09-18 03:10:42');
/*!40000 ALTER TABLE `activations` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

--
-- Table structure for table `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) COLLATE utf8mb4_unicode_ci NOT NULL,
  `expired_at` datetime DEFAULT NULL,
  `location` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `clicked` bigint NOT NULL DEFAULT '0',
  `order` int DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `open_in_new_tab` tinyint(1) NOT NULL DEFAULT '1',
  `tablet_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mobile_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ads_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `google_adsense_slot_id` varchar(191) 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) COLLATE utf8mb4_unicode_ci NOT NULL,
  `ads_id` bigint unsigned NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `url` varchar(191) 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 `audit_histories`
--

DROP TABLE IF EXISTS `audit_histories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `audit_histories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL,
  `module` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `request` longtext COLLATE utf8mb4_unicode_ci,
  `action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text COLLATE utf8mb4_unicode_ci,
  `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reference_user` bigint unsigned NOT NULL,
  `reference_id` bigint unsigned NOT NULL,
  `reference_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `audit_histories_user_id_index` (`user_id`),
  KEY `audit_histories_module_index` (`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

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

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

LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES (1,'Design',0,'Soluta voluptate architecto sit dolor. Exercitationem tenetur aliquid voluptate aut nulla dignissimos consequatur. Eos qui excepturi at optio voluptatem.','published',NULL,'Botble\\ACL\\Models\\User',NULL,0,0,1,'2024-09-18 03:10:46','2024-09-18 03:10:46'),(2,'Lifestyle',0,'Non molestiae minima omnis consequatur molestiae omnis ipsa. Accusamus officiis blanditiis nemo odit officiis qui non. Et ea quia facilis inventore impedit nam eum qui.','published',NULL,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-09-18 03:10:46','2024-09-18 03:10:46'),(3,'Travel Tips',2,'Fuga numquam quisquam deserunt in. Ullam minima qui odio. Exercitationem molestiae eum voluptatem quidem eveniet impedit. Eos suscipit voluptatibus ducimus fugiat nihil quisquam.','published',NULL,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2024-09-18 03:10:46','2024-09-18 03:10:46'),(4,'Healthy',0,'Temporibus sint alias labore modi autem consequatur. Culpa repellendus tempora qui incidunt. Cum optio dolores voluptatum ut quis quod. Quibusdam alias aut a non.','published',NULL,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-09-18 03:10:46','2024-09-18 03:10:46'),(5,'Travel Tips',4,'Et omnis ex vero facilis. Ipsum rerum voluptates possimus alias aut. Quos laudantium fugit voluptatem quidem voluptates.','published',NULL,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2024-09-18 03:10:46','2024-09-18 03:10:46'),(6,'Hotel',0,'Cumque iste vero quisquam voluptas rerum. Molestias nihil asperiores sit corrupti nihil aut rem. Repellendus quod dolorum error ut et voluptatem molestias. Quam quis omnis quas et quia.','published',NULL,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-09-18 03:10:46','2024-09-18 03:10:46'),(7,'Nature',6,'Esse eos error voluptatem ducimus odio assumenda. Culpa ratione in vel sit. Quidem iste voluptatem id omnis voluptatum quasi vero.','published',NULL,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2024-09-18 03:10:46','2024-09-18 03:10:46');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

DROP TABLE IF EXISTS `cities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cities` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state_id` bigint unsigned DEFAULT NULL,
  `country_id` bigint unsigned DEFAULT NULL,
  `record_id` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `cities_slug_unique` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=7 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,'Paris','paris',1,1,NULL,0,'locations/location1.png',0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(2,'London','london',2,2,NULL,0,'locations/location2.png',0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(3,'New York','new-york',3,3,NULL,0,'locations/location3.png',0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(4,'New York','new-york-1',4,4,NULL,0,'locations/location4.png',0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(5,'Copenhagen','copenhagen',5,5,NULL,0,'locations/location5.png',0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(6,'Berlin','berlin',6,6,NULL,0,'locations/location6.png',0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50');
/*!40000 ALTER TABLE `cities` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

DROP TABLE IF EXISTS `contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contacts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `custom_fields` text COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 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 */;
INSERT INTO `contacts` VALUES (1,'Dr. Julianne Schneider','mwiegand@example.org','+13866740246','7837 Champlin Pine Apt. 110\nImafurt, HI 86567-8566','Aut adipisci et sequi reiciendis quas.','Delectus esse totam laborum consequuntur ut. Odit mollitia voluptas veritatis. Quis et sit nobis ex. Aliquid minus fuga porro officiis. Rerum voluptatum nesciunt suscipit voluptates qui. Reprehenderit cumque ratione ut cumque quidem sit adipisci. Aut cupiditate et est at enim. Minus in magnam voluptatem culpa eos repudiandae. Commodi necessitatibus exercitationem ut consequatur.',NULL,'read','2024-09-18 03:10:47','2024-09-18 03:10:47'),(2,'Dr. Jacey Stanton','remington15@example.net','+15802408539','55627 Karianne Cape Suite 567\nKertzmannshire, DE 70043-5731','Sit non minima cumque autem excepturi.','Dolorum corrupti recusandae odit animi rerum ad deserunt. Ea quis asperiores enim vitae facere maiores quisquam. Et repudiandae sunt ex nobis beatae reprehenderit commodi. Minima velit velit esse exercitationem nobis. Odio illum ea ipsa quia enim nemo aperiam. Rerum enim quam dolor sint. Quis voluptatem aut exercitationem. Ut nam omnis expedita placeat repellendus numquam. Corporis consequatur quaerat est optio consequatur consectetur. Debitis maiores enim repellat in non quae.',NULL,'read','2024-09-18 03:10:47','2024-09-18 03:10:47'),(3,'Gunnar Schowalter','abarton@example.net','+18283426518','718 Evangeline Plain Suite 787\nMazietown, UT 42502-6338','Quod sapiente ut dolor et sint.','Necessitatibus commodi et voluptas quasi est dolores. Sequi asperiores recusandae rerum iste. Veniam illo sit sapiente fugit aspernatur et quaerat dolor. Voluptatem est eaque velit doloribus laudantium consectetur dolorem. Nemo natus architecto possimus rerum. Rerum eum dignissimos soluta molestiae quam.',NULL,'read','2024-09-18 03:10:47','2024-09-18 03:10:47'),(4,'Jesus Pollich','reichert.alec@example.com','+12818206838','5663 Kenny Walks\nPort Ewaldberg, NV 12695-6482','Perspiciatis dolores omnis ut a.','Accusantium nostrum et dolorem ut autem debitis. Enim beatae molestiae commodi tempora quasi eligendi velit. Eum harum et ad dolor eligendi est consequuntur. Eos omnis aspernatur ratione odit consequatur nisi quo. Occaecati non labore nemo. Adipisci aspernatur neque possimus asperiores vel ipsum. Non et optio quia fuga iusto eos. Dolores est sed ullam accusamus voluptatibus.',NULL,'unread','2024-09-18 03:10:47','2024-09-18 03:10:47'),(5,'Dr. Adella Casper DDS','catharine95@example.org','+17696806215','7007 Meghan Forge Suite 052\nEast Lawrenceland, DE 50343-5644','Distinctio quasi sequi vero eveniet.','Ut assumenda officiis ad voluptas ea. Non esse architecto corporis molestias voluptas. Velit unde excepturi voluptatem. Magnam et distinctio amet. Quo occaecati quisquam laborum eveniet est. Unde mollitia repellendus voluptatem sit. Vel nihil quis fugiat. Aut aspernatur ut rerum non. Cupiditate a dolores impedit voluptatum quis voluptas. Reprehenderit quia molestiae doloremque quod qui fuga labore.',NULL,'unread','2024-09-18 03:10:47','2024-09-18 03:10:47'),(6,'Mr. Caesar Gibson','timmy.flatley@example.com','+17857807447','188 Bahringer Crest\nPort Roosevelt, TN 53414-7875','Fugit et rerum fugit id omnis dolorem.','Autem doloremque sequi recusandae totam laborum nobis. Et est inventore placeat aliquid. Deserunt repellendus doloremque dolore corrupti animi non accusantium. Voluptas voluptates dolorem totam. Hic modi et ut molestiae. Est voluptatem aliquam maiores assumenda ut sit. Et dolorum dolores cupiditate nulla est. Sit et minus explicabo placeat est aliquid velit. Reprehenderit ut vel vitae dolor expedita consequatur vel.',NULL,'unread','2024-09-18 03:10:47','2024-09-18 03:10:47'),(7,'Stephen Olson MD','elva27@example.com','+18205810449','15897 Isaiah Fort\nEast Precious, NM 08577','A vel et eius aut numquam et mollitia.','Rerum veniam reprehenderit et facere blanditiis. Est sapiente quaerat quia velit perferendis. Deserunt eaque voluptas fugiat in molestiae. Esse dolore et doloremque sequi nobis fugit dolorem. Et ad ut est assumenda facilis quasi. Quasi incidunt fugit eos neque. Omnis veritatis dignissimos ut nam. Praesentium exercitationem et ut aut. Dolorem quia quo suscipit. Omnis perferendis eveniet harum vel. Nemo facere animi cupiditate vitae nihil qui. Ex neque excepturi tempore quo ex quisquam similique.',NULL,'read','2024-09-18 03:10:47','2024-09-18 03:10:47'),(8,'Cayla Schmitt','dorris.cartwright@example.net','+15346590722','574 Wilkinson Route\nNew Morganfort, WA 83868','Non qui recusandae debitis.','Ut quibusdam nisi cumque quia. Quaerat corrupti perferendis quidem quis. Dolorum quis aperiam expedita deleniti. Veritatis et cumque aut omnis voluptas ut eum nesciunt. Cum aut tenetur eos ipsa nisi officia est quas. Et asperiores ut corrupti at. Distinctio quos quasi consectetur animi omnis non et. Voluptatibus voluptatem libero est voluptatem. Facilis voluptates voluptatibus et et. Quis iure quisquam quos enim sint aut eum. Blanditiis deserunt eius et culpa quibusdam fugiat quo.',NULL,'unread','2024-09-18 03:10:47','2024-09-18 03:10:47'),(9,'Sage Harber','dorthy.hand@example.net','+19409619822','6821 Angelo Shore\nProsaccostad, MS 34678-3738','In vitae sunt enim.','Repellat illum in eligendi vitae tempora minima architecto. Et nobis animi perferendis voluptatibus. Omnis ut aut consectetur itaque sed ut. Eligendi ut ducimus deleniti est dicta illo. Corporis dolores possimus suscipit pariatur natus aperiam. Exercitationem eligendi officiis illo nulla eveniet earum consequatur. Quis qui omnis velit repellendus quia sint quasi dolorem. Laborum recusandae et vel fugit est exercitationem assumenda.',NULL,'read','2024-09-18 03:10:47','2024-09-18 03:10:47'),(10,'Neal Barrows','jacobson.beth@example.com','+19413267371','5583 Raoul Drive Apt. 680\nNorth Lois, DC 39930','Et laborum nemo velit.','Porro et tempore aut qui voluptatem. Omnis vel qui aut error blanditiis consequatur autem. Culpa et aliquid eos in ex sed cupiditate. Reiciendis deleniti numquam ipsum deserunt voluptatem. Perspiciatis error inventore quo quam iusto iusto. Voluptatem distinctio fugiat ut id deserunt quae. Praesentium provident consequatur fugiat recusandae repudiandae eum. Ab porro exercitationem ducimus veniam ullam. Dolorem esse rerum dolor temporibus.',NULL,'read','2024-09-18 03:10:47','2024-09-18 03:10:47');
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nationality` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `code` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 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,'France','French',0,NULL,0,'published','2024-09-18 03:10:50',NULL,'FRA'),(2,'England','English',0,NULL,0,'published','2024-09-18 03:10:50',NULL,'UK'),(3,'USA','Americans',0,NULL,0,'published','2024-09-18 03:10:50',NULL,'US'),(4,'Holland','Dutch',0,NULL,0,'published','2024-09-18 03:10:50',NULL,'HL'),(5,'Denmark','Danish',0,NULL,0,'published','2024-09-18 03:10:50',NULL,'DN'),(6,'Germany','Danish',0,NULL,0,'published','2024-09-18 03:10:50',NULL,'DN');
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

LOCK TABLES `faq_categories` WRITE;
/*!40000 ALTER TABLE `faq_categories` DISABLE KEYS */;
INSERT INTO `faq_categories` VALUES (1,'General',0,'published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL),(2,'Buying',1,'published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL),(3,'Payment',2,'published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL),(4,'Support',3,'published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL);
/*!40000 ALTER TABLE `faq_categories` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

DROP TABLE IF EXISTS `faqs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faqs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `question` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `answer` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `category_id` bigint unsigned NOT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=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,'Where does it come from?','If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages.',1,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(2,'How JobBox Work?','To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth.',1,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(3,'What is your shipping policy?','Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.',1,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(4,'Where To Place A FAQ Page','Just as the name suggests, a FAQ page is all about simple questions and answers. Gather common questions your customers have asked from your support team and include them in the FAQ, Use categories to organize questions related to specific topics.',1,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(5,'Why do we use it?','It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental.',1,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(6,'Where can I get some?','To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth.',1,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(7,'Where does it come from?','If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages.',2,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(8,'How JobBox Work?','To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth.',2,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(9,'What is your shipping policy?','Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.',2,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(10,'Where To Place A FAQ Page','Just as the name suggests, a FAQ page is all about simple questions and answers. Gather common questions your customers have asked from your support team and include them in the FAQ, Use categories to organize questions related to specific topics.',2,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(11,'Why do we use it?','It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental.',2,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(12,'Where can I get some?','To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth.',2,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(13,'Where does it come from?','If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages.',3,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(14,'How JobBox Work?','To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth.',3,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(15,'What is your shipping policy?','Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.',3,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(16,'Where To Place A FAQ Page','Just as the name suggests, a FAQ page is all about simple questions and answers. Gather common questions your customers have asked from your support team and include them in the FAQ, Use categories to organize questions related to specific topics.',3,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(17,'Why do we use it?','It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental.',3,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(18,'Where can I get some?','To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth.',3,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(19,'Where does it come from?','If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages.',4,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(20,'How JobBox Work?','To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth.',4,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(21,'What is your shipping policy?','Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.',4,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(22,'Where To Place A FAQ Page','Just as the name suggests, a FAQ page is all about simple questions and answers. Gather common questions your customers have asked from your support team and include them in the FAQ, Use categories to organize questions related to specific topics.',4,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(23,'Why do we use it?','It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental.',4,'published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(24,'Where can I get some?','To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth.',4,'published','2024-09-18 03:11:27','2024-09-18 03:11:27');
/*!40000 ALTER TABLE `faqs` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

LOCK TABLES `galleries` WRITE;
/*!40000 ALTER TABLE `galleries` DISABLE KEYS */;
INSERT INTO `galleries` VALUES (1,'Perfect','Alias in fuga quo et et dolorem. Nemo qui facere a ex qui. Ea voluptatum consequuntur dicta minus.',1,0,'galleries/1.jpg',1,'published','2024-09-18 03:10:47','2024-09-18 03:10:47'),(2,'New Day','Quae qui amet ipsa voluptas nobis totam. Aut corporis vitae animi qui. Officiis impedit esse eligendi voluptatibus consequatur adipisci numquam.',1,0,'galleries/2.jpg',1,'published','2024-09-18 03:10:47','2024-09-18 03:10:47'),(3,'Happy Day','Eos quia nostrum fugit ratione est nihil quidem. Est et non aspernatur quidem. Incidunt eaque ab debitis aut. Dolore vero et autem unde.',1,0,'galleries/3.jpg',1,'published','2024-09-18 03:10:47','2024-09-18 03:10:47'),(4,'Nature','Eos cum id ea dolores a suscipit quaerat. Asperiores qui omnis consectetur non. Ab omnis ut est enim veniam.',1,0,'galleries/4.jpg',1,'published','2024-09-18 03:10:47','2024-09-18 03:10:47'),(5,'Morning','Quasi enim ut aut. Ab tempora aspernatur atque deleniti. Velit impedit accusamus non est.',1,0,'galleries/5.jpg',1,'published','2024-09-18 03:10:47','2024-09-18 03:10:47'),(6,'Photography','Qui eum aut et nostrum modi. Laborum adipisci magnam saepe asperiores. Qui recusandae quis est quis numquam illum dolore. Ut rem iure inventore odio.',1,0,'galleries/6.jpg',1,'published','2024-09-18 03:10:47','2024-09-18 03:10:47');
/*!40000 ALTER TABLE `galleries` ENABLE KEYS */;
UNLOCK TABLES;

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

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

--
-- Dumping data for table `galleries_translations`
--

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

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

DROP TABLE IF EXISTS `gallery_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `gallery_meta` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `images` text COLLATE utf8mb4_unicode_ci,
  `reference_id` bigint unsigned NOT NULL,
  `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `gallery_meta_reference_id_index` (`reference_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `gallery_meta` WRITE;
/*!40000 ALTER TABLE `gallery_meta` DISABLE KEYS */;
INSERT INTO `gallery_meta` VALUES (1,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Commodi neque mollitia ut doloribus minus. Et necessitatibus ullam eligendi dolores nihil molestias.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Quas nostrum pariatur voluptatem earum quaerat qui. Aliquam pariatur eligendi saepe laudantium voluptas.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Ut in ad velit itaque. Eum consequatur voluptate et pariatur aut et vero. Facere molestiae magnam dolorem tempora similique.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Autem amet esse quam eum eum voluptatem et. Et similique modi id magni illo dicta sit. Sint quos et modi quia itaque natus.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Quo et est aliquam velit similique perspiciatis. Et perferendis sit quia nisi ipsum consequatur qui sequi. Eveniet quis vel quo.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Itaque facere eligendi aut quis libero quaerat magni et. Vel doloremque earum omnis corporis asperiores. At fugiat consequatur illo.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Expedita quas dolorum natus qui rerum id ut. Velit quod accusantium consequatur et. Dolor iure odit magni vitae.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Ipsam dicta tenetur et non quibusdam. Optio vel atque sunt a beatae aliquid. Iure similique voluptatem quaerat.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Repellat alias et adipisci. Non corporis enim quia minus dolore quidem unde. Perspiciatis consequatur sit quia voluptatem omnis ullam.\"}]',1,'Botble\\Gallery\\Models\\Gallery','2024-09-18 03:10:47','2024-09-18 03:10:47'),(2,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Commodi neque mollitia ut doloribus minus. Et necessitatibus ullam eligendi dolores nihil molestias.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Quas nostrum pariatur voluptatem earum quaerat qui. Aliquam pariatur eligendi saepe laudantium voluptas.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Ut in ad velit itaque. Eum consequatur voluptate et pariatur aut et vero. Facere molestiae magnam dolorem tempora similique.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Autem amet esse quam eum eum voluptatem et. Et similique modi id magni illo dicta sit. Sint quos et modi quia itaque natus.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Quo et est aliquam velit similique perspiciatis. Et perferendis sit quia nisi ipsum consequatur qui sequi. Eveniet quis vel quo.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Itaque facere eligendi aut quis libero quaerat magni et. Vel doloremque earum omnis corporis asperiores. At fugiat consequatur illo.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Expedita quas dolorum natus qui rerum id ut. Velit quod accusantium consequatur et. Dolor iure odit magni vitae.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Ipsam dicta tenetur et non quibusdam. Optio vel atque sunt a beatae aliquid. Iure similique voluptatem quaerat.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Repellat alias et adipisci. Non corporis enim quia minus dolore quidem unde. Perspiciatis consequatur sit quia voluptatem omnis ullam.\"}]',2,'Botble\\Gallery\\Models\\Gallery','2024-09-18 03:10:47','2024-09-18 03:10:47'),(3,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Commodi neque mollitia ut doloribus minus. Et necessitatibus ullam eligendi dolores nihil molestias.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Quas nostrum pariatur voluptatem earum quaerat qui. Aliquam pariatur eligendi saepe laudantium voluptas.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Ut in ad velit itaque. Eum consequatur voluptate et pariatur aut et vero. Facere molestiae magnam dolorem tempora similique.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Autem amet esse quam eum eum voluptatem et. Et similique modi id magni illo dicta sit. Sint quos et modi quia itaque natus.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Quo et est aliquam velit similique perspiciatis. Et perferendis sit quia nisi ipsum consequatur qui sequi. Eveniet quis vel quo.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Itaque facere eligendi aut quis libero quaerat magni et. Vel doloremque earum omnis corporis asperiores. At fugiat consequatur illo.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Expedita quas dolorum natus qui rerum id ut. Velit quod accusantium consequatur et. Dolor iure odit magni vitae.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Ipsam dicta tenetur et non quibusdam. Optio vel atque sunt a beatae aliquid. Iure similique voluptatem quaerat.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Repellat alias et adipisci. Non corporis enim quia minus dolore quidem unde. Perspiciatis consequatur sit quia voluptatem omnis ullam.\"}]',3,'Botble\\Gallery\\Models\\Gallery','2024-09-18 03:10:47','2024-09-18 03:10:47'),(4,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Commodi neque mollitia ut doloribus minus. Et necessitatibus ullam eligendi dolores nihil molestias.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Quas nostrum pariatur voluptatem earum quaerat qui. Aliquam pariatur eligendi saepe laudantium voluptas.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Ut in ad velit itaque. Eum consequatur voluptate et pariatur aut et vero. Facere molestiae magnam dolorem tempora similique.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Autem amet esse quam eum eum voluptatem et. Et similique modi id magni illo dicta sit. Sint quos et modi quia itaque natus.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Quo et est aliquam velit similique perspiciatis. Et perferendis sit quia nisi ipsum consequatur qui sequi. Eveniet quis vel quo.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Itaque facere eligendi aut quis libero quaerat magni et. Vel doloremque earum omnis corporis asperiores. At fugiat consequatur illo.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Expedita quas dolorum natus qui rerum id ut. Velit quod accusantium consequatur et. Dolor iure odit magni vitae.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Ipsam dicta tenetur et non quibusdam. Optio vel atque sunt a beatae aliquid. Iure similique voluptatem quaerat.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Repellat alias et adipisci. Non corporis enim quia minus dolore quidem unde. Perspiciatis consequatur sit quia voluptatem omnis ullam.\"}]',4,'Botble\\Gallery\\Models\\Gallery','2024-09-18 03:10:47','2024-09-18 03:10:47'),(5,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Commodi neque mollitia ut doloribus minus. Et necessitatibus ullam eligendi dolores nihil molestias.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Quas nostrum pariatur voluptatem earum quaerat qui. Aliquam pariatur eligendi saepe laudantium voluptas.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Ut in ad velit itaque. Eum consequatur voluptate et pariatur aut et vero. Facere molestiae magnam dolorem tempora similique.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Autem amet esse quam eum eum voluptatem et. Et similique modi id magni illo dicta sit. Sint quos et modi quia itaque natus.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Quo et est aliquam velit similique perspiciatis. Et perferendis sit quia nisi ipsum consequatur qui sequi. Eveniet quis vel quo.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Itaque facere eligendi aut quis libero quaerat magni et. Vel doloremque earum omnis corporis asperiores. At fugiat consequatur illo.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Expedita quas dolorum natus qui rerum id ut. Velit quod accusantium consequatur et. Dolor iure odit magni vitae.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Ipsam dicta tenetur et non quibusdam. Optio vel atque sunt a beatae aliquid. Iure similique voluptatem quaerat.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Repellat alias et adipisci. Non corporis enim quia minus dolore quidem unde. Perspiciatis consequatur sit quia voluptatem omnis ullam.\"}]',5,'Botble\\Gallery\\Models\\Gallery','2024-09-18 03:10:47','2024-09-18 03:10:47'),(6,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Commodi neque mollitia ut doloribus minus. Et necessitatibus ullam eligendi dolores nihil molestias.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Quas nostrum pariatur voluptatem earum quaerat qui. Aliquam pariatur eligendi saepe laudantium voluptas.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Ut in ad velit itaque. Eum consequatur voluptate et pariatur aut et vero. Facere molestiae magnam dolorem tempora similique.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Autem amet esse quam eum eum voluptatem et. Et similique modi id magni illo dicta sit. Sint quos et modi quia itaque natus.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Quo et est aliquam velit similique perspiciatis. Et perferendis sit quia nisi ipsum consequatur qui sequi. Eveniet quis vel quo.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Itaque facere eligendi aut quis libero quaerat magni et. Vel doloremque earum omnis corporis asperiores. At fugiat consequatur illo.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Expedita quas dolorum natus qui rerum id ut. Velit quod accusantium consequatur et. Dolor iure odit magni vitae.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Ipsam dicta tenetur et non quibusdam. Optio vel atque sunt a beatae aliquid. Iure similique voluptatem quaerat.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Repellat alias et adipisci. Non corporis enim quia minus dolore quidem unde. Perspiciatis consequatur sit quia voluptatem omnis ullam.\"}]',6,'Botble\\Gallery\\Models\\Gallery','2024-09-18 03:10:47','2024-09-18 03:10:47');
/*!40000 ALTER TABLE `gallery_meta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

--
-- Dumping data for table `gallery_meta_translations`
--

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

--
-- Table structure for table `jb_account_activity_logs`
--

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

--
-- Dumping data for table `jb_account_activity_logs`
--

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

--
-- Table structure for table `jb_account_educations`
--

DROP TABLE IF EXISTS `jb_account_educations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_account_educations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `school` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `account_id` bigint unsigned NOT NULL,
  `specialized` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `started_at` date NOT NULL,
  `ended_at` date DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_account_educations`
--

LOCK TABLES `jb_account_educations` WRITE;
/*!40000 ALTER TABLE `jb_account_educations` DISABLE KEYS */;
INSERT INTO `jb_account_educations` VALUES (1,'Gateway Technical College',2,'Culture and Technology Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:10:56','2024-09-18 03:10:56'),(2,'Associated Mennonite Biblical Seminary',7,'Anthropology','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:10:58','2024-09-18 03:10:58'),(3,'American Institute of Health Technology',9,'Culture and Technology Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:10:59','2024-09-18 03:10:59'),(4,'The University of the State of Alabama',10,'Culture and Technology Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:10:59','2024-09-18 03:10:59'),(5,'Antioch University McGregor',11,'Economics','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:10:59','2024-09-18 03:10:59'),(6,'Adams State College',12,'Economics','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:00','2024-09-18 03:11:00'),(7,'Antioch University McGregor',13,'Art History','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:00','2024-09-18 03:11:00'),(8,'American Institute of Health Technology',15,'Art History','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:01','2024-09-18 03:11:01'),(9,'American Institute of Health Technology',16,'Art History','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:01','2024-09-18 03:11:01'),(10,'American Institute of Health Technology',17,'Classical Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:01','2024-09-18 03:11:01'),(11,'Antioch University McGregor',19,'Culture and Technology Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:02','2024-09-18 03:11:02'),(12,'Antioch University McGregor',21,'Economics','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:03','2024-09-18 03:11:03'),(13,'American Institute of Health Technology',22,'Anthropology','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:03','2024-09-18 03:11:03'),(14,'Adams State College',26,'Anthropology','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:04','2024-09-18 03:11:04'),(15,'Associated Mennonite Biblical Seminary',33,'Classical Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:06','2024-09-18 03:11:06'),(16,'Gateway Technical College',34,'Economics','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:07','2024-09-18 03:11:07'),(17,'American Institute of Health Technology',35,'Art History','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:07','2024-09-18 03:11:07'),(18,'Adams State College',36,'Classical Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:07','2024-09-18 03:11:07'),(19,'Gateway Technical College',39,'Culture and Technology Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:08','2024-09-18 03:11:08'),(20,'American Institute of Health Technology',44,'Classical Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:09','2024-09-18 03:11:09'),(21,'Associated Mennonite Biblical Seminary',45,'Culture and Technology Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:10','2024-09-18 03:11:10'),(22,'The University of the State of Alabama',47,'Classical Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:10','2024-09-18 03:11:10'),(23,'American Institute of Health Technology',50,'Art History','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:11','2024-09-18 03:11:11'),(24,'Antioch University McGregor',51,'Culture and Technology Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:12','2024-09-18 03:11:12'),(25,'Antioch University McGregor',54,'Classical Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:12','2024-09-18 03:11:12'),(26,'American Institute of Health Technology',55,'Classical Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:13','2024-09-18 03:11:13'),(27,'Antioch University McGregor',56,'Classical Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:13','2024-09-18 03:11:13'),(28,'The University of the State of Alabama',57,'Culture and Technology Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:13','2024-09-18 03:11:13'),(29,'Associated Mennonite Biblical Seminary',61,'Art History','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:14','2024-09-18 03:11:14'),(30,'Associated Mennonite Biblical Seminary',62,'Classical Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:15','2024-09-18 03:11:15'),(31,'American Institute of Health Technology',63,'Economics','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:15','2024-09-18 03:11:15'),(32,'Associated Mennonite Biblical Seminary',64,'Classical Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:15','2024-09-18 03:11:15'),(33,'Adams State College',66,'Art History','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:16','2024-09-18 03:11:16'),(34,'American Institute of Health Technology',67,'Art History','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:16','2024-09-18 03:11:16'),(35,'The University of the State of Alabama',70,'Art History','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:17','2024-09-18 03:11:17'),(36,'The University of the State of Alabama',71,'Art History','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:17','2024-09-18 03:11:17'),(37,'Associated Mennonite Biblical Seminary',74,'Economics','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:18','2024-09-18 03:11:18'),(38,'Associated Mennonite Biblical Seminary',75,'Anthropology','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:18','2024-09-18 03:11:18'),(39,'Gateway Technical College',76,'Economics','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:19','2024-09-18 03:11:19'),(40,'The University of the State of Alabama',77,'Anthropology','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:19','2024-09-18 03:11:19'),(41,'Associated Mennonite Biblical Seminary',79,'Economics','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:20','2024-09-18 03:11:20'),(42,'Antioch University McGregor',83,'Economics','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:22','2024-09-18 03:11:22'),(43,'Gateway Technical College',84,'Anthropology','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:22','2024-09-18 03:11:22'),(44,'Adams State College',88,'Economics','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:23','2024-09-18 03:11:23'),(45,'Associated Mennonite Biblical Seminary',90,'Classical Studies','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:24','2024-09-18 03:11:24'),(46,'Antioch University McGregor',93,'Anthropology','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:25','2024-09-18 03:11:25'),(47,'Adams State College',95,'Anthropology','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:25','2024-09-18 03:11:25'),(48,'American Institute of Health Technology',97,'Art History','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:26','2024-09-18 03:11:26'),(49,'Antioch University McGregor',99,'Anthropology','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:26','2024-09-18 03:11:26'),(50,'Gateway Technical College',100,'Economics','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:27','2024-09-18 03:11:27');
/*!40000 ALTER TABLE `jb_account_educations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_account_experiences`
--

DROP TABLE IF EXISTS `jb_account_experiences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_account_experiences` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `company` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `account_id` bigint unsigned NOT NULL,
  `position` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `started_at` date NOT NULL,
  `ended_at` date DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_account_experiences`
--

LOCK TABLES `jb_account_experiences` WRITE;
/*!40000 ALTER TABLE `jb_account_experiences` DISABLE KEYS */;
INSERT INTO `jb_account_experiences` VALUES (1,'Spa Paragon',2,'Project Manager','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:10:56','2024-09-18 03:10:56'),(2,'Spa Paragon',7,'Project Manager','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:10:58','2024-09-18 03:10:58'),(3,'Party Plex',9,'Marketing Coordinator','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:10:59','2024-09-18 03:10:59'),(4,'Spa Paragon',10,'Web Designer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:10:59','2024-09-18 03:10:59'),(5,'GameDay Catering',11,'Project Manager','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:10:59','2024-09-18 03:10:59'),(6,'Darwin Travel',12,'Project Manager','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:00','2024-09-18 03:11:00'),(7,'Party Plex',13,'Marketing Coordinator','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:00','2024-09-18 03:11:00'),(8,'Darwin Travel',15,'Dog Trainer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:01','2024-09-18 03:11:01'),(9,'Exploration Kids',16,'Marketing Coordinator','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:01','2024-09-18 03:11:01'),(10,'GameDay Catering',17,'Web Designer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:01','2024-09-18 03:11:01'),(11,'Darwin Travel',19,'Dog Trainer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:02','2024-09-18 03:11:02'),(12,'Darwin Travel',21,'Web Designer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:03','2024-09-18 03:11:03'),(13,'GameDay Catering',22,'Marketing Coordinator','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:03','2024-09-18 03:11:03'),(14,'Darwin Travel',26,'Dog Trainer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:04','2024-09-18 03:11:04'),(15,'Spa Paragon',33,'Dog Trainer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:06','2024-09-18 03:11:06'),(16,'Spa Paragon',34,'President of Sales','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:07','2024-09-18 03:11:07'),(17,'GameDay Catering',35,'Project Manager','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:07','2024-09-18 03:11:07'),(18,'GameDay Catering',36,'President of Sales','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:07','2024-09-18 03:11:07'),(19,'Party Plex',39,'President of Sales','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:08','2024-09-18 03:11:08'),(20,'Party Plex',44,'Dog Trainer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:09','2024-09-18 03:11:09'),(21,'Party Plex',45,'Marketing Coordinator','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:10','2024-09-18 03:11:10'),(22,'GameDay Catering',47,'President of Sales','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:10','2024-09-18 03:11:10'),(23,'Spa Paragon',50,'Project Manager','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:11','2024-09-18 03:11:11'),(24,'Party Plex',51,'Dog Trainer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:12','2024-09-18 03:11:12'),(25,'GameDay Catering',54,'President of Sales','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:12','2024-09-18 03:11:12'),(26,'Exploration Kids',55,'President of Sales','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:13','2024-09-18 03:11:13'),(27,'GameDay Catering',56,'Web Designer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:13','2024-09-18 03:11:13'),(28,'Exploration Kids',57,'Dog Trainer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:13','2024-09-18 03:11:13'),(29,'Darwin Travel',61,'Marketing Coordinator','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:14','2024-09-18 03:11:14'),(30,'Exploration Kids',62,'Marketing Coordinator','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:15','2024-09-18 03:11:15'),(31,'Darwin Travel',63,'Web Designer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:15','2024-09-18 03:11:15'),(32,'GameDay Catering',64,'President of Sales','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:15','2024-09-18 03:11:15'),(33,'Darwin Travel',66,'Web Designer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:16','2024-09-18 03:11:16'),(34,'Darwin Travel',67,'President of Sales','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:16','2024-09-18 03:11:16'),(35,'GameDay Catering',70,'Project Manager','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:17','2024-09-18 03:11:17'),(36,'GameDay Catering',71,'Web Designer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:17','2024-09-18 03:11:17'),(37,'Spa Paragon',74,'Dog Trainer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:18','2024-09-18 03:11:18'),(38,'Party Plex',75,'Web Designer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:18','2024-09-18 03:11:18'),(39,'Spa Paragon',76,'Marketing Coordinator','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:19','2024-09-18 03:11:19'),(40,'Exploration Kids',77,'Dog Trainer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:19','2024-09-18 03:11:19'),(41,'GameDay Catering',79,'Dog Trainer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:20','2024-09-18 03:11:20'),(42,'Exploration Kids',83,'Dog Trainer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:22','2024-09-18 03:11:22'),(43,'Darwin Travel',84,'Marketing Coordinator','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:22','2024-09-18 03:11:22'),(44,'Exploration Kids',88,'Web Designer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:23','2024-09-18 03:11:23'),(45,'Exploration Kids',90,'Web Designer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:24','2024-09-18 03:11:24'),(46,'Spa Paragon',93,'Marketing Coordinator','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:25','2024-09-18 03:11:25'),(47,'Exploration Kids',95,'Project Manager','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:25','2024-09-18 03:11:25'),(48,'Exploration Kids',97,'Marketing Coordinator','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:26','2024-09-18 03:11:26'),(49,'GameDay Catering',99,'Project Manager','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:26','2024-09-18 03:11:26'),(50,'Party Plex',100,'Dog Trainer','2024-09-18','2024-09-18','There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience','2024-09-18 03:11:27','2024-09-18 03:11:27');
/*!40000 ALTER TABLE `jb_account_experiences` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_account_favorite_skills`
--

DROP TABLE IF EXISTS `jb_account_favorite_skills`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_account_favorite_skills` (
  `skill_id` bigint unsigned NOT NULL,
  `account_id` bigint unsigned NOT NULL,
  PRIMARY KEY (`skill_id`,`account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_account_favorite_skills`
--

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

--
-- Table structure for table `jb_account_favorite_tags`
--

DROP TABLE IF EXISTS `jb_account_favorite_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_account_favorite_tags` (
  `tag_id` bigint unsigned NOT NULL,
  `account_id` bigint unsigned NOT NULL,
  PRIMARY KEY (`tag_id`,`account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_account_favorite_tags`
--

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

--
-- Table structure for table `jb_account_languages`
--

DROP TABLE IF EXISTS `jb_account_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_account_languages` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `account_id` bigint unsigned NOT NULL,
  `language_level_id` bigint unsigned NOT NULL,
  `language` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_native` tinyint(1) NOT NULL DEFAULT '0',
  `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 `jb_account_languages`
--

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

--
-- Table structure for table `jb_account_packages`
--

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

--
-- Dumping data for table `jb_account_packages`
--

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

--
-- Table structure for table `jb_account_password_resets`
--

DROP TABLE IF EXISTS `jb_account_password_resets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_account_password_resets` (
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  KEY `jb_account_password_resets_email_index` (`email`),
  KEY `jb_account_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 `jb_account_password_resets`
--

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

--
-- Table structure for table `jb_accounts`
--

DROP TABLE IF EXISTS `jb_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_accounts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `unique_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `first_name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `gender` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `avatar_id` bigint unsigned DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `confirmed_at` datetime DEFAULT NULL,
  `email_verify_token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'job-seeker',
  `credits` int unsigned DEFAULT NULL,
  `resume` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `bio` mediumtext COLLATE utf8mb4_unicode_ci,
  `is_public_profile` tinyint unsigned NOT NULL DEFAULT '0',
  `hide_cv` tinyint(1) NOT NULL DEFAULT '0',
  `views` bigint unsigned NOT NULL DEFAULT '0',
  `is_featured` tinyint NOT NULL DEFAULT '0',
  `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `available_for_hiring` tinyint(1) NOT NULL DEFAULT '1',
  `country_id` bigint unsigned DEFAULT '1',
  `state_id` bigint unsigned DEFAULT NULL,
  `city_id` bigint unsigned DEFAULT NULL,
  `cover_letter` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `jb_accounts_email_unique` (`email`),
  UNIQUE KEY `jb_accounts_unique_id_unique` (`unique_id`)
) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_accounts`
--

LOCK TABLES `jb_accounts` WRITE;
/*!40000 ALTER TABLE `jb_accounts` DISABLE KEYS */;
INSERT INTO `jb_accounts` VALUES (1,NULL,'Gene','Schmeler','Software Developer',NULL,'employer@archielite.com','$2y$12$nhL55W/2YmK8F7mOuJMEM.MixNWTuOlAMdIlLhjXj33HkzzA7kykG',186,'1972-10-22','+16073248012','2024-09-18 10:10:56',NULL,'employer',NULL,NULL,'15558 Lang Course\nGayton, WA 85634','The Queen turned crimson with fury, and, after waiting till she shook the house, \"Let us both go to on the look-out for serpents night and day! Why, I wouldn\'t say anything about it, you know.\' \'I.',1,0,4262,1,NULL,'2024-09-18 03:10:56','2024-09-18 03:10:56',0,1,NULL,NULL,NULL),(2,NULL,'Aubrey','Erdman','Creative Designer',NULL,'job_seeker@archielite.com','$2y$12$wwJUaB3fbt6XFlFWjBn9MOuUa3HtMy6S915dXfSUYJQ5ZCywxtTE.',185,'1973-07-17','+18063334718','2024-09-18 10:10:56',NULL,'job-seeker',NULL,'resume/01.pdf','681 Lempi Burg Suite 882\nTristinfort, UT 13770-9548','Like a tea-tray in the wind, and the Dormouse said--\' the Hatter said, turning to the game, the Queen till she heard a little house in it about four feet high. \'I wish the creatures wouldn\'t be in.',1,0,4544,1,NULL,'2024-09-18 03:10:56','2024-09-18 03:10:56',0,1,NULL,NULL,NULL),(3,NULL,'Sarah','Harding','Creative Designer',NULL,'sarah_harding@archielite.com','$2y$12$jSJR.PCLcMTrKjS6GAb1Se1MRhAWxh6wFOJwZIf/46mPHrQ5bMM/W',184,'1983-08-17','+19076920280','2024-09-18 10:10:57',NULL,'employer',NULL,NULL,'52490 Stracke Road\nPort Carrie, NY 01738','Mock Turtle yet?\' \'No,\' said the Pigeon; \'but if you\'ve seen them so often, of course had to be otherwise than what you had been wandering, when a cry of \'The trial\'s beginning!\' was heard in the.',1,0,808,0,NULL,'2024-09-18 03:10:57','2024-09-18 03:10:57',0,1,NULL,NULL,NULL),(4,NULL,'Steven','Jobs','Creative Designer',NULL,'steven_jobs@archielite.com','$2y$12$6KnsBrkmMIOrgXXfqUOHWOiRBBYohKAfbRBeQ5wNk.E6339h4EYQO',185,'1982-01-28','+14458076071','2024-09-18 10:10:57',NULL,'employer',NULL,NULL,'11574 Hyatt Meadow\nEast Maverickbury, ID 62071','Alice began to repeat it, when a sharp hiss made her so savage when they met in the air, mixed up with the Dormouse. \'Write that down,\' the King had said that day. \'No, no!\' said the Hatter: \'let\'s.',1,0,4420,1,NULL,'2024-09-18 03:10:57','2024-09-18 03:10:57',0,1,NULL,NULL,NULL),(5,NULL,'William','Kent','Creative Designer',NULL,'william_kent@archielite.com','$2y$12$UHn578TfOMUxLtCUenV9PeQhlkZZL2hC5mgSX47KyU7MQyM8OA1X6',186,'2001-05-05','+18608276245','2024-09-18 10:10:57',NULL,'employer',NULL,NULL,'9312 Breitenberg Extensions\nAurelieborough, TN 86892','Alice went on saying to herself, and once she remembered how small she was quite tired of being all alone here!\' As she said these words her foot as far down the hall. After a time there were a Duck.',1,0,2096,1,NULL,'2024-09-18 03:10:57','2024-09-18 03:10:57',1,1,NULL,NULL,NULL),(6,NULL,'Linda','Satterfield','Caterpillar. Alice.',NULL,'loyce77@feil.com','$2y$12$KnMHlMA9VtEzhNw9zSeKo.0fZC8Hhcm6tySO2xgbnOmJ..EutIAXe',185,'1976-07-29','+13232521411','2024-09-18 10:10:58',NULL,'employer',NULL,NULL,'8921 Macejkovic Via\nSouth Darron, MD 04417-5981','Cat in a tone of great relief. \'Call the next verse.\' \'But about his toes?\' the Mock Turtle persisted. \'How COULD he turn them out with his knuckles. It was the White Rabbit, who said in an offended.',1,0,2447,0,NULL,'2024-09-18 03:10:58','2024-09-18 03:10:58',1,1,NULL,NULL,NULL),(7,NULL,'Celestine','Gaylord','The first question.',NULL,'norene.abshire@kovacek.com','$2y$12$NP5lsAnraxVtI4H20gq/YerfnE9nCTYybRaFAbNsVfr7H3/dKk.6e',184,'2023-10-02','+12293885728','2024-09-18 10:10:58',NULL,'job-seeker',NULL,'resume/01.pdf','163 Berniece Radial\nEast Nathanaelside, IA 15846-2278','But here, to Alice\'s side as she could, for the next witness was the Hatter. This piece of it in less than no time to be sure, she had succeeded in curving it down into its face to see what was.',1,0,4239,1,NULL,'2024-09-18 03:10:58','2024-09-18 03:10:58',1,1,NULL,NULL,NULL),(8,NULL,'Cole','Hamill','Alice herself, and.',NULL,'kschuppe@hotmail.com','$2y$12$TxThR8Mg3EsXbUhxps5ANeUWVbei05USoEf2gO/k8.E/tOJ8XBFBa',185,'2002-05-17','+16785485412','2024-09-18 10:10:58',NULL,'employer',NULL,NULL,'96013 Dach Parkways\nSchambergerburgh, VT 57368','March Hare meekly replied. \'Yes, but some crumbs must have been ill.\' \'So they were,\' said the Hatter. \'Nor I,\' said the Mock Turtle, and to wonder what they WILL do next! As for pulling me out of.',1,0,970,1,NULL,'2024-09-18 03:10:58','2024-09-18 03:10:58',1,1,NULL,NULL,NULL),(9,NULL,'Imani','Ullrich','Alice could hardly.',NULL,'domingo.douglas@hettinger.info','$2y$12$qLZju.Z5hawotm7xDoKC1OyhoLGm4qlIcXkPjPZlHAESOpIdtLm5C',184,'2019-10-03','+13128069847','2024-09-18 10:10:59',NULL,'job-seeker',NULL,'resume/01.pdf','824 Kris Neck Apt. 675\nNorth Devinshire, ID 67910','So she began: \'O Mouse, do you call it purring, not growling,\' said Alice. \'Then it ought to be two people! Why, there\'s hardly room to open them again, and did not get hold of its right paw round.',1,0,1831,1,NULL,'2024-09-18 03:10:59','2024-09-18 03:10:59',0,1,NULL,NULL,NULL),(10,NULL,'Isidro','Murphy','Mouse, sharply and.',NULL,'kuhic.jameson@gmail.com','$2y$12$uG.sfe9h0XcSXsLidPV18eCrFdZRR/t4eDVxs9ICS1hEukUmj3lXO',184,'1983-03-02','+16236207271','2024-09-18 10:10:59',NULL,'job-seeker',NULL,'resume/01.pdf','4659 Irwin Throughway Suite 897\nFeilchester, IA 34023','Alice; \'all I know all the players, except the King, \'or I\'ll have you executed.\' The miserable Hatter dropped his teacup instead of onions.\' Seven flung down his face, as long as it was in the way.',1,0,1845,0,NULL,'2024-09-18 03:10:59','2024-09-18 03:10:59',1,1,NULL,NULL,NULL),(11,NULL,'Teagan','Parker','I\'m a deal faster.',NULL,'grimes.gino@durgan.net','$2y$12$h/4JMj6IkNX.d4TTcRZi7uf4VShE3AWjiYrcwP/HHK8KGjm6c5QG6',185,'2022-08-31','+16034475405','2024-09-18 10:10:59',NULL,'job-seeker',NULL,'resume/01.pdf','7943 Schowalter Inlet Apt. 244\nLake Johann, OH 72274','She is such a thing. After a time she saw in my own tears! That WILL be a book of rules for shutting people up like a sky-rocket!\' \'So you did, old fellow!\' said the Gryphon, \'that they WOULD go.',1,0,1268,0,NULL,'2024-09-18 03:10:59','2024-09-18 03:10:59',1,1,NULL,NULL,NULL),(12,NULL,'Drake','Doyle','Let me think: was.',NULL,'alisha52@hotmail.com','$2y$12$P3m9fngGDJgjjBT6A/qK5.CvgixKbhP8Jx99wA/NLgQpadhsu3Lnu',186,'1997-07-13','+18153819669','2024-09-18 10:11:00',NULL,'job-seeker',NULL,'resume/01.pdf','49020 Barton Causeway\nSouth Treva, MI 04631-1412','Hatter. \'He won\'t stand beating. Now, if you don\'t even know what to do, so Alice went on \'And how many miles I\'ve fallen by this time, as it could go, and broke off a bit afraid of interrupting.',1,0,4430,1,NULL,'2024-09-18 03:11:00','2024-09-18 03:11:00',1,1,NULL,NULL,NULL),(13,NULL,'Leta','Klocko','Alice: \'--where\'s.',NULL,'schamberger.bruce@yahoo.com','$2y$12$ojKzALrFIhpmPbcVx5cUFeac2ur3US8iwbuokz0QWwMyXGC2wLQXq',184,'1981-02-06','+19289291655','2024-09-18 10:11:00',NULL,'job-seeker',NULL,'resume/01.pdf','2372 Hessel Canyon\nCandidaton, NH 28367-2464','Alice. \'Nothing,\' said Alice. \'Of course twinkling begins with an M?\' said Alice. \'Of course you don\'t!\' the Hatter went on, \'if you only walk long enough.\' Alice felt dreadfully puzzled. The.',1,0,1206,1,NULL,'2024-09-18 03:11:00','2024-09-18 03:11:00',1,1,NULL,NULL,NULL),(14,NULL,'Ronny','Beahan','Alice, \'when one.',NULL,'zarmstrong@hotmail.com','$2y$12$hGvPzIZrcNGsHZowwCll4uYk282WE7jpcvN7uaiI4IqRdKPOQnSFq',186,'1974-09-16','+16319827902','2024-09-18 10:11:00',NULL,'employer',NULL,NULL,'4445 Bins Plaza\nNorth Gustavestad, MA 79905','I know!\' exclaimed Alice, who had meanwhile been examining the roses. \'Off with her arms round it as to prevent its undoing itself,) she carried it out into the sky all the players, except the.',1,0,1314,1,NULL,'2024-09-18 03:11:00','2024-09-18 03:11:00',0,1,NULL,NULL,NULL),(15,NULL,'Marilou','O\'Keefe','Alice, and tried.',NULL,'ella.boyer@hotmail.com','$2y$12$wc6WJvxZDgKeC3b98kzwsuue/Gu2pCfmJAS0ed4dsLSI7WSYciosW',186,'1991-11-15','+12409965707','2024-09-18 10:11:01',NULL,'job-seeker',NULL,'resume/01.pdf','8804 Julio Prairie Suite 111\nHirthemouth, UT 01721','Alice and all of you, and listen to her. The Cat seemed to be ashamed of yourself,\' said Alice, (she had kept a piece of evidence we\'ve heard yet,\' said the Mock Turtle went on. \'Or would you tell.',1,0,1586,0,NULL,'2024-09-18 03:11:01','2024-09-18 03:11:01',1,1,NULL,NULL,NULL),(16,NULL,'Alessandro','Collins','Pray how did you.',NULL,'powlowski.fern@yundt.com','$2y$12$VyvdDh7hXNkzctJmSsJuNOwFzsLFpz0nQWg2QiS1q.DOtextQb3kW',186,'1996-10-15','+13258580463','2024-09-18 10:11:01',NULL,'job-seeker',NULL,'resume/01.pdf','128 Shanahan Causeway Suite 981\nWest Cynthia, MO 80780','Caterpillar took the hookah out of its little eyes, but it puzzled her a good deal: this fireplace is narrow, to be sure; but I grow at a reasonable pace,\' said the Hatter. \'Does YOUR watch tell you.',1,0,1570,0,NULL,'2024-09-18 03:11:01','2024-09-18 03:11:01',1,1,NULL,NULL,NULL),(17,NULL,'Murl','McCullough','EVER happen in a.',NULL,'esther.medhurst@sporer.com','$2y$12$Hun4GHjFJJ5qBllL2BU0KOxvhS.qbczumwRdoehdDm3vbb5vVC2Dy',186,'1972-03-16','+13607340730','2024-09-18 10:11:01',NULL,'job-seeker',NULL,'resume/01.pdf','9078 Blanca Valleys\nMagalifort, ID 12205','I then? Tell me that first, and then, \'we went to work shaking him and punching him in the sun. (IF you don\'t even know what they\'re like.\' \'I believe so,\' Alice replied thoughtfully. \'They have.',1,0,3408,1,NULL,'2024-09-18 03:11:01','2024-09-18 03:11:01',0,1,NULL,NULL,NULL),(18,NULL,'Idella','Dickens','Please, Ma\'am, is.',NULL,'durgan.jaclyn@hotmail.com','$2y$12$bJlUn/58ZB3t3ZR9i7YIJuO33Lkuz2P24NYEc/ENeU9MHkIYjMHLO',186,'1981-05-31','+14696219569','2024-09-18 10:11:02',NULL,'employer',NULL,NULL,'54347 Willie Tunnel\nLake Ilastad, KS 56395','Gryphon went on, very much of a muchness?\' \'Really, now you ask me,\' said Alice, (she had kept a piece of evidence we\'ve heard yet,\' said Alice; \'I daresay it\'s a French mouse, come over with.',1,0,4998,0,NULL,'2024-09-18 03:11:02','2024-09-18 03:11:02',0,1,NULL,NULL,NULL),(19,NULL,'Kaden','Fisher','Fish-Footman was.',NULL,'gia60@hotmail.com','$2y$12$UHuuLGnG18dLhMyDnh1W.ebGT8Hb8oCvJZiA4s3vpTMRDgL6GuA0W',185,'1991-05-23','+12054215423','2024-09-18 10:11:02',NULL,'job-seeker',NULL,'resume/01.pdf','9404 Casper Route\nNew Yadira, NY 93696-4901','Father William replied to his son, \'I feared it might tell her something about the right house, because the Duchess sneezed occasionally; and as the doubled-up soldiers were silent, and looked at.',1,0,4316,1,NULL,'2024-09-18 03:11:02','2024-09-18 03:11:02',0,1,NULL,NULL,NULL),(20,NULL,'Alejandra','Wolf','ALL PERSONS MORE.',NULL,'lolita.gleichner@gmail.com','$2y$12$HR5vZgA7VUi2MXw8.ojVYura0tu5GDa9.T4DzKSuD7Gb.zjQx67p.',185,'2006-05-02','+18206659735','2024-09-18 10:11:02',NULL,'employer',NULL,NULL,'763 Hane Neck\nJuneburgh, SD 09766','Duchess replied, in a large crowd collected round it: there were any tears. No, there were no arches left, and all her riper years, the simple and loving heart of her voice. Nobody moved. \'Who cares.',1,0,2425,0,NULL,'2024-09-18 03:11:02','2024-09-18 03:11:02',0,1,NULL,NULL,NULL),(21,NULL,'Betty','Emard','Miss, we\'re doing.',NULL,'kimberly.quigley@yahoo.com','$2y$12$82QV2HQg3uFhMEV61oyUjOvXCziu1tI1nc7.EAB/A8JgaHKBMNiQm',185,'1986-02-27','+15153484188','2024-09-18 10:11:03',NULL,'job-seeker',NULL,'resume/01.pdf','20352 Isobel Field Apt. 995\nGarnetbury, WA 73700-4919','Because he knows it teases.\' CHORUS. (In which the words have got in as well,\' the Hatter asked triumphantly. Alice did not like to go from here?\' \'That depends a good opportunity for making her.',1,0,2164,1,NULL,'2024-09-18 03:11:03','2024-09-18 03:11:03',0,1,NULL,NULL,NULL),(22,NULL,'Jaqueline','Strosin','There was exactly.',NULL,'zblock@hotmail.com','$2y$12$hOgH9AFh96NbTqeS9iyacuBoW3PC3QTIjWheJfZODiIZAsUHI7KSm',184,'1974-02-02','+17186004294','2024-09-18 10:11:03',NULL,'job-seeker',NULL,'resume/01.pdf','5098 Senger Locks\nNew Jaylen, TX 77964','Grammar, \'A mouse--of a mouse--to a mouse--a mouse--O mouse!\') The Mouse only growled in reply. \'Idiot!\' said the King, looking round the neck of the court and got behind him, and very soon finished.',1,0,131,0,NULL,'2024-09-18 03:11:03','2024-09-18 03:11:03',0,1,NULL,NULL,NULL),(23,NULL,'Romaine','Kessler','I\'ll have you got.',NULL,'mcclure.ashlynn@spinka.com','$2y$12$JoWXk0quqqCbGNbkBVXgE.TGGb5WKeT/MtK8bMLGhidK6LGee5PBO',186,'1981-07-27','+19062811684','2024-09-18 10:11:03',NULL,'employer',NULL,NULL,'9550 Kiehn Canyon\nAlethastad, ND 15903','I should like it put more simply--\"Never imagine yourself not to her, one on each side to guard him; and near the King said, with a teacup in one hand and a large dish of tarts upon it: they looked.',1,0,4984,1,NULL,'2024-09-18 03:11:03','2024-09-18 03:11:03',0,1,NULL,NULL,NULL),(24,NULL,'Derek','Gulgowski','Normans--\" How are.',NULL,'igoldner@yahoo.com','$2y$12$4PqJjXphyoOPrPc43VTYmObgd6TrOdtdp9JGledO.TNiagIDpgAXK',184,'1992-06-14','+17658621904','2024-09-18 10:11:03',NULL,'employer',NULL,NULL,'5289 Koss Mission Suite 267\nLake Cale, FL 57306','Mock Turtle. Alice was too late to wish that! She went on in a day did you begin?\' The Hatter was the fan and gloves--that is, if I would talk on such a simple question,\' added the Dormouse, not.',1,0,4248,1,NULL,'2024-09-18 03:11:03','2024-09-18 03:11:03',1,1,NULL,NULL,NULL),(25,NULL,'Amir','Witting','I? Ah, THAT\'S the.',NULL,'connor75@yahoo.com','$2y$12$L0MnONmHMj9Qemw1w82cBeKCziOLwHtJsQEx1G2NBSFtwWpB4/A8C',184,'1974-07-24','+14428298982','2024-09-18 10:11:04',NULL,'employer',NULL,NULL,'6170 Mohr Mall\nBettymouth, MA 27867-8789','I shall ever see such a nice little dog near our house I should think very likely true.) Down, down, down. Would the fall was over. Alice was so small as this is May it won\'t be raving mad--at least.',1,0,2516,0,NULL,'2024-09-18 03:11:04','2024-09-18 03:11:04',0,1,NULL,NULL,NULL),(26,NULL,'Clarissa','Johnson','Who in the air: it.',NULL,'swisoky@hotmail.com','$2y$12$laYfjAaI30wsaJD6e2vdYuD/se5OgPuV8rhsBuHGZGJbUORHTrCbu',184,'1986-03-12','+13312886728','2024-09-18 10:11:04',NULL,'job-seeker',NULL,'resume/01.pdf','45767 Destany Wall\nCroninmouth, KS 82755-9475','Alice, \'when one wasn\'t always growing larger and smaller, and being ordered about by mice and rabbits. I almost wish I hadn\'t quite finished my tea when I got up and rubbed its eyes: then it.',1,0,1773,0,NULL,'2024-09-18 03:11:04','2024-09-18 03:11:04',1,1,NULL,NULL,NULL),(27,NULL,'Modesta','Wintheiser','OURS they had been.',NULL,'senger.rhianna@gmail.com','$2y$12$l/tWh4S92FN./7l/XHQABuppv4kKdvVO4nsQks.2bldHeSmrNqki.',184,'2017-04-11','+15164386850','2024-09-18 10:11:04',NULL,'employer',NULL,NULL,'114 Ritchie Trafficway Suite 935\nPort Willy, IN 36648-1932','After a time she found her head made her draw back in their mouths. So they began running when they liked, and left off writing on his spectacles and looked at poor Alice, \'to pretend to be full of.',1,0,1336,1,NULL,'2024-09-18 03:11:04','2024-09-18 03:11:04',0,1,NULL,NULL,NULL),(28,NULL,'Christopher','Davis','Dodo replied very.',NULL,'udach@yahoo.com','$2y$12$LMaQO5QUn5JpMzb9CRqtQOb2U/bWcptPL7aiDMYz1vihlkHdt4OiW',185,'1974-08-28','+15153711055','2024-09-18 10:11:05',NULL,'employer',NULL,NULL,'1975 Grimes Rest Suite 057\nRobelstad, MO 08012-4591','Number One,\' said Alice. \'Call it what you had been all the jurymen on to the door. \'Call the next witness!\' said the Mock Turtle, suddenly dropping his voice; and Alice joined the procession.',1,0,3457,0,NULL,'2024-09-18 03:11:05','2024-09-18 03:11:05',0,1,NULL,NULL,NULL),(29,NULL,'Paige','Bednar','Mouse in the same.',NULL,'bboehm@yost.info','$2y$12$9TGhF34bUqs7G6KD2XTkieUlMPK9ZJ8honc/s9X1MppjVqkg0zDVm',184,'2020-03-13','+18103647199','2024-09-18 10:11:05',NULL,'employer',NULL,NULL,'93905 Garland Union Suite 344\nEast Cara, ID 10701','After these came the guests, mostly Kings and Queens, and among them Alice recognised the White Rabbit, jumping up in her life, and had to stoop to save her neck from being run over; and the party.',1,0,1152,1,NULL,'2024-09-18 03:11:05','2024-09-18 03:11:05',1,1,NULL,NULL,NULL),(30,NULL,'Susie','Konopelski','There was a dead.',NULL,'letitia75@yahoo.com','$2y$12$rMOmg0.5EoWyO96.r/ggouvfqk1l2JIbyOXxvH7GULHxx7frJ0G7y',185,'1971-02-04','+13618709655','2024-09-18 10:11:05',NULL,'employer',NULL,NULL,'5169 Michele Glens\nGenovevatown, RI 70822','I THINK; or is it directed to?\' said the Pigeon; \'but if you\'ve seen them so often, you know.\' \'Not the same side of the Lobster Quadrille?\' the Gryphon went on to the croquet-ground. The other side.',1,0,1580,0,NULL,'2024-09-18 03:11:05','2024-09-18 03:11:05',0,1,NULL,NULL,NULL),(31,NULL,'Araceli','Jacobs','The Mock Turtle\'s.',NULL,'nlegros@yahoo.com','$2y$12$Kc245KZ1ryRxhJPO/ibAv.YLj.d47H/PtGkWQdRqnCB6oH2o7XrCq',184,'2000-04-21','+15738402706','2024-09-18 10:11:06',NULL,'employer',NULL,NULL,'128 Halvorson Vista Apt. 124\nRobertotown, OK 30632','Alice could hardly hear the very middle of one! There ought to speak, but for a long argument with the bones and the Dormouse followed him: the March Hare. \'It was a long sleep you\'ve had!\' \'Oh.',1,0,3946,0,NULL,'2024-09-18 03:11:06','2024-09-18 03:11:06',1,1,NULL,NULL,NULL),(32,NULL,'Brigitte','Kessler','The Footman seemed.',NULL,'ikuvalis@kiehn.com','$2y$12$6vhUA5PsaDzuKteM2vWyd.ZejXVs015UijsvTmxVrPHCdxqan3sQK',186,'1977-04-11','+17606592493','2024-09-18 10:11:06',NULL,'employer',NULL,NULL,'4517 Donna Centers Apt. 485\nNew Fatima, TN 23485-8837','In the very tones of the house, and wondering whether she ought to have any rules in particular; at least, if there are, nobody attends to them--and you\'ve no idea what a dear quiet thing,\' Alice.',1,0,1380,0,NULL,'2024-09-18 03:11:06','2024-09-18 03:11:06',0,1,NULL,NULL,NULL),(33,NULL,'Hobart','Kutch','Queen, and Alice.',NULL,'orrin.stracke@hotmail.com','$2y$12$pfYEoIMdx7cGQz7MyGzCw.j3xZCa325ahc2qutb/t1ZA5rUZyNfj.',186,'1978-07-21','+13257930194','2024-09-18 10:11:06',NULL,'job-seeker',NULL,'resume/01.pdf','263 Breitenberg Park\nHeavenstad, LA 63025-8806','Gryphon. \'I\'ve forgotten the words.\' So they sat down, and felt quite unhappy at the house, and the poor little juror (it was exactly three inches high). \'But I\'m not looking for eggs, I know THAT.',1,0,4815,0,NULL,'2024-09-18 03:11:06','2024-09-18 03:11:06',0,1,NULL,NULL,NULL),(34,NULL,'Jace','Pacocha','Alice; \'living at.',NULL,'tgislason@wolf.org','$2y$12$86fE5IL4lOYG.Hl.f2Cu5.m9uK1TL9Vc6OxfSKA53OEEb2EV//Sg6',186,'1999-12-16','+16012865864','2024-09-18 10:11:07',NULL,'job-seeker',NULL,'resume/01.pdf','66116 Murray Spur\nNelletown, MT 63714-2900','Oh dear! I shall ever see such a pleasant temper, and thought it would be the use of repeating all that stuff,\' the Mock Turtle went on, \'if you only walk long enough.\' Alice felt a little feeble.',1,0,3979,1,NULL,'2024-09-18 03:11:07','2024-09-18 03:11:07',0,1,NULL,NULL,NULL),(35,NULL,'Trever','Mills','RABBIT\' engraved.',NULL,'alisa55@spinka.net','$2y$12$ePsINqgb.ymNdB8P4lk1IOBdwzqL7RixC16k6r4wE/R0nL46q32cC',185,'1978-04-08','+13862276705','2024-09-18 10:11:07',NULL,'job-seeker',NULL,'resume/01.pdf','4254 Nikolaus Court\nNew Lucile, SD 35436','Mock Turtle yawned and shut his note-book hastily. \'Consider your verdict,\' he said in an undertone, \'important--unimportant--unimportant--important--\' as if it thought that she might as well to.',1,0,2342,0,NULL,'2024-09-18 03:11:07','2024-09-18 03:11:07',0,1,NULL,NULL,NULL),(36,NULL,'Kyler','Schowalter','What happened to.',NULL,'uwelch@gmail.com','$2y$12$c0Pv6bvjS8GzdtGuRZKzq.2Ad5NPYFUtCMM..B0QnKPaN9JAi1vE2',184,'2014-10-03','+19737740820','2024-09-18 10:11:07',NULL,'job-seeker',NULL,'resume/01.pdf','54152 Mandy Drive\nEast Trever, NY 97007','VERY wide, but she had grown so large a house, that she had read about them in books, and she thought it would be of any that do,\' Alice said to herself, \'after such a new idea to Alice, and she at.',1,0,2616,0,NULL,'2024-09-18 03:11:07','2024-09-18 03:11:07',1,1,NULL,NULL,NULL),(37,NULL,'Ena','Dietrich','Yet you balanced.',NULL,'harvey.chaim@gmail.com','$2y$12$IAxqgcsug3GCDfTF98xr0um2h/JJ5aFgb3RF/wiKqQGCMx6HhGpPK',184,'2003-01-18','+19043321737','2024-09-18 10:11:07',NULL,'employer',NULL,NULL,'80751 Alyce Mount Suite 885\nDannieberg, MA 82781','Cat; and this was her dream:-- First, she dreamed of little animals and birds waiting outside. The poor little thing howled so, that Alice said; but was dreadfully puzzled by the end of the.',1,0,702,0,NULL,'2024-09-18 03:11:07','2024-09-18 03:11:07',1,1,NULL,NULL,NULL),(38,NULL,'Emmy','McGlynn','At last the Dodo.',NULL,'katheryn.bergstrom@lindgren.org','$2y$12$xFFhDK/NpqNdsln16YgkZea.jZ1UX0z8QfLDSIlkgqcuB1B/u0Wm2',184,'2021-08-17','+15209377081','2024-09-18 10:11:08',NULL,'employer',NULL,NULL,'363 Devan Ways Apt. 392\nKaiamouth, NE 09285','Mystery,\' the Mock Turtle. \'Hold your tongue!\' added the Dormouse, without considering at all a pity. I said \"What for?\"\' \'She boxed the Queen\'s ears--\' the Rabbit angrily. \'Here! Come and help me.',1,0,1674,1,NULL,'2024-09-18 03:11:08','2024-09-18 03:11:08',1,1,NULL,NULL,NULL),(39,NULL,'Bethany','Walker','RABBIT\' engraved.',NULL,'hills.antonietta@gmail.com','$2y$12$ukbhvK7hZsGgPynv1nOD/u2akZWXvxws0nWVjiF0dsKYUncdBxDei',186,'2023-10-04','+17315387176','2024-09-18 10:11:08',NULL,'job-seeker',NULL,'resume/01.pdf','721 Willms Walk Apt. 919\nPort Cloydmouth, MS 11555-1276','What happened to me! When I used to say \'I once tasted--\' but checked herself hastily, and said nothing. \'Perhaps it doesn\'t mind.\' The table was a good deal worse off than before, as the March Hare.',1,0,3906,0,NULL,'2024-09-18 03:11:08','2024-09-18 03:11:08',0,1,NULL,NULL,NULL),(40,NULL,'Sigrid','Padberg','Alice, in a great.',NULL,'roslyn59@hotmail.com','$2y$12$uOHdOKYUHFCI.HEFkPnfmeMmEZ.nnWi6hUxeUqxw2b0UBRlPf387i',184,'2015-08-06','+14452821585','2024-09-18 10:11:08',NULL,'employer',NULL,NULL,'9465 Dandre Throughway Apt. 645\nWest Tavares, OH 42502-8126','He was an uncomfortably sharp chin. However, she did not dare to laugh; and, as the rest of my own. I\'m a deal faster than it does.\' \'Which would NOT be an old conger-eel, that used to read.',1,0,4864,1,NULL,'2024-09-18 03:11:08','2024-09-18 03:11:08',1,1,NULL,NULL,NULL),(41,NULL,'Rosalee','Mueller','Alice looked very.',NULL,'amir.balistreri@berge.biz','$2y$12$tVCgWgYtmI1rhROB.ZWElOh.wIrN5goC/OPbWAdZUkAYl4NUVMCZK',184,'1994-08-22','+15163274832','2024-09-18 10:11:09',NULL,'employer',NULL,NULL,'6408 Frieda Vista Suite 246\nSouth Kaylinstad, TX 19597-4109','Alice looked at her as hard as she picked up a little scream of laughter. \'Oh, hush!\' the Rabbit just under the door; so either way I\'ll get into her head. \'If I eat one of the tale was something.',1,0,2572,0,NULL,'2024-09-18 03:11:09','2024-09-18 03:11:09',0,1,NULL,NULL,NULL),(42,NULL,'Jeff','Bernhard','Down, down, down.',NULL,'katherine.kulas@yahoo.com','$2y$12$.QCZgYTewlHzH4IPLzawa.YoFzeSZB409R7Z6zM695lW8kNS7V2Ae',184,'2001-09-09','+18657824635','2024-09-18 10:11:09',NULL,'employer',NULL,NULL,'779 Murphy Common\nHaagburgh, LA 35045-3591','Gryphon. \'They can\'t have anything to put the hookah out of the house, and found herself in a large crowd collected round it: there was no \'One, two, three, and away,\' but they all cheered. Alice.',1,0,4606,1,NULL,'2024-09-18 03:11:09','2024-09-18 03:11:09',1,1,NULL,NULL,NULL),(43,NULL,'Shanon','Hane','The Queen turned.',NULL,'aglae.mayer@yahoo.com','$2y$12$XQIVMCVbw11Fj0lHnM8jr.h47Dkxk4owTnlTWXT1Syt6BwZlAV476',184,'1988-06-04','+18596053414','2024-09-18 10:11:09',NULL,'employer',NULL,NULL,'392 O\'Keefe Trace\nSouth Keagan, TX 04251','Hatter, \'when the Queen put on his spectacles. \'Where shall I begin, please your Majesty,\' said Alice in a very little use, as it didn\'t much matter which way I ought to be full of soup. \'There\'s.',1,0,3778,0,NULL,'2024-09-18 03:11:09','2024-09-18 03:11:09',0,1,NULL,NULL,NULL),(44,NULL,'Tavares','Braun','Mouse heard this.',NULL,'floy77@hotmail.com','$2y$12$okwBtcnKMt09gnaS44q8hOHiV0bcsdRvhbR24ySqCE2VUMBNLA9nK',185,'2009-03-15','+16189507506','2024-09-18 10:11:09',NULL,'job-seeker',NULL,'resume/01.pdf','771 Eladio Court\nPerrystad, MA 35663-4736','An obstacle that came between Him, and ourselves, and it. Don\'t let him know she liked them best, For this must ever be A secret, kept from all the arches are gone from this side of the baby?\' said.',1,0,350,1,NULL,'2024-09-18 03:11:09','2024-09-18 03:11:09',0,1,NULL,NULL,NULL),(45,NULL,'Jayne','Ebert','Alice. \'Nothing,\'.',NULL,'daryl39@yahoo.com','$2y$12$/pZblqaLayjOdbWnIbfEI.VQewLrbmeIdgWptQ7KIqBWdl2WORcTG',186,'1997-09-09','+12487919682','2024-09-18 10:11:10',NULL,'job-seeker',NULL,'resume/01.pdf','9942 Denesik Divide\nEast Rickeyton, TN 39863','I can remember feeling a little while, however, she again heard a little of her going, though she felt sure it would be the right distance--but then I wonder what they said. The executioner\'s.',1,0,4544,1,NULL,'2024-09-18 03:11:10','2024-09-18 03:11:10',0,1,NULL,NULL,NULL),(46,NULL,'Nelda','Armstrong','Footman, and began.',NULL,'vwiza@hotmail.com','$2y$12$TQNlGaWBrCCRreDjJqCeluyKLJP2gKF7yKnb1uPNnyX18EJT/izjK',186,'1980-07-08','+18563048011','2024-09-18 10:11:10',NULL,'employer',NULL,NULL,'32748 Stanton Rue\nMaximefurt, NE 81940','And mentioned me to introduce it.\' \'I don\'t know what a long silence after this, and after a minute or two, and the great wonder is, that there\'s any one of the words \'EAT ME\' were beautifully.',1,0,3506,1,NULL,'2024-09-18 03:11:10','2024-09-18 03:11:10',1,1,NULL,NULL,NULL),(47,NULL,'Westley','Hermiston','As there seemed to.',NULL,'predovic.grayson@yahoo.com','$2y$12$ZCfdW7kYGGJRwGsdTu0Xf.xtNd04c1wR94uVDzpw5OOtLVzEAadSK',184,'1996-03-08','+15016526515','2024-09-18 10:11:10',NULL,'job-seeker',NULL,'resume/01.pdf','838 Jakubowski Forest Suite 659\nEast Clarebury, WV 07238','TWO little shrieks, and more faintly came, carried on the glass table as before, \'and things are \"much of a well?\' \'Take some more of the trees behind him. \'--or next day, maybe,\' the Footman went.',1,0,4802,0,NULL,'2024-09-18 03:11:10','2024-09-18 03:11:10',1,1,NULL,NULL,NULL),(48,NULL,'Valentine','Nicolas','How she longed to.',NULL,'kieran.langosh@ondricka.com','$2y$12$4QGEO/MILUCmRyRqvRIp7ebjT9H5LZ9Hjdxq.9ecpcSW0lzDlj36u',184,'1992-02-10','+19104603357','2024-09-18 10:11:11',NULL,'employer',NULL,NULL,'4372 Ophelia Common\nFayland, HI 12063-6903','FIT--\" you never even introduced to a mouse, you know. So you see, as they all spoke at once, in a shrill, passionate voice. \'Would YOU like cats if you please! \"William the Conqueror, whose cause.',1,0,1498,0,NULL,'2024-09-18 03:11:11','2024-09-18 03:11:11',0,1,NULL,NULL,NULL),(49,NULL,'Yesenia','Altenwerth','Dodo, pointing to.',NULL,'trudie97@hintz.com','$2y$12$LO2ZynNjQlfICt2bH9wTN.T3g5TTYDSrGpQY3xApyQKH/XrrrtgEC',186,'1976-08-22','+12675789865','2024-09-18 10:11:11',NULL,'employer',NULL,NULL,'136 Elton Island\nHicklebury, TN 72558-5448','Two. Two began in a tone of great curiosity. \'It\'s a friend of mine--a Cheshire Cat,\' said Alice: \'three inches is such a curious plan!\' exclaimed Alice. \'That\'s the judge,\' she said to herself, and.',1,0,4742,0,NULL,'2024-09-18 03:11:11','2024-09-18 03:11:11',0,1,NULL,NULL,NULL),(50,NULL,'Lelah','Heathcote','Mock Turtle: \'nine.',NULL,'ularson@fisher.biz','$2y$12$gyVUUPEgQHGQc8mQbotHVO8i.0tI0Y4aZDS52/VMEbm7VPEVzs5wO',186,'2013-08-12','+17475643523','2024-09-18 10:11:11',NULL,'job-seeker',NULL,'resume/01.pdf','97772 Salma Gardens Apt. 222\nNew Ronnyborough, ND 97352','I learn music.\' \'Ah! that accounts for it,\' said Alice hastily; \'but I\'m not myself, you see.\' \'I don\'t even know what to beautify is, I suppose?\' \'Yes,\' said Alice as she could, for her to begin.\'.',1,0,2331,1,NULL,'2024-09-18 03:11:11','2024-09-18 03:11:11',0,1,NULL,NULL,NULL),(51,NULL,'Bud','Harris','Poor Alice! It was.',NULL,'hudson.lenora@gmail.com','$2y$12$v7MdJz/GExWYO8.QMzqptuS0Y9OqYNUecmImU0F/9dsRFfO206.Ze',185,'2012-12-02','+12539854365','2024-09-18 10:11:12',NULL,'job-seeker',NULL,'resume/01.pdf','39214 Claud Walk Apt. 501\nRosalindstad, KS 68775','And in she went. Once more she found herself in the last concert!\' on which the words \'DRINK ME,\' but nevertheless she uncorked it and put it more clearly,\' Alice replied thoughtfully. \'They have.',1,0,4864,0,NULL,'2024-09-18 03:11:12','2024-09-18 03:11:12',1,1,NULL,NULL,NULL),(52,NULL,'Antonietta','Wintheiser','She generally gave.',NULL,'hills.dejah@yahoo.com','$2y$12$8co/Ygd40AGqP486ibHtAOXlwUQU.r9yjTqYZbSdcbnhDG/ZfOzL6',185,'1990-02-05','+15623574904','2024-09-18 10:11:12',NULL,'employer',NULL,NULL,'80955 Henriette Courts\nAltatown, NY 78674','THAT\'S all wrong, I\'m certain! I must have been ill.\' \'So they were,\' said the King, going up to the Gryphon. \'I mean, what makes them bitter--and--and barley-sugar and such things that make.',1,0,4520,0,NULL,'2024-09-18 03:11:12','2024-09-18 03:11:12',0,1,NULL,NULL,NULL),(53,NULL,'Dana','Quitzon','EVER happen in a.',NULL,'obernier@blanda.biz','$2y$12$LPofsbfLuKO8BDTzwCwlv.2mXFmqYcTcEpbY9TZ7oWbU9WtbifiYq',184,'1999-06-27','+19348979351','2024-09-18 10:11:12',NULL,'employer',NULL,NULL,'6965 Ashly Wall\nWhitemouth, NJ 41971-7282','RABBIT\' engraved upon it. She went in without knocking, and hurried upstairs, in great fear lest she should meet the real Mary Ann, and be turned out of a muchness\"--did you ever saw. How she longed.',1,0,2303,1,NULL,'2024-09-18 03:11:12','2024-09-18 03:11:12',0,1,NULL,NULL,NULL),(54,NULL,'Giovanny','Hills','So she set to work.',NULL,'franecki.nicklaus@gmail.com','$2y$12$KqMYxKZqnBwMGTyOi0GED.Wv2DtOzK/aVTfAVQdtsuH1dTWekqcMm',184,'2000-03-14','+12814427020','2024-09-18 10:11:12',NULL,'job-seeker',NULL,'resume/01.pdf','82753 Grady Manor\nKreigerland, LA 11431','French lesson-book. The Mouse did not quite like the look of it in a low, timid voice, \'If you knew Time as well as I was thinking I should think you\'ll feel it a violent shake at the Hatter, and he.',1,0,2937,0,NULL,'2024-09-18 03:11:12','2024-09-18 03:11:12',0,1,NULL,NULL,NULL),(55,NULL,'Juliet','Bernhard','Alice in a voice.',NULL,'edmund.dickens@barrows.org','$2y$12$XX/f.oEKpmCxJDpWXWIva.Ke6TdIosd46o9BdlcAe7rGT.xwZUgUK',185,'1999-12-14','+13644976291','2024-09-18 10:11:13',NULL,'job-seeker',NULL,'resume/01.pdf','12514 Paris Burgs\nEast Sarina, AK 94725-6928','Alice could bear: she got back to the Duchess: \'what a clear way you go,\' said the March Hare had just begun to dream that she hardly knew what she was ever to get in?\' she repeated, aloud. \'I shall.',1,0,1853,1,NULL,'2024-09-18 03:11:13','2024-09-18 03:11:13',0,1,NULL,NULL,NULL),(56,NULL,'Maida','Kunde','March Hare said to.',NULL,'buckridge.leanne@bernier.com','$2y$12$cvDV5pkLbJdiuIalJOaH..cccoNwR.kLdyiONpV9F/JeAT4z2Zr.K',184,'2001-11-08','+13802166917','2024-09-18 10:11:13',NULL,'job-seeker',NULL,'resume/01.pdf','655 Drake Road Apt. 039\nNorth Antwanfurt, NE 02650-1851','He looked at Alice. \'It goes on, you know,\' the Hatter hurriedly left the court, without even looking round. \'I\'ll fetch the executioner went off like an arrow. The Cat\'s head began fading away the.',1,0,3898,0,NULL,'2024-09-18 03:11:13','2024-09-18 03:11:13',0,1,NULL,NULL,NULL),(57,NULL,'Adeline','Beer','GAVE HER ONE, THEY.',NULL,'wanda.lowe@yahoo.com','$2y$12$jElmTVuq5.URQQ35uxf0IOySV8spoqsVUZTHUjD23K3SR2ihzbE.2',185,'1981-10-06','+19373957658','2024-09-18 10:11:13',NULL,'job-seeker',NULL,'resume/01.pdf','79385 Metz Summit Apt. 943\nBernhardhaven, TX 60298-5814','So she tucked it away under her arm, that it was all finished, the Owl, as a boon, Was kindly permitted to pocket the spoon: While the Owl and the baby with some difficulty, as it could go, and.',1,0,1064,1,NULL,'2024-09-18 03:11:13','2024-09-18 03:11:13',0,1,NULL,NULL,NULL),(58,NULL,'Leonie','Parker','Alice had not gone.',NULL,'lambert72@champlin.com','$2y$12$wo/py20gLEdJ.aG14aKvn.S.m3dM691ew.2SmGqRh4s80N6EWq7ZO',186,'1993-02-10','+13012227329','2024-09-18 10:11:14',NULL,'employer',NULL,NULL,'783 Smith Ranch Suite 101\nCrooksside, MO 68385-6999','Gryphon as if she were saying lessons, and began whistling. \'Oh, there\'s no use speaking to a shriek, \'and just as well say,\' added the Dormouse, not choosing to notice this last remark that had.',1,0,4069,1,NULL,'2024-09-18 03:11:14','2024-09-18 03:11:14',1,1,NULL,NULL,NULL),(59,NULL,'Bryana','Sanford','White Rabbit read.',NULL,'gussie.kautzer@hotmail.com','$2y$12$lB4axcbSrR6OVteV5AoTj.LJxQSHAuNeYB7DFtJnA1vhr1gTln3zu',184,'1990-01-09','+14426518080','2024-09-18 10:11:14',NULL,'employer',NULL,NULL,'5882 Anabel Forest Apt. 950\nPort Romanmouth, SD 37150','Alice was not going to say,\' said the Mock Turtle. \'She can\'t explain it,\' said Alice, \'I\'ve often seen them at last, they must needs come wriggling down from the sky! Ugh, Serpent!\' \'But I\'m not.',1,0,2560,0,NULL,'2024-09-18 03:11:14','2024-09-18 03:11:14',1,1,NULL,NULL,NULL),(60,NULL,'Ursula','Gleason','White Rabbit; \'in.',NULL,'equigley@gmail.com','$2y$12$Vrrzw0l7CU4.RJYGoU4DReDw.NN3h.FWUXS6QHfAnU/7OwxkgV7o6',186,'1992-07-04','+14303771187','2024-09-18 10:11:14',NULL,'employer',NULL,NULL,'1443 Christ Circle Suite 381\nNorth Elmerville, NC 64880-2098','WILL do next! As for pulling me out of sight. Alice remained looking thoughtfully at the March Hare said to a lobster--\' (Alice began to repeat it, when a cry of \'The trial\'s beginning!\' was heard.',1,0,4153,0,NULL,'2024-09-18 03:11:14','2024-09-18 03:11:14',0,1,NULL,NULL,NULL),(61,NULL,'Allison','Welch','King, \'that only.',NULL,'mcrooks@gmail.com','$2y$12$NLeL5WyypAdVilbi0RHDqeqtD.8NKyKWYMGnBQRgRxx2PG5v9X8Sq',185,'1994-02-27','+19856582467','2024-09-18 10:11:14',NULL,'job-seeker',NULL,'resume/01.pdf','7842 Janis Center Apt. 465\nEzequielfort, VA 79077','Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have got altered.\' \'It is a long sleep you\'ve had!\' \'Oh, I\'ve had such a dreadful time.\' So Alice got up this morning.',1,0,304,0,NULL,'2024-09-18 03:11:14','2024-09-18 03:11:14',0,1,NULL,NULL,NULL),(62,NULL,'Rhoda','Murphy','Alice noticed with.',NULL,'marvin.lorenza@howell.com','$2y$12$KHLULgzUc89rnLlVvsqPOeihiJ2bha4jsZ1yRkxnaZ8mkh46MX4ea',184,'1983-08-30','+14323190227','2024-09-18 10:11:15',NULL,'job-seeker',NULL,'resume/01.pdf','831 Sipes Villages Apt. 884\nNolanton, NJ 82907','Good-bye, feet!\' (for when she went down to them, they set to work at once without waiting for the Duchess sneezed occasionally; and as for the immediate adoption of more energetic remedies--\'.',1,0,1005,0,NULL,'2024-09-18 03:11:15','2024-09-18 03:11:15',0,1,NULL,NULL,NULL),(63,NULL,'Dawson','Gibson','How brave they\'ll.',NULL,'jhartmann@yahoo.com','$2y$12$gCn3aASlOTUY4dTzQD5xGe1gsNM/KFajpUZHc1iU.o4XnXtWG8Yne',186,'2004-11-24','+15418158389','2024-09-18 10:11:15',NULL,'job-seeker',NULL,'resume/01.pdf','94393 Okuneva Views\nSteuberborough, NJ 44654-7552','Shark, But, when the White Rabbit interrupted: \'UNimportant, your Majesty means, of course,\' said the Queen, tossing her head through the wood. \'It\'s the thing yourself, some winter day, I will just.',1,0,3072,1,NULL,'2024-09-18 03:11:15','2024-09-18 03:11:15',0,1,NULL,NULL,NULL),(64,NULL,'Zola','Stracke','The three soldiers.',NULL,'benton.stark@stehr.org','$2y$12$uXcdk0aRh9NweckwXqdfEOMdvbeWjsenl3UGeKDgVEU6evbFd.wlW',185,'1972-06-19','+14252963353','2024-09-18 10:11:15',NULL,'job-seeker',NULL,'resume/01.pdf','822 Clement Club\nDaughertychester, GA 88009-0880','Alice, and she ran across the garden, where Alice could think of anything to say, she simply bowed, and took the place of the Gryphon, and all sorts of little Alice and all sorts of little.',1,0,1153,0,NULL,'2024-09-18 03:11:15','2024-09-18 03:11:15',0,1,NULL,NULL,NULL),(65,NULL,'Noah','Huels','The executioner\'s.',NULL,'lola50@sporer.com','$2y$12$jVEtfCwsiL.kUrHFcEolNu/TuZvj26jVTYLL95iNqNF7ViXJb5KTa',185,'1984-07-24','+14756213290','2024-09-18 10:11:16',NULL,'employer',NULL,NULL,'212 Edythe Summit Suite 533\nRickyburgh, LA 87730','Alice, and, after folding his arms and frowning at the frontispiece if you hold it too long; and that makes them so shiny?\' Alice looked all round her at the flowers and the three gardeners.',1,0,2869,1,NULL,'2024-09-18 03:11:16','2024-09-18 03:11:16',1,1,NULL,NULL,NULL),(66,NULL,'Annie','Howell','Grief, they used.',NULL,'stoltenberg.tristian@yahoo.com','$2y$12$M13yXCRGv92DZS8s9mupIeyWLF08ijgqO48hkEtHuQoXlW.HateGW',184,'2003-07-15','+19492058846','2024-09-18 10:11:16',NULL,'job-seeker',NULL,'resume/01.pdf','815 Bella Divide Apt. 868\nWilliamsonshire, VT 94324','Alice could not remember ever having heard of such a dear little puppy it was!\' said Alice, seriously, \'I\'ll have nothing more to do next, when suddenly a footman because he taught us,\' said the.',1,0,127,1,NULL,'2024-09-18 03:11:16','2024-09-18 03:11:16',1,1,NULL,NULL,NULL),(67,NULL,'Israel','Champlin','I don\'t take this.',NULL,'walsh.madge@abshire.com','$2y$12$Ju2iakUNHnriuI5ib8VjLei64Sxnqeq1MbVcVP1LrOiWIxHzpVzO6',185,'1987-03-13','+13419500115','2024-09-18 10:11:16',NULL,'job-seeker',NULL,'resume/01.pdf','902 Jamarcus Spur\nLarsonbury, NJ 85088','Majesty,\' said Alice to herself. (Alice had no pictures or conversations?\' So she began nibbling at the mushroom for a moment like a serpent. She had just begun to repeat it, but her head struck.',1,0,3489,0,NULL,'2024-09-18 03:11:16','2024-09-18 03:11:16',1,1,NULL,NULL,NULL),(68,NULL,'Donnell','Gusikowski','She felt that she.',NULL,'domenick.ritchie@hotmail.com','$2y$12$br8qLnw/21nJJ8LB/YSqPu/3xoi/ALz/5bL4QoTTCnQtcx1Etc7SK',186,'2020-01-15','+19545425797','2024-09-18 10:11:17',NULL,'employer',NULL,NULL,'4357 Ferry Green\nBalistreribury, NM 92724-4540','The judge, by the officers of the month is it?\' \'Why,\' said the Mock Turtle replied in an offended tone, and she put it. She went on \'And how many hours a day did you begin?\' The Hatter was the.',1,0,2890,1,NULL,'2024-09-18 03:11:17','2024-09-18 03:11:17',0,1,NULL,NULL,NULL),(69,NULL,'Victoria','Legros','Queen till she was.',NULL,'camron.hickle@jacobi.biz','$2y$12$ggXSlzd/MVldvWMKQbEHYuBadBgqOuGNGldkVncxquhnfV6MVx9zC',186,'2007-07-14','+14634588479','2024-09-18 10:11:17',NULL,'employer',NULL,NULL,'30411 Ena Park\nSouth Otha, SC 91612-0922','Alice had no reason to be no chance of her childhood: and how she would manage it. \'They were learning to draw,\' the Dormouse indignantly. However, he consented to go after that savage Queen: so she.',1,0,2673,1,NULL,'2024-09-18 03:11:17','2024-09-18 03:11:17',0,1,NULL,NULL,NULL),(70,NULL,'Humberto','Conn','But, now that I\'m.',NULL,'mayer.lauretta@okuneva.biz','$2y$12$MM7FJZmyV2mgWxtMmPGJ1.B1SP8AslXfatUspy5jMt/T3N7i7x9Bq',186,'2017-04-25','+15635593374','2024-09-18 10:11:17',NULL,'job-seeker',NULL,'resume/01.pdf','88263 Willms Summit\nEast Eileenton, ND 70942','YET,\' she said this, she came upon a little startled when she caught it, and burning with curiosity, she ran off at once: one old Magpie began wrapping itself up and throw us, with the clock. For.',1,0,421,1,NULL,'2024-09-18 03:11:17','2024-09-18 03:11:17',0,1,NULL,NULL,NULL),(71,NULL,'Reyes','King','Queen, the royal.',NULL,'mitchell.greyson@gleichner.com','$2y$12$aRN/xzPj4wE4oUkNx88vF.5Fqub.0iXsQX3cS5CAjcAh0xbjVdJDK',185,'2010-03-31','+17437558381','2024-09-18 10:11:17',NULL,'job-seeker',NULL,'resume/01.pdf','28012 Sharon Light Apt. 611\nSouth Malcolm, CA 56920-2404','Take your choice!\' The Duchess took her choice, and was going a journey, I should say what you would seem to see that queer little toss of her skirt, upsetting all the things get used up.\' \'But what.',1,0,2776,1,NULL,'2024-09-18 03:11:17','2024-09-18 03:11:17',0,1,NULL,NULL,NULL),(72,NULL,'Noe','Yost','SOME change in my.',NULL,'hardy.christiansen@gmail.com','$2y$12$0rICCnB8gVFjn1w5TIpLIuBwHdObKnMRQmG1OuXGvxfPU2fMN6RIa',184,'2010-12-09','+16815624594','2024-09-18 10:11:18',NULL,'employer',NULL,NULL,'2542 Hallie Ridge\nAnastaciomouth, NV 67267-3157','I think I can do no more, whatever happens. What WILL become of me?\' Luckily for Alice, the little golden key was lying under the window, and one foot to the door, and the great hall, with the.',1,0,185,0,NULL,'2024-09-18 03:11:18','2024-09-18 03:11:18',1,1,NULL,NULL,NULL),(73,NULL,'June','Schmeler','Alice, a good deal.',NULL,'myrl89@gleichner.com','$2y$12$qX6Lc7bgZJtK05ijDJ1SSuFeSKbxfs/ObAbTCczO4EHAHd/gjXLEK',185,'1985-05-18','+12195166654','2024-09-18 10:11:18',NULL,'employer',NULL,NULL,'84109 Simone Field Suite 662\nThelmatown, WV 29987','See how eagerly the lobsters and the small ones choked and had just succeeded in curving it down \'important,\' and some \'unimportant.\' Alice could think of what work it would feel very uneasy: to be.',1,0,3005,0,NULL,'2024-09-18 03:11:18','2024-09-18 03:11:18',1,1,NULL,NULL,NULL),(74,NULL,'Mark','Hoeger','Hatter: \'but you.',NULL,'hvandervort@hotmail.com','$2y$12$bErhuSbgdUiDv9rbeiXMH.A/oLiQTpz6YPiFpByMQEVkAch4.OZrO',186,'2018-07-05','+18624510445','2024-09-18 10:11:18',NULL,'job-seeker',NULL,'resume/01.pdf','56253 Simonis Hill\nLake Callie, MN 57272','Tell her to speak with. Alice waited till she had brought herself down to nine inches high. CHAPTER VI. Pig and Pepper For a minute or two to think this a very decided tone: \'tell her something.',1,0,863,0,NULL,'2024-09-18 03:11:18','2024-09-18 03:11:18',0,1,NULL,NULL,NULL),(75,NULL,'Sydnee','Bosco','Alice in a tone of.',NULL,'zhammes@funk.com','$2y$12$hCqGZMLxzGv17EQd2.FG.OURXcWqycW3vN/5pYTCRy6SQWaJ0876W',184,'2000-07-24','+16787919879','2024-09-18 10:11:18',NULL,'job-seeker',NULL,'resume/01.pdf','289 Roberto Tunnel\nBotsfordview, NH 59303','Alice cautiously replied, not feeling at all this grand procession, came THE KING AND QUEEN OF HEARTS. Alice was rather glad there WAS no one else seemed inclined to say \"HOW DOTH THE LITTLE BUSY.',1,0,187,0,NULL,'2024-09-18 03:11:18','2024-09-18 03:11:18',1,1,NULL,NULL,NULL),(76,NULL,'Margarete','Ullrich','Alice thought she.',NULL,'shanie.medhurst@gmail.com','$2y$12$5JReKFbRuuuXdupHx.Wv0eI.OmXvwU7K/YNYXIUo1891lh3A50hSK',184,'1998-09-02','+16166074338','2024-09-18 10:11:19',NULL,'job-seeker',NULL,'resume/01.pdf','575 Hoeger Heights Suite 131\nLindgrenbury, ID 95939','Duchess, digging her sharp little chin into Alice\'s shoulder as he could think of anything else. CHAPTER V. Advice from a Caterpillar The Caterpillar and Alice looked at it uneasily, shaking it.',1,0,3055,1,NULL,'2024-09-18 03:11:19','2024-09-18 03:11:19',0,1,NULL,NULL,NULL),(77,NULL,'Rowland','Mayer','I\'m doubtful about.',NULL,'jamar.auer@yahoo.com','$2y$12$CGVcBnr20TeLtXI08cEa4uH5Wfobktu.VTd1/XSCeZopkWH2WooGq',185,'2005-03-01','+18439575359','2024-09-18 10:11:19',NULL,'job-seeker',NULL,'resume/01.pdf','67598 Swaniawski Fork\nNorth Martine, MA 07766-7713','Alice. One of the shepherd boy--and the sneeze of the Rabbit\'s voice; and the sounds will take care of the busy farm-yard--while the lowing of the trees behind him. \'--or next day, maybe,\' the.',1,0,4731,1,NULL,'2024-09-18 03:11:19','2024-09-18 03:11:19',1,1,NULL,NULL,NULL),(78,NULL,'Jewel','Weissnat','WOULD twist itself.',NULL,'vjenkins@medhurst.biz','$2y$12$k4HrgjmLcQJwjtvh9sPSv.Mz2cyJjjFPoypFUY2dbSNRF5obgLk0e',185,'2017-02-10','+12694333171','2024-09-18 10:11:19',NULL,'employer',NULL,NULL,'7567 Bernita Club\nKutchburgh, ND 78050-2456','Gryphon, and the baby with some curiosity. \'What a number of cucumber-frames there must be!\' thought Alice. One of the legs of the treat. When the sands are all dry, he is gay as a last resource.',1,0,240,1,NULL,'2024-09-18 03:11:19','2024-09-18 03:11:19',0,1,NULL,NULL,NULL),(79,NULL,'Irma','Erdman','BEST butter, you.',NULL,'rwill@kihn.com','$2y$12$YygIbLzA1MD/Yf87/jwHjeKTc1XPqvdGVubeYOhav1CAHuLxoWUyO',184,'2022-03-08','+12519380163','2024-09-18 10:11:20',NULL,'job-seeker',NULL,'resume/01.pdf','4426 Zulauf Grove\nLake Braxtonview, ND 58103','Dormouse. \'Don\'t talk nonsense,\' said Alice a little startled when she looked down, was an old Crab took the cauldron of soup off the mushroom, and raised herself to about two feet high: even then.',1,0,3456,0,NULL,'2024-09-18 03:11:20','2024-09-18 03:11:20',1,1,NULL,NULL,NULL),(80,NULL,'Jon','Cremin','Caterpillar, and.',NULL,'milo13@hotmail.com','$2y$12$ye4PEikM2fckJKpntVTtYORTv4WMteHSSlXfDQsKCVInvyiH5yQam',184,'1987-05-09','+19593264646','2024-09-18 10:11:20',NULL,'employer',NULL,NULL,'499 Funk Bypass Apt. 407\nRodrickmouth, NM 48808-7421','Hatter began, in a very curious thing, and she very good-naturedly began hunting about for them, but they were mine before. If I or she fell past it. \'Well!\' thought Alice \'without pictures or.',1,0,3340,1,NULL,'2024-09-18 03:11:20','2024-09-18 03:11:20',1,1,NULL,NULL,NULL),(81,NULL,'Esther','Rolfson','Alice thought this.',NULL,'jaden03@gmail.com','$2y$12$da/XI1Do7JL9Jco1VtH.nutLALXy4nehsIyQuuclZ.uqz5MUbpLR6',184,'1999-11-13','+17138415100','2024-09-18 10:11:20',NULL,'employer',NULL,NULL,'504 Bria Skyway\nSteuberport, KS 11812-6657','Alice coming. \'There\'s PLENTY of room!\' said Alice loudly. \'The idea of having the sentence first!\' \'Hold your tongue, Ma!\' said the King had said that day. \'That PROVES his guilt,\' said the King.',1,0,3576,1,NULL,'2024-09-18 03:11:20','2024-09-18 03:11:20',1,1,NULL,NULL,NULL),(82,NULL,'Mafalda','Hammes','Dinah my dear! Let.',NULL,'ima33@hotmail.com','$2y$12$6CJxNjzqvg3XWdIjT8AV/OFRYnO1G3is4igcLrMnxbYpUsYD8TC6O',186,'1977-04-09','+19252433079','2024-09-18 10:11:21',NULL,'employer',NULL,NULL,'6933 Stamm Hollow\nWest Miracle, WA 73270-4563','But they HAVE their tails in their mouths; and the poor little thing was snorting like a thunderstorm. \'A fine day, your Majesty!\' the Duchess said in a natural way again. \'I should like to go and.',1,0,4164,1,NULL,'2024-09-18 03:11:21','2024-09-18 03:11:21',1,1,NULL,NULL,NULL),(83,NULL,'Allie','Rolfson','So she tucked her.',NULL,'guiseppe.koch@hotmail.com','$2y$12$ry.2N4WZWK0JFOfOj7IFieAqWIPgssjDhbiOb1pzsKbZlrrK.rKi6',185,'1999-12-25','+15857257678','2024-09-18 10:11:22',NULL,'job-seeker',NULL,'resume/01.pdf','81841 Charity Well\nWest Clement, KY 92747-4177','Pigeon, but in a frightened tone. \'The Queen of Hearts were seated on their slates, when the race was over. However, when they arrived, with a pair of gloves and the party went back to the shore.',1,0,3658,0,NULL,'2024-09-18 03:11:22','2024-09-18 03:11:22',1,1,NULL,NULL,NULL),(84,NULL,'Aric','Goyette','King said, turning.',NULL,'clay05@gmail.com','$2y$12$fw23xQ4TaDT1n9VRPs0C3OykDL2EDkUYDDuaT/rJ4G6F66L7.DUBq',185,'2000-09-22','+15208306833','2024-09-18 10:11:22',NULL,'job-seeker',NULL,'resume/01.pdf','44804 Sage Ville\nCadenton, ID 18491','Alice. \'I\'ve read that in the other. In the very tones of the Mock Turtle yet?\' \'No,\' said Alice. \'Why, you don\'t like the three gardeners instantly jumped up, and began whistling. \'Oh, there\'s no.',1,0,2947,0,NULL,'2024-09-18 03:11:22','2024-09-18 03:11:22',1,1,NULL,NULL,NULL),(85,NULL,'Cristian','Abernathy','Queen, stamping on.',NULL,'ygrant@gmail.com','$2y$12$jfdxHxdcwfZYaP.vjaR46OoYAxt9p8ii1n3W.Od9iG.mGFm3F3tvC',184,'1987-12-26','+14404633696','2024-09-18 10:11:22',NULL,'employer',NULL,NULL,'36452 Marcel Extensions\nNew Jasperside, TN 96203-7887','March Hare. \'I didn\'t mean it!\' pleaded poor Alice. \'But you\'re so easily offended, you know!\' The Mouse did not at all comfortable, and it put more simply--\"Never imagine yourself not to be in a.',1,0,3835,1,NULL,'2024-09-18 03:11:22','2024-09-18 03:11:22',1,1,NULL,NULL,NULL),(86,NULL,'Frederic','Franecki','So she tucked it.',NULL,'noemie71@yahoo.com','$2y$12$KLlHidBtk0BMoXFkmrO/nOtcQKgUlvY6o1U.DlDl9CtsnEUNt3f8e',186,'1989-12-06','+19805151600','2024-09-18 10:11:23',NULL,'employer',NULL,NULL,'539 Karl Place\nLake Christ, CT 25892-8609','Alice thoughtfully: \'but then--I shouldn\'t be hungry for it, he was gone, and, by the Hatter, who turned pale and fidgeted. \'Give your evidence,\' said the King. The next witness was the Hatter. \'It.',1,0,2249,0,NULL,'2024-09-18 03:11:23','2024-09-18 03:11:23',0,1,NULL,NULL,NULL),(87,NULL,'Erwin','Gislason','There was exactly.',NULL,'sjohns@yahoo.com','$2y$12$cEoEr3I8vT2fs06N3Gm0juU8gkgAAx5yzOj728nDtEpIevWXDIvZa',185,'1970-11-24','+14055766157','2024-09-18 10:11:23',NULL,'employer',NULL,NULL,'5007 Logan Expressway\nPort Aidanton, WI 66252-6058','As a duck with its wings. \'Serpent!\' screamed the Pigeon. \'I\'m NOT a serpent, I tell you!\' said Alice. \'And be quick about it,\' added the Gryphon, and the Gryphon in an encouraging tone. Alice.',1,0,4777,0,NULL,'2024-09-18 03:11:23','2024-09-18 03:11:23',0,1,NULL,NULL,NULL),(88,NULL,'Erna','Bergstrom','Mock Turtle; \'but.',NULL,'dakota82@yahoo.com','$2y$12$F6D5kc35U5iQNd6GpZF1euCmHtpFYWgGh2W2nSrFJ6gWCLorgcw5S',186,'2016-08-07','+17406981734','2024-09-18 10:11:23',NULL,'job-seeker',NULL,'resume/01.pdf','525 Runolfsdottir Walks Apt. 883\nReillyside, ND 65927','Alice, every now and then Alice put down her flamingo, and began bowing to the confused clamour of the water, and seemed to be done, I wonder?\' Alice guessed who it was, even before she came upon a.',1,0,3294,1,NULL,'2024-09-18 03:11:23','2024-09-18 03:11:23',1,1,NULL,NULL,NULL),(89,NULL,'Stephen','Emmerich','I don\'t take this.',NULL,'randal.dubuque@considine.biz','$2y$12$PHpvmUmcClIHaHZEz2QZ8emeblkKM32reKV0Lgitk5mZqL2GOumai',185,'1986-01-16','+16156763527','2024-09-18 10:11:23',NULL,'employer',NULL,NULL,'12251 Jenkins Loaf Suite 947\nMonserratmouth, AL 41659','OURS they had any sense, they\'d take the roof was thatched with fur. It was high time to be trampled under its feet, \'I move that the pebbles were all talking together: she made her feel very queer.',1,0,4830,0,NULL,'2024-09-18 03:11:23','2024-09-18 03:11:23',1,1,NULL,NULL,NULL),(90,NULL,'Broderick','Flatley','So she began: \'O.',NULL,'xwunsch@yahoo.com','$2y$12$kagptoW9ikuEGAa60PSYUOjAtOqWMmrdb3P9QxLnBwGT8BaijECz.',186,'2021-12-19','+12064716644','2024-09-18 10:11:24',NULL,'job-seeker',NULL,'resume/01.pdf','327 Xander Pines Apt. 888\nMcGlynnmouth, IL 10388-6168','I\'m pleased, and wag my tail when I\'m pleased, and wag my tail when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'Well, I shan\'t grow any more--As it is, I can\'t.',1,0,3296,0,NULL,'2024-09-18 03:11:24','2024-09-18 03:11:24',0,1,NULL,NULL,NULL),(91,NULL,'Tressa','Rippin','Knave, \'I didn\'t.',NULL,'keyon.homenick@upton.com','$2y$12$IHlRdTXR3Ul/I44.9tk6Nu6A3lQE62RqVGT6lNTEVz1vHeA5bm5La',186,'1974-05-15','+19384192901','2024-09-18 10:11:24',NULL,'employer',NULL,NULL,'961 Sunny Inlet Suite 980\nJacinthechester, OH 00461','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 had hoped) a fan and gloves. \'How.',1,0,3393,0,NULL,'2024-09-18 03:11:24','2024-09-18 03:11:24',1,1,NULL,NULL,NULL),(92,NULL,'Fae','Treutel','HERE.\' \'But then,\'.',NULL,'elise.mills@gaylord.com','$2y$12$mc4dCDiWOjX15XcAMXXdK./ln1jETC73gk7jnbjb/R5VWmow4ZrYe',185,'2017-07-16','+15017647961','2024-09-18 10:11:24',NULL,'employer',NULL,NULL,'101 Brandon Pass Suite 353\nLake Justice, MA 27160','Why, she\'ll eat a little anxiously. \'Yes,\' said Alice, looking down with her arms folded, quietly smoking a long way back, and barking hoarsely all the unjust things--\' when his eye chanced to fall.',1,0,2487,0,NULL,'2024-09-18 03:11:24','2024-09-18 03:11:24',0,1,NULL,NULL,NULL),(93,NULL,'Lenny','Jenkins','Alice, in a great.',NULL,'rodrick.wintheiser@marks.com','$2y$12$sVPUKX/xDuHantZG1Do4jOF91skcqio.KCMi.EObtITPmkhonEr5u',185,'1986-01-11','+16072622629','2024-09-18 10:11:25',NULL,'job-seeker',NULL,'resume/01.pdf','43093 Eleazar Valley Suite 479\nChristophemouth, WI 40471-6356','The Hatter was the only one who had been (Before she had gone through that day. \'No, no!\' said the King, with an M--\' \'Why with an air of great relief. \'Call the next witness!\' said the Pigeon; \'but.',1,0,743,0,NULL,'2024-09-18 03:11:25','2024-09-18 03:11:25',0,1,NULL,NULL,NULL),(94,NULL,'Chyna','Fadel','Alice. \'You are,\'.',NULL,'johns.alvis@yahoo.com','$2y$12$9VQfL5bPVxXPbbnoUo9KdeqRj3GghjtfAujiqHrGHWzPKh6tpfX9O',185,'2004-05-29','+17435993752','2024-09-18 10:11:25',NULL,'employer',NULL,NULL,'322 Quitzon Court Apt. 317\nEast Jarrellview, CO 33895-2140','GAVE HER ONE, THEY GAVE HIM TWO--\" why, that must be getting somewhere near the door and found that her idea of the room again, no wonder she felt a very good advice, (though she very soon found an.',1,0,3497,1,NULL,'2024-09-18 03:11:25','2024-09-18 03:11:25',0,1,NULL,NULL,NULL),(95,NULL,'Tanner','Gottlieb','I suppose it were.',NULL,'ryan84@heaney.biz','$2y$12$rKQ5AtPP8aj2ZpPSXIluS.4e8.6wTK09yqPBVWiEsTIr.54N2mT7K',186,'1983-06-09','+12162218882','2024-09-18 10:11:25',NULL,'job-seeker',NULL,'resume/01.pdf','65961 Boehm Parkway Suite 235\nEast Haylee, AL 41525','Alice again, in a confused way, \'Prizes! Prizes!\' Alice had no very clear notion how long ago anything had happened.) So she swallowed one of the Rabbit\'s little white kid gloves while she ran, as.',1,0,2991,0,NULL,'2024-09-18 03:11:25','2024-09-18 03:11:25',0,1,NULL,NULL,NULL),(96,NULL,'Miracle','Marquardt','Mock Turtle, who.',NULL,'pablo.tillman@lemke.info','$2y$12$yYZajfhTtg3XHmvxMKJ0yOoR28Mp1yB1zNr/jmfxgx5uEA0HBAf5m',186,'1975-01-27','+16208790507','2024-09-18 10:11:26',NULL,'employer',NULL,NULL,'8131 Kunze Villages Apt. 098\nLueilwitzfort, IL 17873-6940','WAS a narrow escape!\' said Alice, seriously, \'I\'ll have nothing more happened, she decided to remain where she was nine feet high, and was coming to, but it had finished this short speech, they all.',1,0,353,1,NULL,'2024-09-18 03:11:26','2024-09-18 03:11:26',0,1,NULL,NULL,NULL),(97,NULL,'Mossie','Kshlerin','When the pie was.',NULL,'cassandra85@hotmail.com','$2y$12$ui5RTmlnHTKWlAe9Xypr2.HaBUJl8vnrfcN66v9lX/j03bNKljNfu',186,'2015-03-25','+17576762363','2024-09-18 10:11:26',NULL,'job-seeker',NULL,'resume/01.pdf','7039 Jennings Place\nEast Tristin, WV 21298','The great question certainly was, what? Alice looked round, eager to see the Hatter said, tossing his head contemptuously. \'I dare say you\'re wondering why I don\'t care which happens!\' She ate a.',1,0,3136,0,NULL,'2024-09-18 03:11:26','2024-09-18 03:11:26',1,1,NULL,NULL,NULL),(98,NULL,'Santino','Wilkinson','Gryphon, and the.',NULL,'helmer07@reichel.com','$2y$12$4tjKhD4kS5D7LFEx/.EBFeGMSdS4fmrihaDmlIq4Q8gEhuHPvpFPi',185,'1990-06-15','+15206377874','2024-09-18 10:11:26',NULL,'employer',NULL,NULL,'59591 Reinger Roads Apt. 960\nVirgieport, MI 26387','So they couldn\'t see it?\' So she set the little golden key was too late to wish that! She went in without knocking, and hurried off at once to eat or drink under the circumstances. There was no more.',1,0,1248,1,NULL,'2024-09-18 03:11:26','2024-09-18 03:11:26',0,1,NULL,NULL,NULL),(99,NULL,'Marge','Wilkinson','I think you\'d take.',NULL,'helmer00@yahoo.com','$2y$12$CvFIOGtkB59X6n9opdDVp.sv6QuPSeSDPSumrMt6u2Dq0414gYD86',186,'1982-04-25','+17253537286','2024-09-18 10:11:26',NULL,'job-seeker',NULL,'resume/01.pdf','15847 Nash Views\nHollismouth, DC 02059','Alice noticed, had powdered hair that curled all over crumbs.\' \'You\'re wrong about the games now.\' CHAPTER X. The Lobster Quadrille The Mock Turtle in the wind, and was going to give the hedgehog a.',1,0,2137,1,NULL,'2024-09-18 03:11:26','2024-09-18 03:11:26',0,1,NULL,NULL,NULL),(100,NULL,'Nickolas','Hermiston','CAN I have to go.',NULL,'green78@leffler.info','$2y$12$9BAbdrt/GfV7aizDu1e45OFSyGWiprw0HIzinIrP4igwoiUuDdXyi',184,'1996-11-29','+17247857893','2024-09-18 10:11:27',NULL,'job-seeker',NULL,'resume/01.pdf','982 Ambrose Light\nSouth Adahton, NE 52023','I\'ve said as yet.\' \'A cheap sort of mixed flavour of cherry-tart, custard, pine-apple, roast turkey, toffee, and hot buttered toast,) she very seldom followed it), and handed back to the door, and.',1,0,2846,0,NULL,'2024-09-18 03:11:27','2024-09-18 03:11:27',1,1,NULL,NULL,NULL);
/*!40000 ALTER TABLE `jb_accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_analytics`
--

DROP TABLE IF EXISTS `jb_analytics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_analytics` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `job_id` bigint unsigned NOT NULL,
  `country` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_full` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `referer` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ip_address` varchar(300) 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 `jb_analytics`
--

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

--
-- Table structure for table `jb_applications`
--

DROP TABLE IF EXISTS `jb_applications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_applications` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `first_name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` text COLLATE utf8mb4_unicode_ci,
  `job_id` bigint unsigned NOT NULL,
  `resume` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cover_letter` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `account_id` bigint unsigned DEFAULT NULL,
  `is_external_apply` tinyint(1) NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_applications`
--

LOCK TABLES `jb_applications` WRITE;
/*!40000 ALTER TABLE `jb_applications` DISABLE KEYS */;
INSERT INTO `jb_applications` VALUES (1,'Trever','Mills','+13862276705','alisa55@spinka.net','I know I have done that?\' she thought. \'But everything\'s curious today. I think that will be When they take us up and straightening itself out again, and all would change to dull reality--the grass.',32,'resume/01.pdf','resume/01.pdf',35,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(2,'Clarissa','Johnson','+13312886728','swisoky@hotmail.com','WOULD twist itself round and swam slowly back to my right size again; and the roof of the Rabbit\'s voice; and Alice was not a regular rule: you invented it just grazed his nose, you know?\' \'It\'s the.',11,'resume/01.pdf','resume/01.pdf',26,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(3,'Aric','Goyette','+15208306833','clay05@gmail.com','I didn\'t know how to speak again. The rabbit-hole went straight on like a telescope.\' And so she set to work shaking him and punching him in the pictures of him), while the Mouse replied rather.',39,'resume/01.pdf','resume/01.pdf',84,0,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(4,'Bethany','Walker','+17315387176','hills.antonietta@gmail.com','Alice, thinking it was only the pepper that had fallen into the air. \'--as far out to the heads of the ground.\' So she was quite surprised to find my way into that lovely garden. I think I should be.',37,'resume/01.pdf','resume/01.pdf',39,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(5,'Mark','Hoeger','+18624510445','hvandervort@hotmail.com','Rabbit hastily interrupted. \'There\'s a great hurry. An enormous puppy was looking at the Mouse\'s tail; \'but why do you know the meaning of half those long words, and, what\'s more, I don\'t want YOU.',26,'resume/01.pdf','resume/01.pdf',74,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(6,'Mossie','Kshlerin','+17576762363','cassandra85@hotmail.com','Queen left off, quite out of their wits!\' So she began again: \'Ou est ma chatte?\' which was the first minute or two. \'They couldn\'t have wanted it much,\' said Alice; \'I must be the right size, that.',12,'resume/01.pdf','resume/01.pdf',97,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(7,'Celestine','Gaylord','+12293885728','norene.abshire@kovacek.com','Owl, as a drawing of a well--\' \'What did they live at the thought that it was out of the tail, and ending with the next moment she quite forgot how to speak first, \'why your cat grins like that?\'.',51,'resume/01.pdf','resume/01.pdf',7,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(8,'Zola','Stracke','+14252963353','benton.stark@stehr.org','He looked at the other, saying, in a moment. \'Let\'s go on with the tea,\' the Hatter said, turning to Alice as he spoke, \'we were trying--\' \'I see!\' said the Dormouse, after thinking a minute or two.',43,'resume/01.pdf','resume/01.pdf',64,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(9,'Kaden','Fisher','+12054215423','gia60@hotmail.com','I\'m sure _I_ shan\'t be beheaded!\' \'What for?\' said the Gryphon, \'you first form into a conversation. Alice replied, rather shyly, \'I--I hardly know, sir, just at present--at least I mean what I.',17,'resume/01.pdf','resume/01.pdf',19,0,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(10,'Juliet','Bernhard','+13644976291','edmund.dickens@barrows.org','They were indeed a queer-looking party that assembled on the top of his tail. \'As if it makes me grow smaller, I can guess that,\' she added in an undertone to the seaside once in her face, with such.',5,'resume/01.pdf','resume/01.pdf',55,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(11,'Leta','Klocko','+19289291655','schamberger.bruce@yahoo.com','I know is, something comes at me like that!\' said Alice in a loud, indignant voice, but she was shrinking rapidly; so she sat down with her head!\' Alice glanced rather anxiously at the picture.).',14,'resume/01.pdf','resume/01.pdf',13,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(12,'Broderick','Flatley','+12064716644','xwunsch@yahoo.com','I shall be punished for it now, I suppose, by being drowned in my size; and as it went, \'One side of WHAT? The other side of the Queen\'s hedgehog just now, only it ran away when it had come back in.',3,'resume/01.pdf','resume/01.pdf',90,0,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(13,'Aubrey','Erdman','+18063334718','job_seeker@archielite.com','If they had at the March Hare. \'Yes, please do!\' but the Rabbit began. Alice thought the poor little juror (it was exactly one a-piece all round. (It was this last remark, \'it\'s a vegetable. It.',42,'resume/01.pdf','resume/01.pdf',2,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(14,'Drake','Doyle','+18153819669','alisha52@hotmail.com','So she set to work very diligently to write with one of the hall: in fact she was quite silent for a minute, nurse! But I\'ve got to the cur, \"Such a trial, dear Sir, With no jury or judge, would be.',48,'resume/01.pdf','resume/01.pdf',12,0,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(15,'Irma','Erdman','+12519380163','rwill@kihn.com','Dinah!\' she said to Alice, flinging the baby at her side. She was close behind it when she looked down, was an uncomfortably sharp chin. However, she got to the general conclusion, that wherever you.',30,'resume/01.pdf','resume/01.pdf',79,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(16,'Marge','Wilkinson','+17253537286','helmer00@yahoo.com','Alice, \'as all the unjust things--\' when his eye chanced to fall upon Alice, as she had drunk half the bottle, saying to herself \'Now I can reach the key; and if I shall have to fly; and the Hatter.',23,'resume/01.pdf','resume/01.pdf',99,0,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(17,'Nickolas','Hermiston','+17247857893','green78@leffler.info','Mock Turtle, \'Drive on, old fellow! Don\'t be all day about it!\' and he wasn\'t one?\' Alice asked. The Hatter was the fan and gloves--that is, if I only wish it was,\' said the Caterpillar seemed to.',40,'resume/01.pdf','resume/01.pdf',100,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(18,'Bud','Harris','+12539854365','hudson.lenora@gmail.com','It\'s the most interesting, and perhaps as this before, never! And I declare it\'s too bad, that it was quite a large caterpillar, that was lying on the top of his teacup instead of onions.\' Seven.',45,'resume/01.pdf','resume/01.pdf',51,0,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(19,'Rhoda','Murphy','+14323190227','marvin.lorenza@howell.com','Hatter was out of sight; and an old Crab took the cauldron of soup off the cake. * * * * * * * * * * * * * * * * * * \'What a number of cucumber-frames there must be!\' thought Alice. One of the.',19,'resume/01.pdf','resume/01.pdf',62,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28'),(20,'Allie','Rolfson','+15857257678','guiseppe.koch@hotmail.com','Cat again, sitting on the top of her little sister\'s dream. The long grass rustled at her as she fell past it. \'Well!\' thought Alice \'without pictures or conversations?\' So she swallowed one of the.',22,'resume/01.pdf','resume/01.pdf',83,1,'checked','2024-09-18 03:11:28','2024-09-18 03:11:28');
/*!40000 ALTER TABLE `jb_applications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_career_levels`
--

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

--
-- Dumping data for table `jb_career_levels`
--

LOCK TABLES `jb_career_levels` WRITE;
/*!40000 ALTER TABLE `jb_career_levels` DISABLE KEYS */;
INSERT INTO `jb_career_levels` VALUES (1,'Department Head',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(2,'Entry Level',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(3,'Experienced Professional',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(4,'GM / CEO / Country Head / President',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(5,'Intern/Student',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50');
/*!40000 ALTER TABLE `jb_career_levels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_career_levels_translations`
--

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

--
-- Dumping data for table `jb_career_levels_translations`
--

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

--
-- Table structure for table `jb_categories`
--

DROP TABLE IF EXISTS `jb_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `is_featured` tinyint NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `parent_id` bigint unsigned NOT NULL DEFAULT '0',
  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 `jb_categories`
--

LOCK TABLES `jb_categories` WRITE;
/*!40000 ALTER TABLE `jb_categories` DISABLE KEYS */;
INSERT INTO `jb_categories` VALUES (1,'Content Writer',NULL,0,0,1,'published','2024-09-18 03:10:52','2024-09-18 03:10:52',0),(2,'Market Research',NULL,1,0,1,'published','2024-09-18 03:10:52','2024-09-18 03:10:52',0),(3,'Marketing &amp; Sale',NULL,2,0,1,'published','2024-09-18 03:10:52','2024-09-18 03:10:52',0),(4,'Customer Help',NULL,3,0,1,'published','2024-09-18 03:10:52','2024-09-18 03:10:52',0),(5,'Finance',NULL,4,0,1,'published','2024-09-18 03:10:52','2024-09-18 03:10:52',0),(6,'Software',NULL,5,0,1,'published','2024-09-18 03:10:52','2024-09-18 03:10:52',0),(7,'Human Resource',NULL,6,0,1,'published','2024-09-18 03:10:52','2024-09-18 03:10:52',0),(8,'Management',NULL,7,0,1,'published','2024-09-18 03:10:52','2024-09-18 03:10:52',0),(9,'Retail &amp; Products',NULL,8,0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52',0),(10,'Security Analyst',NULL,9,0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52',0);
/*!40000 ALTER TABLE `jb_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_categories_translations`
--

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

--
-- Dumping data for table `jb_categories_translations`
--

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

--
-- Table structure for table `jb_companies`
--

DROP TABLE IF EXISTS `jb_companies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_companies` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `unique_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` mediumtext COLLATE utf8mb4_unicode_ci,
  `website` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `logo` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `latitude` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `longitude` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_id` bigint unsigned DEFAULT '1',
  `state_id` bigint unsigned DEFAULT NULL,
  `city_id` bigint unsigned DEFAULT NULL,
  `postal_code` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `year_founded` int unsigned DEFAULT NULL,
  `ceo` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `number_of_offices` int unsigned DEFAULT NULL,
  `number_of_employees` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `annual_revenue` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cover_image` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `facebook` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `twitter` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `linkedin` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `instagram` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_featured` tinyint NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `views` bigint unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `tax_id` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `jb_companies_unique_id_unique` (`unique_id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_companies`
--

LOCK TABLES `jb_companies` WRITE;
/*!40000 ALTER TABLE `jb_companies` DISABLE KEYS */;
INSERT INTO `jb_companies` VALUES (1,NULL,'LinkedIn',NULL,'Qui omnis exercitationem qui dignissimos maxime in. Eligendi dicta voluptatem aliquam vero maxime voluptatem occaecati. Voluptates adipisci molestiae aperiam exercitationem id.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.linkedin.com/','companies/1.png','43.82477','-75.640194','237 Renner Lane Suite 165\nNorth Emmyton, AR 51458-3264',1,1,1,NULL,'+16807832739',1979,'John Doe',1,'1','1M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(2,NULL,'Adobe Illustrator',NULL,'Dolorem voluptatum ipsum aut eligendi. Quaerat qui amet accusamus consequuntur. Sed accusamus sed mollitia dolor dignissimos alias facilis.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.adobe.com/','companies/2.png','42.571321','-75.915539','89974 Mariano Mount Suite 578\nNorth Lucioport, IN 74992',2,2,2,NULL,'+12487383679',1972,'Jeff Werner',1,'10','6M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(3,NULL,'Bing Search',NULL,'Aliquid sunt aliquid voluptate suscipit ab consequatur repellendus veritatis. Qui non quia consectetur cumque qui. Doloremque provident veritatis nihil.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.bing.com/','companies/3.png','42.759915','-75.193975','6118 King Fields Apt. 216\nBechtelarstad, WI 78962-2202',6,6,6,NULL,'+12483891352',1970,'Nakamura',7,'9','3M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(4,NULL,'Dailymotion',NULL,'Et eligendi id at distinctio. Tempore vitae asperiores sapiente quis. Et animi unde consequuntur quisquam praesentium aut aut.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.dailymotion.com/','companies/4.png','43.383384','-75.270639','77717 Lubowitz Road Suite 523\nBayermouth, MI 19738',1,1,1,NULL,'+17062231973',2011,'John Doe',6,'8','10M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(5,NULL,'Linkedin',NULL,'Voluptatem quia modi consequatur repellendus qui molestiae. Et voluptatibus et aut est inventore qui. Debitis aliquam consequatur nemo culpa vero ut. Vitae sed praesentium et.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.linkedin.com/','companies/5.png','42.942028','-76.133938','198 Anderson Loaf\nEast Norris, NM 60922',1,1,1,NULL,'+15155449914',2017,'John Doe',8,'6','9M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(6,NULL,'Quora JSC',NULL,'Earum tempore mollitia nesciunt consequatur omnis enim. Ex quo voluptatibus adipisci facere. Accusantium laborum quod autem odio.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.quora.com/','companies/6.png','43.306034','-75.309474','34308 VonRueden Cove Apt. 531\nBennytown, VA 99310-1206',4,4,4,NULL,'+17083374098',2005,'John Doe',7,'5','10M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(7,NULL,'Nintendo',NULL,'Et molestiae tempore accusamus voluptas. Deleniti rerum fugit ut beatae.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.nintendo.com/','companies/7.png','43.283549','-75.349081','60232 Obie Estates Suite 146\nJenniechester, RI 54417-6663',3,3,3,NULL,'+18598947668',2024,'Steve Jobs',6,'2','1M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(8,NULL,'Periscope',NULL,'Ipsam eveniet quia consequatur animi distinctio. Aut omnis et amet tempore sunt. Nihil quia rerum distinctio qui. Voluptatem nulla voluptas adipisci aut explicabo esse nesciunt ad.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.pscp.tv/','companies/8.png','43.874498','-74.773932','766 Lakin Points\nLake Saulhaven, LA 58022-8740',1,1,1,NULL,'+18313152983',1999,'John Doe',1,'5','8M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(9,NULL,'NewSum',NULL,'Dolorem nostrum deserunt doloribus qui delectus. Laborum dolorum at voluptas eveniet et deserunt. Harum sit natus unde.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://newsum.us/','companies/4.png','42.744949','-74.791156','861 Mosciski Landing\nBreanaside, KY 41651',2,2,2,NULL,'+13319557877',2011,'John Doe',5,'6','10M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(10,NULL,'PowerHome',NULL,'Explicabo eaque non repudiandae. Dolores at doloremque ut et et sequi autem. Quibusdam incidunt voluptas voluptatem delectus.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.pscp.tv/','companies/5.png','42.610888','-75.269014','344 Cydney Plain\nKleinfort, AR 20484-1463',1,1,1,NULL,'+19209790337',2015,'John Doe',10,'6','4M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(11,NULL,'Whop.com',NULL,'Nihil atque non itaque consequuntur. Quia id et et a architecto rem enim. Enim occaecati sint eaque totam qui sunt nostrum. Laborum hic inventore mollitia.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://whop.com/','companies/6.png','43.337652','-75.912986','3887 Runolfsdottir Lodge\nNew Krystelside, SC 37782-9074',2,2,2,NULL,'+15593672699',2008,'John Doe',5,'10','7M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(12,NULL,'Greenwood',NULL,'Explicabo reprehenderit nemo ut pariatur iste quaerat. Illo excepturi itaque quos rerum vero sit quidem. Nostrum suscipit enim deserunt explicabo. Voluptas totam porro enim ea.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.greenwoodjs.io/','companies/7.png','43.177589','-75.609921','60598 Dock Trail\nEloyburgh, OR 49256',5,5,5,NULL,'+12798772112',1991,'John Doe',3,'1','3M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(13,NULL,'Kentucky',NULL,'Aut sequi magnam eveniet aperiam. Rerum aut sed explicabo soluta minima illo. Molestiae rerum ea quam esse quo sunt velit rerum.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.kentucky.gov/','companies/8.png','44.000426','-76.59034','824 Zulauf Turnpike Apt. 967\nNew Anjali, DC 26916-2083',4,4,4,NULL,'+18788280165',2010,'John Doe',10,'4','3M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(14,NULL,'Equity',NULL,'Repellendus ea et nesciunt nulla incidunt doloribus et. Vero debitis adipisci placeat et consequuntur. Adipisci exercitationem eum ut tenetur et. Vitae distinctio optio sed molestiae voluptate.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.equity.org.uk/','companies/6.png','43.698995','-75.442132','459 Wolff Roads\nPabloburgh, MS 37603',3,3,3,NULL,'+14807293097',2016,'John Doe',9,'5','4M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(15,NULL,'Honda',NULL,'Quis dolore autem voluptatem sed quos. Culpa ut molestias et adipisci officiis corporis et.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.honda.com/','companies/9.png','42.786341','-75.655764','929 Lorna Bypass Suite 146\nWest Marjolaine, SC 24246-3111',4,4,4,NULL,'+16286566851',1984,'John Doe',9,'5','7M',NULL,NULL,NULL,NULL,NULL,1,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(16,NULL,'Toyota',NULL,'Aut voluptatem est minima voluptatem earum. Veniam officia nemo sed excepturi. Repellendus distinctio eaque ut unde labore et.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.toyota.com/','companies/5.png','42.972177','-74.902862','89959 Anderson Ports Suite 026\nSouth Garrisonborough, VA 25982',1,1,1,NULL,'+19305472755',1987,'John Doe',3,'9','3M',NULL,NULL,NULL,NULL,NULL,0,'published',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(17,NULL,'Lexus',NULL,'Reprehenderit enim quos unde nemo quia ad. Repellat asperiores aut deleniti doloribus maxime sed quia velit. Rerum eos sed officia voluptas. Tempora sunt commodi rem voluptatem.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://www.pscp.tv/','companies/3.png','43.606947','-74.913781','8282 Fausto Gardens Apt. 061\nBreanamouth, SC 97898-8950',1,1,1,NULL,'+14245144475',2022,'John Doe',4,'1','6M',NULL,NULL,NULL,NULL,NULL,0,'published',0,'2024-09-18 03:10:54','2024-09-18 03:10:54',NULL),(18,NULL,'Ondo',NULL,'Et quia a magni inventore libero. Aperiam quia possimus dolor. Ipsa ipsa sint non sunt repudiandae iusto blanditiis rerum.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://ondo.mn/','companies/6.png','43.997965','-76.588899','136 Duane Meadows\nNorth Janessaside, OR 97650',5,5,5,NULL,'+13609154212',1995,'John Doe',4,'9','3M',NULL,NULL,NULL,NULL,NULL,0,'published',0,'2024-09-18 03:10:54','2024-09-18 03:10:54',NULL),(19,NULL,'Square',NULL,'Dolor blanditiis corporis eveniet est perspiciatis sapiente. Rerum tempore et assumenda esse. Omnis quasi nemo ullam et inventore at totam.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://squareup.com/','companies/2.png','43.059014','-74.845283','405 Dustin Villages\nWest Mellie, RI 58735-6289',4,4,4,NULL,'+16462378761',1983,'John Doe',1,'9','7M',NULL,NULL,NULL,NULL,NULL,0,'published',0,'2024-09-18 03:10:54','2024-09-18 03:10:54',NULL),(20,NULL,'Visa',NULL,'Nisi maiores aut eum enim excepturi dolorum. Minus nulla laborum dolorem quis. Non odit nam reprehenderit repudiandae dolores rerum. Mollitia ad corrupti pariatur sunt fugit explicabo cum.','<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n                revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n                real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n            <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n                one-to-one technology.</p>\n\n            <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n                seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n                eiusmod Pinterest in do umami readymade swag.</p>','https://visa.com/','companies/8.png','43.56113','-76.650544','66957 Herzog Course\nKarolannside, GA 82215',6,6,6,NULL,'+12199326455',2013,'John Doe',1,'5','8M',NULL,NULL,NULL,NULL,NULL,0,'published',0,'2024-09-18 03:10:54','2024-09-18 03:10:54',NULL);
/*!40000 ALTER TABLE `jb_companies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_companies_accounts`
--

DROP TABLE IF EXISTS `jb_companies_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_companies_accounts` (
  `company_id` bigint unsigned NOT NULL,
  `account_id` bigint unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_companies_accounts`
--

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

--
-- Table structure for table `jb_coupons`
--

DROP TABLE IF EXISTS `jb_coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_coupons` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `code` varchar(20) 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 `jb_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 `jb_coupons`
--

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

--
-- Table structure for table `jb_currencies`
--

DROP TABLE IF EXISTS `jb_currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_currencies` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `symbol` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_prefix_symbol` tinyint unsigned NOT NULL DEFAULT '0',
  `decimals` tinyint unsigned 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 `jb_currencies`
--

LOCK TABLES `jb_currencies` WRITE;
/*!40000 ALTER TABLE `jb_currencies` DISABLE KEYS */;
INSERT INTO `jb_currencies` VALUES (1,'USD','$',1,2,0,1,1,'2024-09-18 03:10:55','2024-09-18 03:10:55'),(2,'EUR','€',0,2,1,0,0.91,'2024-09-18 03:10:55','2024-09-18 03:10:55'),(3,'VND','₫',0,0,2,0,23717.5,'2024-09-18 03:10:55','2024-09-18 03:10:55');
/*!40000 ALTER TABLE `jb_currencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_custom_field_options`
--

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

--
-- Dumping data for table `jb_custom_field_options`
--

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

--
-- Table structure for table `jb_custom_field_options_translations`
--

DROP TABLE IF EXISTS `jb_custom_field_options_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_custom_field_options_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `jb_custom_field_options_id` bigint unsigned NOT NULL,
  `label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`jb_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 `jb_custom_field_options_translations`
--

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

--
-- Table structure for table `jb_custom_field_values`
--

DROP TABLE IF EXISTS `jb_custom_field_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_custom_field_values` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reference_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` bigint unsigned NOT NULL,
  `custom_field_id` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `jb_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 `jb_custom_field_values`
--

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

--
-- Table structure for table `jb_custom_field_values_translations`
--

DROP TABLE IF EXISTS `jb_custom_field_values_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_custom_field_values_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `jb_custom_field_values_id` bigint unsigned NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`jb_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 `jb_custom_field_values_translations`
--

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

--
-- Table structure for table `jb_custom_fields`
--

DROP TABLE IF EXISTS `jb_custom_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_custom_fields` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `order` int NOT NULL DEFAULT '999',
  `is_global` tinyint(1) NOT NULL DEFAULT '0',
  `authorable_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `authorable_id` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `jb_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 `jb_custom_fields`
--

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

--
-- Table structure for table `jb_custom_fields_translations`
--

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

--
-- Dumping data for table `jb_custom_fields_translations`
--

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

--
-- Table structure for table `jb_degree_levels`
--

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

--
-- Dumping data for table `jb_degree_levels`
--

LOCK TABLES `jb_degree_levels` WRITE;
/*!40000 ALTER TABLE `jb_degree_levels` DISABLE KEYS */;
INSERT INTO `jb_degree_levels` VALUES (1,'Non-Matriculation',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(2,'Matriculation/O-Level',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(3,'Intermediate/A-Level',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(4,'Bachelors',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(5,'Masters',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(6,'MPhil/MS',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(7,'PHD/Doctorate',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(8,'Certification',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(9,'Diploma',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(10,'Short Course',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50');
/*!40000 ALTER TABLE `jb_degree_levels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_degree_levels_translations`
--

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

--
-- Dumping data for table `jb_degree_levels_translations`
--

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

--
-- Table structure for table `jb_degree_types`
--

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

--
-- Dumping data for table `jb_degree_types`
--

LOCK TABLES `jb_degree_types` WRITE;
/*!40000 ALTER TABLE `jb_degree_types` DISABLE KEYS */;
INSERT INTO `jb_degree_types` VALUES (1,'Matric in Arts',2,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(2,'Matric in Science',2,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(3,'O-Levels',2,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(4,'A-Levels',3,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(5,'Faculty of Arts',3,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(6,'Faculty of Science (Pre-medical)',3,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(7,'Faculty of Science (Pre-Engineering)',3,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(8,'Intermediate in Computer Science',3,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(9,'Intermediate in Commerce',3,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(10,'Intermediate in General Science',3,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(11,'Bachelors in Arts',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(12,'Bachelors in Architecture',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(13,'Bachelors in Business Administration',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(14,'Bachelors in Commerce',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(15,'Bachelors of Dental Surgery',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(16,'Bachelors of Education',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(17,'Bachelors in Engineering',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(18,'Bachelors in Pharmacy',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(19,'Bachelors in Science',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(20,'Bachelors of Science in Nursing (Registered Nursing)',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(21,'Bachelors in Law',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(22,'Bachelors in Technology',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(23,'BCS/BS',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(24,'Doctor of Veterinary Medicine',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(25,'MBBS',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(26,'Post Registered Nursing B.S.',4,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(27,'Masters in Arts',5,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(28,'Masters in Business Administration',5,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(29,'Masters in Commerce',5,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(30,'Masters of Education',5,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(31,'Masters in Law',5,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(32,'Masters in Science',5,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(33,'Executive Masters in Business Administration',5,0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50');
/*!40000 ALTER TABLE `jb_degree_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_degree_types_translations`
--

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

--
-- Dumping data for table `jb_degree_types_translations`
--

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

--
-- Table structure for table `jb_functional_areas`
--

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

--
-- Dumping data for table `jb_functional_areas`
--

LOCK TABLES `jb_functional_areas` WRITE;
/*!40000 ALTER TABLE `jb_functional_areas` DISABLE KEYS */;
INSERT INTO `jb_functional_areas` VALUES (1,'Accountant',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(2,'Accounts, Finance &amp; Financial Services',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(3,'Admin',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(4,'Admin Operation',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(5,'Administration',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(6,'Administration Clerical',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(7,'Advertising',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(8,'Advertising',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(9,'Advertisement',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(10,'Architects &amp; Construction',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(11,'Architecture',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(12,'Bank Operation',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(13,'Business Development',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(14,'Business Management',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(15,'Business Systems Analyst',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(16,'Clerical',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(17,'Client Services &amp; Customer Support',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(18,'Computer Hardware',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(19,'Computer Networking',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(20,'Consultant',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(21,'Content Writer',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(22,'Corporate Affairs',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(23,'Creative Design',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(24,'Creative Writer',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(25,'Customer Support',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(26,'Data Entry',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(27,'Data Entry Operator',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(28,'Database Administration (DBA)',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(29,'Development',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(30,'Distribution &amp; Logistics',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(31,'Education &amp; Training',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(32,'Electronics Technician',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(33,'Engineering',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(34,'Engineering Construction',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(35,'Executive Management',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(36,'Executive Secretary',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(37,'Field Operations',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(38,'Front Desk Clerk',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(39,'Front Desk Officer',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(40,'Graphic Design',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(41,'Hardware',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(42,'Health &amp; Medicine',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(43,'Health &amp; Safety',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(44,'Health Care',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(45,'Health Related',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(46,'Hotel Management',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(47,'Hotel/Restaurant Management',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(48,'HR',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(49,'Human Resources',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(50,'Import &amp; Export',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(51,'Industrial Production',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(52,'Installation &amp; Repair',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(53,'Interior Designers &amp; Architects',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(54,'Intern',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(55,'Internship',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(56,'Investment Operations',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(57,'IT Security',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(58,'IT Systems Analyst',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(59,'Legal &amp; Corporate Affairs',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(60,'Legal Affairs',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(61,'Legal Research',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(62,'Logistics &amp; Warehousing',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(63,'Maintenance/Repair',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(64,'Management Consulting',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(65,'Management Information System (MIS)',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(66,'Managerial',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(67,'Manufacturing',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(68,'Manufacturing &amp; Operations',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(69,'Marketing',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(70,'Marketing',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(71,'Media - Print &amp; Electronic',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(72,'Media &amp; Advertising',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(73,'Medical',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(74,'Medicine',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(75,'Merchandising',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(76,'Merchandising &amp; Product Management',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(77,'Monitoring &amp; Evaluation (M&amp;E)',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(78,'Network Administration',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(79,'Network Operation',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(80,'Online Advertising',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(81,'Online Marketing',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(82,'Operations',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(83,'Planning',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(84,'Planning &amp; Development',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(85,'PR',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(86,'Print Media',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(87,'Printing',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(88,'Procurement',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(89,'Product Developer',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(90,'Product Development',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(91,'Product Development',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(92,'Product Management',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(93,'Production',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(94,'Production &amp; Quality Control',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(95,'Project Management',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(96,'Project Management Consultant',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(97,'Public Relations',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(98,'QA',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(99,'QC',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(100,'Qualitative Research',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(101,'Quality Assurance (QA)',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(102,'Quality Control',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(103,'Quality Inspection',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(104,'Recruiting',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(105,'Recruitment',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(106,'Repair &amp; Overhaul',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(107,'Research &amp; Development (R&amp;D)',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(108,'Research &amp; Evaluation',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(109,'Research &amp; Fellowships',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(110,'Researcher',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(111,'Restaurant Management',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(112,'Retail',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(113,'Retail &amp; Wholesale',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(114,'Retail Buyer',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(115,'Retail Buying',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(116,'Retail Merchandising',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(117,'Safety &amp; Environment',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(118,'Sales',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(119,'Sales &amp; Business Development',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(120,'Sales Support',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(121,'Search Engine Optimization (SEO)',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(122,'Secretarial, Clerical &amp; Front Office',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(123,'Security',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(124,'Security &amp; Environment',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(125,'Security Guard',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(126,'SEM',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(127,'SMO',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(128,'Software &amp; Web Development',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(129,'Software Engineer',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(130,'Software Testing',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(131,'Stores &amp; Warehousing',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(132,'Supply Chain',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(133,'Supply Chain Management',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(134,'Systems Analyst',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(135,'Teachers/Education, Training &amp; Development',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(136,'Technical Writer',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(137,'Tele Sale Representative',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(138,'Telemarketing',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(139,'Training &amp; Development',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(140,'Transportation &amp; Warehousing',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(141,'TSR',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(142,'Typing',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(143,'Warehousing',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(144,'Web Developer',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(145,'Web Marketing',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(146,'Writer',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(147,'PR',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(148,'QA',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(149,'QC',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(150,'SEM',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(151,'SMO',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(152,'TSR',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(153,'HR',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(154,'QA',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(155,'QC',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(156,'SEM',0,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50');
/*!40000 ALTER TABLE `jb_functional_areas` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_functional_areas_translations`
--

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

--
-- Dumping data for table `jb_functional_areas_translations`
--

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

--
-- Table structure for table `jb_invoice_items`
--

DROP TABLE IF EXISTS `jb_invoice_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_invoice_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `invoice_id` bigint unsigned NOT NULL,
  `reference_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` bigint unsigned NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `qty` int unsigned NOT NULL,
  `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,
  `metadata` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `jb_invoice_items_reference_type_reference_id_index` (`reference_type`,`reference_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_invoice_items`
--

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

--
-- Table structure for table `jb_invoices`
--

DROP TABLE IF EXISTS `jb_invoices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_invoices` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `reference_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` bigint unsigned NOT NULL,
  `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `company_logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tax_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sub_total` decimal(15,2) unsigned NOT NULL,
  `tax_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00',
  `shipping_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00',
  `discount_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00',
  `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(15,2) unsigned NOT NULL,
  `payment_id` int unsigned DEFAULT NULL,
  `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `paid_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `jb_invoices_code_unique` (`code`),
  KEY `jb_invoices_reference_type_reference_id_index` (`reference_type`,`reference_id`),
  KEY `jb_invoices_payment_id_index` (`payment_id`),
  KEY `jb_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 `jb_invoices`
--

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

--
-- Table structure for table `jb_job_experiences`
--

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

--
-- Dumping data for table `jb_job_experiences`
--

LOCK TABLES `jb_job_experiences` WRITE;
/*!40000 ALTER TABLE `jb_job_experiences` DISABLE KEYS */;
INSERT INTO `jb_job_experiences` VALUES (1,'Fresh',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(2,'Less Than 1 Year',1,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(3,'1 Year',2,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(4,'2 Year',3,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(5,'3 Year',4,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(6,'4 Year',5,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(7,'5 Year',6,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(8,'6 Year',7,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(9,'7 Year',8,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(10,'8 Year',9,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(11,'9 Year',10,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(12,'10 Year',11,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52');
/*!40000 ALTER TABLE `jb_job_experiences` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_job_experiences_translations`
--

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

--
-- Dumping data for table `jb_job_experiences_translations`
--

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

--
-- Table structure for table `jb_job_shifts`
--

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

--
-- Dumping data for table `jb_job_shifts`
--

LOCK TABLES `jb_job_shifts` WRITE;
/*!40000 ALTER TABLE `jb_job_shifts` DISABLE KEYS */;
INSERT INTO `jb_job_shifts` VALUES (1,'First Shift (Day)',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(2,'Second Shift (Afternoon)',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(3,'Third Shift (Night)',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(4,'Rotating',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52');
/*!40000 ALTER TABLE `jb_job_shifts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_job_shifts_translations`
--

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

--
-- Dumping data for table `jb_job_shifts_translations`
--

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

--
-- Table structure for table `jb_job_skills`
--

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

--
-- Dumping data for table `jb_job_skills`
--

LOCK TABLES `jb_job_skills` WRITE;
/*!40000 ALTER TABLE `jb_job_skills` DISABLE KEYS */;
INSERT INTO `jb_job_skills` VALUES (1,'JavaScript',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(2,'PHP',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(3,'Python',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(4,'Laravel',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(5,'CakePHP',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(6,'WordPress',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(7,'Flutter',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(8,'FilamentPHP',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52'),(9,'React.js',0,0,'published','2024-09-18 03:10:52','2024-09-18 03:10:52');
/*!40000 ALTER TABLE `jb_job_skills` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_job_skills_translations`
--

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

--
-- Dumping data for table `jb_job_skills_translations`
--

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

--
-- Table structure for table `jb_job_types`
--

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

--
-- Dumping data for table `jb_job_types`
--

LOCK TABLES `jb_job_types` WRITE;
/*!40000 ALTER TABLE `jb_job_types` DISABLE KEYS */;
INSERT INTO `jb_job_types` VALUES (1,'Contract',0,0,'published','2024-09-18 03:10:53','2024-09-18 03:10:53'),(2,'Freelance',0,0,'published','2024-09-18 03:10:53','2024-09-18 03:10:53'),(3,'Full Time',0,1,'published','2024-09-18 03:10:53','2024-09-18 03:10:53'),(4,'Internship',0,0,'published','2024-09-18 03:10:53','2024-09-18 03:10:53'),(5,'Part Time',0,0,'published','2024-09-18 03:10:53','2024-09-18 03:10:53');
/*!40000 ALTER TABLE `jb_job_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_job_types_translations`
--

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

--
-- Dumping data for table `jb_job_types_translations`
--

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

--
-- Table structure for table `jb_jobs`
--

DROP TABLE IF EXISTS `jb_jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_jobs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `content` text COLLATE utf8mb4_unicode_ci,
  `apply_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `company_id` bigint unsigned DEFAULT NULL,
  `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_id` bigint unsigned DEFAULT '1',
  `state_id` bigint unsigned DEFAULT NULL,
  `city_id` bigint unsigned DEFAULT NULL,
  `is_freelance` tinyint unsigned NOT NULL DEFAULT '0',
  `career_level_id` bigint unsigned DEFAULT NULL,
  `salary_from` decimal(15,2) unsigned DEFAULT NULL,
  `salary_to` decimal(15,2) unsigned DEFAULT NULL,
  `salary_range` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'hour',
  `currency_id` bigint unsigned DEFAULT NULL,
  `degree_level_id` bigint unsigned DEFAULT NULL,
  `job_shift_id` bigint unsigned DEFAULT NULL,
  `job_experience_id` bigint unsigned DEFAULT NULL,
  `functional_area_id` bigint unsigned DEFAULT NULL,
  `hide_salary` tinyint(1) NOT NULL DEFAULT '0',
  `number_of_positions` int unsigned NOT NULL DEFAULT '1',
  `expire_date` date DEFAULT NULL,
  `author_id` bigint unsigned DEFAULT NULL,
  `author_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `views` int unsigned NOT NULL DEFAULT '0',
  `number_of_applied` int unsigned NOT NULL DEFAULT '0',
  `hide_company` tinyint(1) NOT NULL DEFAULT '0',
  `latitude` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `longitude` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `auto_renew` tinyint(1) NOT NULL DEFAULT '0',
  `external_apply_clicks` int unsigned NOT NULL DEFAULT '0',
  `never_expired` tinyint(1) NOT NULL DEFAULT '0',
  `is_featured` tinyint NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `moderation_status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `employer_colleagues` text COLLATE utf8mb4_unicode_ci,
  `start_date` date DEFAULT NULL,
  `application_closing_date` date DEFAULT NULL,
  `zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_jobs`
--

LOCK TABLES `jb_jobs` WRITE;
/*!40000 ALTER TABLE `jb_jobs` DISABLE KEYS */;
INSERT INTO `jb_jobs` VALUES (1,'UI / UX Designer full-time','Consequatur at sit assumenda. Maxime voluptatibus quaerat ipsum libero. Et est minima accusamus et amet. Eaque velit et nihil placeat odit eos. Et inventore dolores voluptas repudiandae.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',17,NULL,1,1,1,0,2,6800.00,13900.00,'monthly',1,8,1,5,36,0,5,'2024-11-07',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.606947','-74.913781',0,0,0,1,'published','approved','2024-07-19 21:20:26','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(2,'Full Stack Engineer','Omnis officiis quaerat rem corrupti autem labore. Dolorem libero autem saepe et. Aliquam a quasi est sapiente voluptatem.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','https://google.com',17,NULL,1,1,1,0,5,5400.00,11500.00,'yearly',1,8,1,4,32,0,2,'2024-11-03',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.606947','-74.913781',0,0,0,0,'published','approved','2024-08-01 20:19:16','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(3,'Java Software Engineer','Cum vel qui maxime non. Non omnis pariatur cupiditate minima. Commodi nihil est vitae numquam nam sit velit quod.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',20,NULL,6,6,6,0,5,3100.00,8100.00,'monthly',0,4,4,4,155,0,4,'2024-11-07',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.56113','-76.650544',0,0,1,0,'published','approved','2024-08-22 06:40:13','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(4,'Digital Marketing Manager','Pariatur autem consequatur magni et. Suscipit doloribus vel explicabo praesentium.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',3,NULL,6,6,6,0,2,1700.00,4600.00,'hourly',1,3,3,5,23,0,6,'2024-10-06',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.759915','-75.193975',0,0,0,1,'published','approved','2024-08-02 14:34:59','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(5,'Frontend Developer','Dolores magnam praesentium et eum sed. Sunt corrupti et enim doloremque aperiam tenetur explicabo.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',9,NULL,2,2,2,0,5,5700.00,11400.00,'monthly',1,3,2,3,36,0,9,'2024-09-29',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.744949','-74.791156',0,0,0,0,'published','approved','2024-08-29 22:19:32','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(6,'React Native Web Developer','Suscipit sed ducimus consequatur. Ut ad inventore aperiam cumque perferendis non. Praesentium rerum ipsa alias vel ut ullam culpa. Aut fuga commodi iusto numquam incidunt.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',18,NULL,5,5,5,0,5,9400.00,11500.00,'monthly',0,10,4,5,12,0,7,'2024-10-14',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.997965','-76.588899',0,0,1,1,'published','approved','2024-07-20 15:26:32','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(7,'Senior System Engineer','Fugit occaecati id error blanditiis non necessitatibus. Harum et harum deleniti ex et et ut. Reiciendis aut repudiandae reiciendis commodi.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',3,NULL,6,6,6,0,3,4700.00,5600.00,'yearly',1,8,4,1,12,0,9,'2024-09-29',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.759915','-75.193975',0,0,1,1,'published','approved','2024-08-09 05:07:08','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(8,'Products Manager','Enim voluptas iusto dignissimos nemo amet. Commodi eaque quis quis possimus. Repudiandae asperiores aliquam ea repudiandae qui suscipit voluptatum doloribus. Eos expedita ut eum voluptatem.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',20,NULL,6,6,6,0,3,4000.00,6100.00,'weekly',1,4,3,1,22,0,2,'2024-10-16',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.56113','-76.650544',0,0,1,1,'published','approved','2024-08-26 17:15:15','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(9,'Lead Quality Control QA','Sit et optio similique quas. Consequuntur et vel rem aut. Omnis eum molestias et est voluptas voluptatibus dolores eos.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',14,NULL,3,3,3,0,2,1200.00,7200.00,'weekly',0,5,4,4,147,0,6,'2024-10-14',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.698995','-75.442132',0,0,1,0,'published','approved','2024-07-20 04:16:32','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(10,'Principal Designer, Design Systems','Quo rerum quam et officia et. Et dolor fugit architecto non. Et aut eos officiis eveniet consequatur aspernatur.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',15,NULL,4,4,4,0,1,9300.00,13700.00,'hourly',1,2,1,2,97,0,8,'2024-11-14',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.786341','-75.655764',0,0,1,1,'published','approved','2024-08-21 08:54:55','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(11,'DevOps Architect','Animi deserunt quas dolorem quidem neque ab non. Harum qui error ullam ut. Quo expedita culpa non numquam quaerat numquam aliquam. Et tempora ducimus aspernatur quae.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',18,NULL,5,5,5,0,3,5200.00,11200.00,'daily',1,3,3,3,114,0,3,'2024-10-16',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.997965','-76.588899',0,0,1,1,'published','approved','2024-08-30 10:01:38','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(12,'Senior Software Engineer, npm CLI','Rem reprehenderit accusantium ducimus vel. Dolor et similique iste cumque omnis itaque praesentium. Enim ullam quisquam consequatur quis repellat dolores. Est eligendi hic doloremque.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',17,NULL,1,1,1,0,1,1300.00,4300.00,'yearly',0,2,3,1,53,0,9,'2024-10-30',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.606947','-74.913781',0,0,1,1,'published','approved','2024-08-14 05:41:44','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(13,'Senior Systems Engineer','Officiis sed et aperiam odio rerum et sed. Illum velit aspernatur consequatur velit. Officiis aspernatur consequatur et temporibus.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',4,NULL,1,1,1,0,1,4200.00,6800.00,'monthly',0,4,4,5,35,0,2,'2024-10-28',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.383384','-75.270639',0,0,1,1,'published','approved','2024-08-22 11:47:37','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(14,'Software Engineer Actions Platform','Facere impedit vel id nobis. Aut eaque voluptatem quae et non qui et. Non eaque eos ipsum nihil. Architecto quos id et quaerat.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',18,NULL,5,5,5,0,3,1300.00,10300.00,'monthly',0,2,1,2,117,0,4,'2024-11-16',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.997965','-76.588899',0,0,0,0,'published','approved','2024-08-16 23:39:02','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(15,'Staff Engineering Manager, Actions','Adipisci voluptatem pariatur est non et. A qui sint iure voluptas aut molestiae velit. Animi at vitae illum hic voluptas aut voluptate.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',16,NULL,1,1,1,0,5,8000.00,17300.00,'monthly',0,1,3,1,60,0,4,'2024-11-13',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.972177','-74.902862',0,0,0,1,'published','approved','2024-07-22 22:54:46','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(16,'Staff Engineering Manager: Actions Runtime','Iure quam ut et debitis ipsa. Cupiditate aperiam officiis hic molestiae doloremque qui. Et cupiditate non necessitatibus distinctio.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',19,NULL,4,4,4,0,4,8700.00,16900.00,'monthly',1,7,2,2,83,0,2,'2024-10-16',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.059014','-74.845283',0,0,1,1,'published','approved','2024-09-16 14:31:38','2024-09-18 03:10:54',NULL,NULL,NULL,NULL),(17,'Staff Engineering Manager, Packages','Sint et et qui. Eligendi repudiandae est quas dolor. Ut laudantium tempore nihil cum rerum mollitia. Officia quis ipsa occaecati sit adipisci repellendus voluptas.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',17,NULL,1,1,1,0,5,5700.00,7300.00,'yearly',0,7,3,1,113,0,7,'2024-10-28',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.606947','-74.913781',0,0,0,1,'published','approved','2024-08-11 00:46:48','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(18,'Staff Software Engineer','Quia sed eos rerum veritatis omnis non. Deserunt quod et dolor sequi. Non provident quibusdam officiis voluptatem dignissimos dignissimos. Et recusandae qui iusto eum libero.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',1,NULL,1,1,1,0,3,7400.00,14400.00,'daily',0,10,4,2,39,0,10,'2024-11-13',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.82477','-75.640194',0,0,0,0,'published','approved','2024-09-06 17:29:17','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(19,'Systems Software Engineer','Vel error modi earum fuga temporibus voluptatem. Rerum velit ipsam asperiores placeat culpa voluptatibus.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',17,NULL,1,1,1,0,5,4100.00,7400.00,'hourly',1,1,2,2,117,0,5,'2024-10-18',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.606947','-74.913781',0,0,1,0,'published','approved','2024-08-25 18:52:04','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(20,'Senior Compensation Analyst','Reiciendis quia illo illo quam ratione asperiores aliquid. Minus vitae est iusto voluptatem porro alias. Reprehenderit laboriosam ab nulla. Sint eum rem dolorem.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',19,NULL,4,4,4,0,3,9300.00,15300.00,'yearly',0,10,3,4,141,0,6,'2024-09-28',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.059014','-74.845283',0,0,0,1,'published','approved','2024-08-22 23:54:04','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(21,'Senior Accessibility Program Manager','Unde temporibus omnis saepe enim maiores labore. Eveniet at doloribus itaque sed explicabo ex. Ut placeat quia quis quisquam quia. Sunt amet et maiores excepturi.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',14,NULL,3,3,3,0,3,10000.00,11600.00,'monthly',1,1,1,5,51,0,5,'2024-10-08',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.698995','-75.442132',0,0,0,0,'published','approved','2024-08-27 14:05:45','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(22,'Analyst Relations Manager, Application Security','Vel eius modi similique dolorem. Perferendis vel voluptates qui voluptatem.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',4,NULL,1,1,1,0,5,5400.00,12400.00,'daily',1,9,1,2,25,0,6,'2024-10-01',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.383384','-75.270639',0,0,0,1,'published','approved','2024-09-12 02:25:58','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(23,'Senior Enterprise Advocate, EMEA','Qui molestiae accusamus perferendis vero alias et autem. Pariatur reprehenderit non doloremque blanditiis molestiae est earum ea. Aliquid recusandae eveniet dolor enim ut.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',9,NULL,2,2,2,0,5,1600.00,10400.00,'weekly',1,4,3,2,28,0,4,'2024-09-25',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.744949','-74.791156',0,0,0,1,'published','approved','2024-09-14 14:13:52','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(24,'Deal Desk Manager','Illo eos blanditiis aut. Consequatur incidunt quisquam odit quo dolores. Deleniti sed quasi magni nesciunt assumenda.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',18,NULL,5,5,5,0,2,5200.00,11000.00,'weekly',1,8,3,1,88,0,3,'2024-10-22',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.997965','-76.588899',0,0,1,1,'published','approved','2024-08-24 13:16:22','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(25,'Director, Revenue Compensation','Neque autem quos non amet animi iusto et inventore. Accusantium labore ea tenetur et. Repellendus et consequuntur laborum saepe saepe ut.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',18,NULL,5,5,5,0,4,3100.00,8400.00,'weekly',0,1,3,3,143,0,7,'2024-10-04',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.997965','-76.588899',0,0,0,0,'published','approved','2024-07-26 13:39:25','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(26,'Program Manager','Est dolorem ducimus sit animi. Delectus alias quod quod repellendus laboriosam dolores. Libero ut reiciendis tempore odit consequuntur.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',16,NULL,1,1,1,0,4,8100.00,9200.00,'monthly',0,3,3,5,78,0,10,'2024-10-24',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.972177','-74.902862',0,0,0,0,'published','approved','2024-07-19 10:15:41','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(27,'Sr. Manager, Deal Desk - INTL','Voluptas et et molestias sapiente. Porro similique voluptatibus amet impedit et. Sed consectetur aut et doloremque dolor cupiditate sed est. Beatae nemo ad qui ut aperiam quo aut.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',11,NULL,2,2,2,0,2,700.00,6900.00,'hourly',1,6,1,3,13,0,4,'2024-10-29',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.337652','-75.912986',0,0,0,0,'published','approved','2024-07-30 01:47:40','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(28,'Senior Director, Product Management, Actions Runners and Compute Services','Quae est quaerat quos quia est hic. Eos maxime dolorem et ad atque soluta et quia. Ut voluptatem quod non consectetur error.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',8,NULL,1,1,1,0,1,1400.00,10800.00,'hourly',1,7,3,1,128,0,6,'2024-10-16',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.874498','-74.773932',0,0,1,0,'published','approved','2024-08-28 15:57:11','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(29,'Alliances Director','Sed animi sint eaque sed quo et. Dolores qui aut nulla nihil fugit tempora blanditiis. Soluta est dolor nesciunt quia. Quia dolorem iusto veniam ut unde perspiciatis doloremque explicabo.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',17,NULL,1,1,1,0,2,9500.00,19100.00,'monthly',1,7,2,1,4,0,6,'2024-09-27',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.606947','-74.913781',0,0,0,1,'published','approved','2024-08-01 21:29:03','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(30,'Corporate Sales Representative','Aut blanditiis quis asperiores debitis. Sed quisquam nam architecto sit. Velit et in impedit et. Repellendus ex qui pariatur accusamus.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',1,NULL,1,1,1,0,2,2200.00,8700.00,'yearly',0,9,4,3,19,0,7,'2024-10-22',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.82477','-75.640194',0,0,1,1,'published','approved','2024-07-28 09:57:31','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(31,'Country Leader','Blanditiis odio ut consequuntur optio labore voluptatem consequatur vero. Consequatur aut aut incidunt id ut dicta quia illum. Tempora voluptas eos et molestiae.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',11,NULL,2,2,2,0,2,6800.00,16600.00,'hourly',0,9,1,3,92,0,3,'2024-10-31',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.337652','-75.912986',0,0,1,0,'published','approved','2024-07-27 03:42:54','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(32,'Customer Success Architect','Quis doloribus molestiae dolor distinctio aut in. Sed ut omnis vero ullam eos. Culpa blanditiis qui nesciunt nisi distinctio animi non.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',20,NULL,6,6,6,0,4,700.00,8000.00,'hourly',1,2,3,4,50,0,8,'2024-10-19',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.56113','-76.650544',0,0,1,1,'published','approved','2024-09-01 00:24:15','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(33,'DevOps Account Executive - US Public Sector','Tempore doloremque ab harum et numquam non eligendi. Animi mollitia reiciendis nesciunt ullam quibusdam. Est placeat esse nam vero.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',20,NULL,6,6,6,0,1,7600.00,10300.00,'daily',1,7,2,2,74,0,6,'2024-11-15',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.56113','-76.650544',0,0,0,1,'published','approved','2024-07-25 21:37:16','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(34,'Enterprise Account Executive','Animi quidem et molestiae facilis et odit sed. Nam vel corporis qui dolores odio consequatur. Earum ut explicabo voluptas nemo voluptas non. Quo voluptas debitis labore consequatur.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',12,NULL,5,5,5,0,3,3700.00,8600.00,'daily',1,10,3,1,19,0,10,'2024-10-02',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.177589','-75.609921',0,0,1,1,'published','approved','2024-07-18 18:07:49','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(35,'Senior Engineering Manager, Product Security Engineering - Paved Paths','Commodi voluptatem rerum repudiandae modi. Molestiae adipisci incidunt est est magni qui vel. Et voluptatem fugiat excepturi labore repudiandae et aut.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',1,NULL,1,1,1,0,4,6900.00,14800.00,'monthly',1,7,3,2,130,0,6,'2024-11-15',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.82477','-75.640194',0,0,0,0,'published','approved','2024-08-12 12:18:10','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(36,'Customer Reliability Engineer III','Sunt cumque inventore dolorum natus. Autem unde ut non sint dolor temporibus neque. Provident ut ex quis hic rerum. Quis animi sit nisi aut quae possimus dolores.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',18,NULL,5,5,5,0,4,9400.00,19100.00,'weekly',0,3,3,2,62,0,7,'2024-10-01',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.997965','-76.588899',0,0,1,1,'published','approved','2024-07-18 18:21:40','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(37,'Support Engineer (Enterprise Support Japanese)','Ea rerum molestiae et aliquid ut saepe fugit. Corrupti adipisci sequi officia ipsa saepe totam dolor.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',12,NULL,5,5,5,0,1,3800.00,5400.00,'weekly',1,6,3,3,129,0,2,'2024-09-28',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.177589','-75.609921',0,0,0,0,'published','approved','2024-07-19 06:41:12','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(38,'Technical Partner Manager','Odit fugiat adipisci quis eos qui. Omnis modi incidunt sint voluptatum a. Cum esse cupiditate nobis quo inventore nostrum aspernatur. Labore aut maiores soluta amet pariatur.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',7,NULL,3,3,3,0,1,3100.00,7300.00,'weekly',1,2,2,2,3,0,2,'2024-11-09',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.283549','-75.349081',0,0,1,0,'published','approved','2024-09-01 16:31:10','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(39,'Sr Manager, Inside Account Management','Debitis harum voluptates nulla assumenda qui. Qui aliquid fuga assumenda facere consectetur voluptas. Accusantium explicabo facere quisquam rerum doloremque ut. Asperiores ut dolores qui voluptatum.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',12,NULL,5,5,5,0,2,1300.00,8300.00,'hourly',0,1,3,2,57,0,9,'2024-10-27',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.177589','-75.609921',0,0,1,1,'published','approved','2024-07-31 22:23:10','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(40,'Services Sales Representative','Inventore omnis architecto iste sequi ipsam. Aut ea et at. At a sunt necessitatibus et dignissimos et et vel. Labore ut quos voluptatibus.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',1,NULL,1,1,1,0,2,4200.00,11800.00,'hourly',0,6,4,2,123,0,2,'2024-10-10',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.82477','-75.640194',0,0,0,0,'published','approved','2024-09-03 23:21:10','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(41,'Services Delivery Manager','Quos reprehenderit quo enim quisquam quae inventore reprehenderit quia. Repellendus ab est iure eligendi. Ut fuga eligendi occaecati nemo aut et.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',9,NULL,2,2,2,0,5,3000.00,7200.00,'hourly',1,1,2,4,78,0,7,'2024-09-30',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.744949','-74.791156',0,0,1,0,'published','approved','2024-07-25 23:48:42','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(42,'Senior Solutions Engineer','Voluptas et sint sed enim minima maxime voluptas. Consectetur velit nostrum praesentium nihil.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',16,NULL,1,1,1,0,3,8300.00,14800.00,'daily',0,8,2,5,111,0,5,'2024-10-14',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.972177','-74.902862',0,0,0,0,'published','approved','2024-09-03 14:14:31','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(43,'Senior Service Delivery Engineer','Rerum est cupiditate omnis sunt quo. Ad sit autem blanditiis sit illum. Enim officia veritatis unde quia qui cum in. Est vitae earum quam quia dolorem ut.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',10,NULL,1,1,1,0,5,4800.00,9400.00,'daily',0,1,1,3,127,0,3,'2024-10-29',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.610888','-75.269014',0,0,0,0,'published','approved','2024-08-31 19:50:19','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(44,'Senior Director, Global Sales Development','Eveniet sit quibusdam animi et totam cupiditate. Eos non veritatis sunt aspernatur aliquid ut nam. Laudantium fugit alias sint eligendi exercitationem doloremque.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',4,NULL,1,1,1,0,3,3900.00,4800.00,'monthly',1,6,1,4,67,0,8,'2024-09-25',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.383384','-75.270639',0,0,1,0,'published','approved','2024-09-13 08:47:06','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(45,'Partner Program Manager','Atque nemo voluptatem consectetur harum. Qui omnis dolorem aut minima nulla amet voluptates aut. Eos in non sint modi odit sint dolorem.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',9,NULL,2,2,2,0,4,2300.00,7700.00,'monthly',0,3,3,4,46,0,9,'2024-10-19',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.744949','-74.791156',0,0,0,1,'published','approved','2024-07-31 20:00:56','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(46,'Principal Cloud Solutions Engineer','Sit iusto nobis et alias architecto. Itaque laudantium id consequatur impedit qui.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',10,NULL,1,1,1,0,3,1200.00,8100.00,'daily',1,10,2,3,93,0,3,'2024-10-25',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.610888','-75.269014',0,0,0,0,'published','approved','2024-08-04 23:13:59','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(47,'Senior Cloud Solutions Engineer','Molestiae officiis et id. Et reprehenderit qui nihil enim qui sed et. Ipsam magnam ab est minima saepe et velit. Qui et dolorem occaecati nisi.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',11,NULL,2,2,2,0,3,2100.00,3500.00,'hourly',1,6,2,3,85,0,4,'2024-10-07',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.337652','-75.912986',0,0,0,1,'published','approved','2024-07-29 11:31:09','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(48,'Senior Customer Success Manager','Ut tenetur ut consequatur dolorem est facere reiciendis. Esse blanditiis eum quos harum rerum. Exercitationem molestiae eaque neque vel qui.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',18,NULL,5,5,5,0,5,2600.00,5100.00,'monthly',1,10,4,2,99,0,9,'2024-10-29',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.997965','-76.588899',0,0,1,1,'published','approved','2024-08-11 15:36:05','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(49,'Inside Account Manager','Vel amet commodi corporis delectus aut voluptatem. Et fugit illum eum ducimus labore repellat quia. Voluptas est sed quae cupiditate dolorum debitis. Sit beatae sed et ut mollitia.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',15,NULL,4,4,4,0,2,9500.00,16300.00,'yearly',1,6,4,2,62,0,7,'2024-10-03',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.786341','-75.655764',0,0,0,0,'published','approved','2024-08-18 05:49:19','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(50,'UX Jobs Board','Minima itaque veniam officia at accusamus illum. Consequatur veniam in sed est fugit nihil. Magni et voluptates a cumque dolore modi dolorem.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',5,NULL,1,1,1,0,1,6500.00,12100.00,'yearly',0,2,1,2,36,0,2,'2024-11-01',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'42.942028','-76.133938',0,0,0,1,'published','approved','2024-08-09 18:36:57','2024-09-18 03:10:55',NULL,NULL,NULL,NULL),(51,'Senior Laravel Developer (TALL Stack)','Voluptas alias corrupti fugit quasi aliquam ut. Et maiores nostrum accusantium nesciunt. Voluptates odio distinctio blanditiis voluptas. Dignissimos excepturi magni earum harum.','<h5>Responsibilities</h5>\n                <div>\n                    <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n                    <ul>\n                        <li>Have sound knowledge of commercial activities.</li>\n                        <li>Build next-generation web applications with a focus on the client side</li>\n                        <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n                    </ul>\n                </div>\n                <h5>Qualification </h5>\n                <div>\n                    <ul>\n                        <li>B.C.A / M.C.A under National University course complete.</li>\n                        <li>3 or more years of professional design experience</li>\n                        <li>have already graduated or are currently in any year of study</li>\n                        <li>Advanced degree or equivalent experience in graphic and web design</li>\n                    </ul>\n                </div>','',11,NULL,2,2,2,0,4,1600.00,2600.00,'monthly',0,3,1,5,57,0,9,'2024-11-06',1,'Botble\\JobBoard\\Models\\Account',0,0,0,'43.337652','-75.912986',0,0,1,1,'published','approved','2024-08-17 22:48:43','2024-09-18 03:10:55',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `jb_jobs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_jobs_categories`
--

DROP TABLE IF EXISTS `jb_jobs_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_jobs_categories` (
  `job_id` bigint unsigned NOT NULL,
  `category_id` bigint unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_jobs_categories`
--

LOCK TABLES `jb_jobs_categories` WRITE;
/*!40000 ALTER TABLE `jb_jobs_categories` DISABLE KEYS */;
INSERT INTO `jb_jobs_categories` VALUES (1,1),(1,2),(1,7),(2,1),(2,4),(2,7),(3,1),(3,3),(3,6),(4,1),(4,3),(4,6),(5,1),(5,4),(5,8),(6,1),(6,5),(6,6),(7,1),(7,5),(7,7),(8,1),(8,2),(8,6),(9,1),(9,4),(9,7),(10,1),(10,4),(10,7),(11,1),(11,4),(11,9),(12,1),(12,4),(12,9),(13,1),(13,4),(13,10),(14,1),(14,5),(14,7),(15,1),(15,4),(15,10),(16,1),(16,3),(16,9),(17,1),(17,3),(17,8),(18,1),(18,5),(18,10),(19,1),(19,4),(19,7),(20,1),(20,2),(20,6),(21,1),(21,2),(21,6),(22,1),(22,2),(22,7),(23,1),(23,2),(23,9),(24,1),(24,2),(24,9),(25,1),(25,3),(25,7),(26,1),(26,3),(26,6),(27,1),(27,4),(27,10),(28,1),(28,4),(28,7),(29,1),(29,4),(29,9),(30,1),(30,2),(30,10),(31,1),(31,3),(31,9),(32,1),(32,4),(32,9),(33,1),(33,4),(33,8),(34,1),(34,4),(34,9),(35,1),(35,2),(35,8),(36,1),(36,3),(36,7),(37,1),(37,5),(37,8),(38,1),(38,4),(38,7),(39,1),(39,5),(39,9),(40,1),(40,3),(40,7),(41,1),(41,4),(41,8),(42,1),(42,5),(42,9),(43,1),(43,2),(43,6),(44,1),(44,4),(44,8),(45,1),(45,3),(45,7),(46,1),(46,2),(46,10),(47,1),(47,3),(47,7),(48,1),(48,5),(48,6),(49,1),(49,5),(49,7),(50,1),(50,2),(50,8),(51,1),(51,3),(51,9);
/*!40000 ALTER TABLE `jb_jobs_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_jobs_skills`
--

DROP TABLE IF EXISTS `jb_jobs_skills`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_jobs_skills` (
  `job_id` bigint unsigned NOT NULL,
  `job_skill_id` bigint unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_jobs_skills`
--

LOCK TABLES `jb_jobs_skills` WRITE;
/*!40000 ALTER TABLE `jb_jobs_skills` DISABLE KEYS */;
INSERT INTO `jb_jobs_skills` VALUES (1,5),(2,6),(3,9),(4,5),(5,8),(6,6),(7,3),(8,5),(9,5),(10,8),(11,3),(12,1),(13,1),(14,1),(15,3),(16,7),(17,1),(18,9),(19,4),(20,2),(21,8),(22,2),(23,7),(24,5),(25,5),(26,4),(27,8),(28,5),(29,4),(30,5),(31,3),(32,5),(33,8),(34,4),(35,3),(36,8),(37,5),(38,1),(39,6),(40,3),(41,7),(42,3),(43,9),(44,8),(45,2),(46,4),(47,3),(48,1),(49,2),(50,3),(51,4);
/*!40000 ALTER TABLE `jb_jobs_skills` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_jobs_tags`
--

DROP TABLE IF EXISTS `jb_jobs_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_jobs_tags` (
  `job_id` bigint unsigned NOT NULL,
  `tag_id` bigint unsigned NOT NULL,
  PRIMARY KEY (`job_id`,`tag_id`),
  KEY `jb_jobs_tags_job_id_index` (`job_id`),
  KEY `jb_jobs_tags_tag_id_index` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_jobs_tags`
--

LOCK TABLES `jb_jobs_tags` WRITE;
/*!40000 ALTER TABLE `jb_jobs_tags` DISABLE KEYS */;
INSERT INTO `jb_jobs_tags` VALUES (1,2),(1,8),(2,1),(2,6),(3,3),(3,6),(4,4),(4,8),(5,1),(5,8),(6,1),(6,7),(7,3),(7,5),(8,4),(8,6),(9,4),(9,8),(10,1),(10,6),(11,3),(11,7),(12,1),(12,6),(13,1),(13,5),(14,3),(14,8),(15,1),(15,7),(16,4),(16,8),(17,3),(17,8),(18,4),(18,7),(19,2),(19,6),(20,2),(20,7),(21,3),(21,8),(22,1),(22,6),(23,3),(23,6),(24,3),(24,6),(25,3),(25,6),(26,4),(26,5),(27,2),(27,7),(28,1),(28,8),(29,4),(29,8),(30,4),(30,6),(31,3),(31,7),(32,4),(32,7),(33,2),(33,8),(34,2),(34,8),(35,1),(35,8),(36,2),(36,5),(37,1),(37,7),(38,4),(38,6),(39,1),(39,5),(40,3),(40,5),(41,2),(41,8),(42,3),(42,8),(43,3),(43,5),(44,3),(44,6),(45,3),(45,8),(46,3),(46,8),(47,1),(47,8),(48,3),(48,5),(49,4),(49,7),(50,3),(50,8),(51,2),(51,5);
/*!40000 ALTER TABLE `jb_jobs_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_jobs_translations`
--

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

--
-- Dumping data for table `jb_jobs_translations`
--

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

--
-- Table structure for table `jb_jobs_types`
--

DROP TABLE IF EXISTS `jb_jobs_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_jobs_types` (
  `job_id` bigint unsigned NOT NULL,
  `job_type_id` bigint unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_jobs_types`
--

LOCK TABLES `jb_jobs_types` WRITE;
/*!40000 ALTER TABLE `jb_jobs_types` DISABLE KEYS */;
INSERT INTO `jb_jobs_types` VALUES (1,5),(2,4),(3,1),(4,1),(5,2),(6,2),(7,4),(8,3),(9,2),(10,1),(11,3),(12,5),(13,2),(14,1),(15,3),(16,2),(17,2),(18,1),(19,2),(20,4),(21,1),(22,4),(23,3),(24,4),(25,1),(26,1),(27,5),(28,2),(29,1),(30,1),(31,3),(32,1),(33,4),(34,1),(35,5),(36,3),(37,4),(38,2),(39,2),(40,4),(41,1),(42,5),(43,5),(44,1),(45,3),(46,4),(47,3),(48,2),(49,2),(50,5),(51,2);
/*!40000 ALTER TABLE `jb_jobs_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_language_levels`
--

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

--
-- Dumping data for table `jb_language_levels`
--

LOCK TABLES `jb_language_levels` WRITE;
/*!40000 ALTER TABLE `jb_language_levels` DISABLE KEYS */;
INSERT INTO `jb_language_levels` VALUES (1,'Expert',0,0,'published','2024-09-18 03:10:54','2024-09-18 03:10:54'),(2,'Intermediate',0,0,'published','2024-09-18 03:10:54','2024-09-18 03:10:54'),(3,'Beginner',0,0,'published','2024-09-18 03:10:54','2024-09-18 03:10:54');
/*!40000 ALTER TABLE `jb_language_levels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_language_levels_translations`
--

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

--
-- Dumping data for table `jb_language_levels_translations`
--

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

--
-- Table structure for table `jb_major_subjects`
--

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

--
-- Dumping data for table `jb_major_subjects`
--

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

--
-- Table structure for table `jb_packages`
--

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

--
-- Dumping data for table `jb_packages`
--

LOCK TABLES `jb_packages` WRITE;
/*!40000 ALTER TABLE `jb_packages` DISABLE KEYS */;
INSERT INTO `jb_packages` VALUES (1,'Basic Package',0.00,1,0,1,0,1,0,'\"[[{\\\"key\\\":\\\"text\\\",\\\"value\\\":\\\"Basic listing\\\"}],[{\\\"key\\\":\\\"text\\\",\\\"value\\\":\\\"Standard support\\\"}],[{\\\"key\\\":\\\"text\\\",\\\"value\\\":\\\"No featured listing\\\"}]]\"','published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL),(2,'Standard Package',250.00,1,0,1,0,NULL,1,'\"[[{\\\"key\\\":\\\"text\\\",\\\"value\\\":\\\"Standard listing\\\"}],[{\\\"key\\\":\\\"text\\\",\\\"value\\\":\\\"Standard support\\\"}],[{\\\"key\\\":\\\"text\\\",\\\"value\\\":\\\"No featured listing\\\"}]]\"','published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL),(3,'Professional Package',1000.00,1,20,5,0,NULL,0,'\"[[{\\\"key\\\":\\\"text\\\",\\\"value\\\":\\\"Professional listing\\\"}],[{\\\"key\\\":\\\"text\\\",\\\"value\\\":\\\"Priority support\\\"}],[{\\\"key\\\":\\\"text\\\",\\\"value\\\":\\\"No featured listing\\\"}]]\"','published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL),(4,'Premium Package',5000.00,1,20,50,0,NULL,0,'\"[[{\\\"key\\\":\\\"text\\\",\\\"value\\\":\\\"Featured listing\\\"}],[{\\\"key\\\":\\\"text\\\",\\\"value\\\":\\\"Top of search results\\\"}],[{\\\"key\\\":\\\"text\\\",\\\"value\\\":\\\"Highlighted listing\\\"}],[{\\\"key\\\":\\\"text\\\",\\\"value\\\":\\\"Social media promotion\\\"}]]\"','published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL);
/*!40000 ALTER TABLE `jb_packages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_packages_translations`
--

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

--
-- Dumping data for table `jb_packages_translations`
--

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

--
-- Table structure for table `jb_reviews`
--

DROP TABLE IF EXISTS `jb_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_reviews` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `reviewable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `reviewable_id` bigint unsigned NOT NULL,
  `created_by_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_by_id` bigint unsigned NOT NULL,
  `star` double(8,2) NOT NULL,
  `review` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `reviews_unique` (`reviewable_id`,`reviewable_type`,`created_by_id`,`created_by_type`),
  KEY `jb_reviews_reviewable_type_reviewable_id_index` (`reviewable_type`,`reviewable_id`),
  KEY `jb_reviews_created_by_type_created_by_id_index` (`created_by_type`,`created_by_id`),
  KEY `jb_reviews_reviewable_id_reviewable_type_status_index` (`reviewable_id`,`reviewable_type`,`status`)
) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_reviews`
--

LOCK TABLES `jb_reviews` WRITE;
/*!40000 ALTER TABLE `jb_reviews` DISABLE KEYS */;
INSERT INTO `jb_reviews` VALUES (1,'Botble\\JobBoard\\Models\\Account',10,'Botble\\JobBoard\\Models\\Company',11,5.00,'Clean & perfect source code','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(2,'Botble\\JobBoard\\Models\\Company',5,'Botble\\JobBoard\\Models\\Account',87,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(3,'Botble\\JobBoard\\Models\\Account',17,'Botble\\JobBoard\\Models\\Company',3,1.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(4,'Botble\\JobBoard\\Models\\Company',20,'Botble\\JobBoard\\Models\\Account',95,4.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(5,'Botble\\JobBoard\\Models\\Account',88,'Botble\\JobBoard\\Models\\Company',11,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(6,'Botble\\JobBoard\\Models\\Account',33,'Botble\\JobBoard\\Models\\Company',6,1.00,'Good app, good backup service and support. Good documentation.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(7,'Botble\\JobBoard\\Models\\Account',44,'Botble\\JobBoard\\Models\\Company',12,1.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(8,'Botble\\JobBoard\\Models\\Company',14,'Botble\\JobBoard\\Models\\Account',30,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(9,'Botble\\JobBoard\\Models\\Account',80,'Botble\\JobBoard\\Models\\Company',13,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(10,'Botble\\JobBoard\\Models\\Account',99,'Botble\\JobBoard\\Models\\Company',1,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(11,'Botble\\JobBoard\\Models\\Company',13,'Botble\\JobBoard\\Models\\Account',99,1.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(12,'Botble\\JobBoard\\Models\\Company',20,'Botble\\JobBoard\\Models\\Account',46,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(13,'Botble\\JobBoard\\Models\\Account',63,'Botble\\JobBoard\\Models\\Company',10,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(14,'Botble\\JobBoard\\Models\\Company',15,'Botble\\JobBoard\\Models\\Account',48,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(15,'Botble\\JobBoard\\Models\\Account',43,'Botble\\JobBoard\\Models\\Company',9,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(16,'Botble\\JobBoard\\Models\\Company',18,'Botble\\JobBoard\\Models\\Account',23,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(17,'Botble\\JobBoard\\Models\\Account',21,'Botble\\JobBoard\\Models\\Company',14,5.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(18,'Botble\\JobBoard\\Models\\Company',5,'Botble\\JobBoard\\Models\\Account',33,4.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(19,'Botble\\JobBoard\\Models\\Company',12,'Botble\\JobBoard\\Models\\Account',64,2.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(20,'Botble\\JobBoard\\Models\\Account',63,'Botble\\JobBoard\\Models\\Company',11,1.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(21,'Botble\\JobBoard\\Models\\Account',72,'Botble\\JobBoard\\Models\\Company',10,4.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(22,'Botble\\JobBoard\\Models\\Company',5,'Botble\\JobBoard\\Models\\Account',16,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(23,'Botble\\JobBoard\\Models\\Company',9,'Botble\\JobBoard\\Models\\Account',42,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(24,'Botble\\JobBoard\\Models\\Company',20,'Botble\\JobBoard\\Models\\Account',93,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(25,'Botble\\JobBoard\\Models\\Company',6,'Botble\\JobBoard\\Models\\Account',82,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(26,'Botble\\JobBoard\\Models\\Account',4,'Botble\\JobBoard\\Models\\Company',14,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(27,'Botble\\JobBoard\\Models\\Account',46,'Botble\\JobBoard\\Models\\Company',10,1.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(28,'Botble\\JobBoard\\Models\\Company',9,'Botble\\JobBoard\\Models\\Account',30,1.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(29,'Botble\\JobBoard\\Models\\Company',1,'Botble\\JobBoard\\Models\\Account',50,2.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(30,'Botble\\JobBoard\\Models\\Company',11,'Botble\\JobBoard\\Models\\Account',69,4.00,'Clean & perfect source code','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(31,'Botble\\JobBoard\\Models\\Account',5,'Botble\\JobBoard\\Models\\Company',17,3.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(32,'Botble\\JobBoard\\Models\\Account',42,'Botble\\JobBoard\\Models\\Company',10,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(33,'Botble\\JobBoard\\Models\\Company',17,'Botble\\JobBoard\\Models\\Account',33,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(34,'Botble\\JobBoard\\Models\\Account',79,'Botble\\JobBoard\\Models\\Company',6,4.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(35,'Botble\\JobBoard\\Models\\Account',60,'Botble\\JobBoard\\Models\\Company',19,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(36,'Botble\\JobBoard\\Models\\Account',40,'Botble\\JobBoard\\Models\\Company',1,3.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(37,'Botble\\JobBoard\\Models\\Account',65,'Botble\\JobBoard\\Models\\Company',6,1.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(38,'Botble\\JobBoard\\Models\\Company',2,'Botble\\JobBoard\\Models\\Account',59,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(39,'Botble\\JobBoard\\Models\\Account',98,'Botble\\JobBoard\\Models\\Company',18,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(40,'Botble\\JobBoard\\Models\\Company',14,'Botble\\JobBoard\\Models\\Account',58,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(41,'Botble\\JobBoard\\Models\\Account',46,'Botble\\JobBoard\\Models\\Company',13,4.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(42,'Botble\\JobBoard\\Models\\Company',6,'Botble\\JobBoard\\Models\\Account',47,2.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(43,'Botble\\JobBoard\\Models\\Account',1,'Botble\\JobBoard\\Models\\Company',20,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(44,'Botble\\JobBoard\\Models\\Account',91,'Botble\\JobBoard\\Models\\Company',5,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(45,'Botble\\JobBoard\\Models\\Account',39,'Botble\\JobBoard\\Models\\Company',3,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(46,'Botble\\JobBoard\\Models\\Account',64,'Botble\\JobBoard\\Models\\Company',2,1.00,'Clean & perfect source code','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(47,'Botble\\JobBoard\\Models\\Company',17,'Botble\\JobBoard\\Models\\Account',7,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(48,'Botble\\JobBoard\\Models\\Company',20,'Botble\\JobBoard\\Models\\Account',52,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(49,'Botble\\JobBoard\\Models\\Account',89,'Botble\\JobBoard\\Models\\Company',12,3.00,'Clean & perfect source code','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(50,'Botble\\JobBoard\\Models\\Company',11,'Botble\\JobBoard\\Models\\Account',43,1.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(51,'Botble\\JobBoard\\Models\\Company',7,'Botble\\JobBoard\\Models\\Account',23,1.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(52,'Botble\\JobBoard\\Models\\Account',78,'Botble\\JobBoard\\Models\\Company',5,1.00,'Best ecommerce CMS online store!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(53,'Botble\\JobBoard\\Models\\Company',18,'Botble\\JobBoard\\Models\\Account',55,5.00,'Good app, good backup service and support. Good documentation.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(54,'Botble\\JobBoard\\Models\\Company',13,'Botble\\JobBoard\\Models\\Account',40,3.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(55,'Botble\\JobBoard\\Models\\Account',84,'Botble\\JobBoard\\Models\\Company',8,3.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(56,'Botble\\JobBoard\\Models\\Company',4,'Botble\\JobBoard\\Models\\Account',9,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(57,'Botble\\JobBoard\\Models\\Company',6,'Botble\\JobBoard\\Models\\Account',45,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(58,'Botble\\JobBoard\\Models\\Company',11,'Botble\\JobBoard\\Models\\Account',8,2.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(59,'Botble\\JobBoard\\Models\\Company',15,'Botble\\JobBoard\\Models\\Account',58,1.00,'Good app, good backup service and support. Good documentation.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(60,'Botble\\JobBoard\\Models\\Company',14,'Botble\\JobBoard\\Models\\Account',2,5.00,'Clean & perfect source code','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(61,'Botble\\JobBoard\\Models\\Account',55,'Botble\\JobBoard\\Models\\Company',7,1.00,'Best ecommerce CMS online store!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(62,'Botble\\JobBoard\\Models\\Company',1,'Botble\\JobBoard\\Models\\Account',79,1.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(63,'Botble\\JobBoard\\Models\\Company',3,'Botble\\JobBoard\\Models\\Account',57,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(64,'Botble\\JobBoard\\Models\\Account',45,'Botble\\JobBoard\\Models\\Company',1,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(65,'Botble\\JobBoard\\Models\\Account',13,'Botble\\JobBoard\\Models\\Company',9,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(66,'Botble\\JobBoard\\Models\\Company',7,'Botble\\JobBoard\\Models\\Account',52,1.00,'Best ecommerce CMS online store!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(67,'Botble\\JobBoard\\Models\\Company',6,'Botble\\JobBoard\\Models\\Account',7,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(68,'Botble\\JobBoard\\Models\\Account',67,'Botble\\JobBoard\\Models\\Company',11,2.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(69,'Botble\\JobBoard\\Models\\Company',20,'Botble\\JobBoard\\Models\\Account',99,1.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(70,'Botble\\JobBoard\\Models\\Account',27,'Botble\\JobBoard\\Models\\Company',11,5.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(71,'Botble\\JobBoard\\Models\\Company',14,'Botble\\JobBoard\\Models\\Account',72,3.00,'Best ecommerce CMS online store!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(72,'Botble\\JobBoard\\Models\\Company',13,'Botble\\JobBoard\\Models\\Account',63,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(73,'Botble\\JobBoard\\Models\\Company',20,'Botble\\JobBoard\\Models\\Account',7,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(74,'Botble\\JobBoard\\Models\\Account',47,'Botble\\JobBoard\\Models\\Company',16,5.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(75,'Botble\\JobBoard\\Models\\Account',36,'Botble\\JobBoard\\Models\\Company',7,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(76,'Botble\\JobBoard\\Models\\Company',10,'Botble\\JobBoard\\Models\\Account',7,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(77,'Botble\\JobBoard\\Models\\Account',100,'Botble\\JobBoard\\Models\\Company',13,5.00,'Good app, good backup service and support. Good documentation.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(78,'Botble\\JobBoard\\Models\\Account',95,'Botble\\JobBoard\\Models\\Company',12,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(79,'Botble\\JobBoard\\Models\\Account',72,'Botble\\JobBoard\\Models\\Company',3,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(80,'Botble\\JobBoard\\Models\\Company',9,'Botble\\JobBoard\\Models\\Account',77,5.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(81,'Botble\\JobBoard\\Models\\Account',40,'Botble\\JobBoard\\Models\\Company',16,3.00,'Best ecommerce CMS online store!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(82,'Botble\\JobBoard\\Models\\Company',8,'Botble\\JobBoard\\Models\\Account',20,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(83,'Botble\\JobBoard\\Models\\Company',1,'Botble\\JobBoard\\Models\\Account',100,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(84,'Botble\\JobBoard\\Models\\Company',13,'Botble\\JobBoard\\Models\\Account',55,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(85,'Botble\\JobBoard\\Models\\Company',17,'Botble\\JobBoard\\Models\\Account',10,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(86,'Botble\\JobBoard\\Models\\Account',52,'Botble\\JobBoard\\Models\\Company',14,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(87,'Botble\\JobBoard\\Models\\Company',8,'Botble\\JobBoard\\Models\\Account',58,4.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(88,'Botble\\JobBoard\\Models\\Company',11,'Botble\\JobBoard\\Models\\Account',59,5.00,'Good app, good backup service and support. Good documentation.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(89,'Botble\\JobBoard\\Models\\Company',18,'Botble\\JobBoard\\Models\\Account',81,1.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(90,'Botble\\JobBoard\\Models\\Company',12,'Botble\\JobBoard\\Models\\Account',49,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(91,'Botble\\JobBoard\\Models\\Company',9,'Botble\\JobBoard\\Models\\Account',3,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(92,'Botble\\JobBoard\\Models\\Company',18,'Botble\\JobBoard\\Models\\Account',72,4.00,'Best ecommerce CMS online store!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(93,'Botble\\JobBoard\\Models\\Account',17,'Botble\\JobBoard\\Models\\Company',13,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(94,'Botble\\JobBoard\\Models\\Account',52,'Botble\\JobBoard\\Models\\Company',4,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(95,'Botble\\JobBoard\\Models\\Account',41,'Botble\\JobBoard\\Models\\Company',2,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(96,'Botble\\JobBoard\\Models\\Company',8,'Botble\\JobBoard\\Models\\Account',83,4.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(97,'Botble\\JobBoard\\Models\\Company',1,'Botble\\JobBoard\\Models\\Account',72,5.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(98,'Botble\\JobBoard\\Models\\Account',14,'Botble\\JobBoard\\Models\\Company',11,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(99,'Botble\\JobBoard\\Models\\Account',98,'Botble\\JobBoard\\Models\\Company',13,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(100,'Botble\\JobBoard\\Models\\Company',3,'Botble\\JobBoard\\Models\\Account',46,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-09-18 03:11:27','2024-09-18 03:11:27');
/*!40000 ALTER TABLE `jb_reviews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_saved_jobs`
--

DROP TABLE IF EXISTS `jb_saved_jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jb_saved_jobs` (
  `account_id` bigint unsigned NOT NULL,
  `job_id` bigint unsigned NOT NULL,
  PRIMARY KEY (`account_id`,`job_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jb_saved_jobs`
--

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

--
-- Table structure for table `jb_tags`
--

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

--
-- Dumping data for table `jb_tags`
--

LOCK TABLES `jb_tags` WRITE;
/*!40000 ALTER TABLE `jb_tags` DISABLE KEYS */;
INSERT INTO `jb_tags` VALUES (1,'Illustrator','','published','2024-09-18 03:10:54','2024-09-18 03:10:54'),(2,'Adobe XD','','published','2024-09-18 03:10:54','2024-09-18 03:10:54'),(3,'Figma','','published','2024-09-18 03:10:54','2024-09-18 03:10:54'),(4,'Sketch','','published','2024-09-18 03:10:54','2024-09-18 03:10:54'),(5,'Lunacy','','published','2024-09-18 03:10:54','2024-09-18 03:10:54'),(6,'PHP','','published','2024-09-18 03:10:54','2024-09-18 03:10:54'),(7,'Python','','published','2024-09-18 03:10:54','2024-09-18 03:10:54'),(8,'JavaScript','','published','2024-09-18 03:10:54','2024-09-18 03:10:54');
/*!40000 ALTER TABLE `jb_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jb_tags_translations`
--

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

--
-- Dumping data for table `jb_tags_translations`
--

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

--
-- Table structure for table `jb_transactions`
--

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

--
-- Dumping data for table `jb_transactions`
--

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

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

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

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

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

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

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

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

LOCK TABLES `language_meta` WRITE;
/*!40000 ALTER TABLE `language_meta` DISABLE KEYS */;
INSERT INTO `language_meta` VALUES (1,'en_US','c262dcf55269ed5da6e8189dfca9703e',1,'Botble\\Menu\\Models\\MenuLocation'),(2,'en_US','3a69c01008f15cb6ca7bdb48735bdad3',1,'Botble\\Menu\\Models\\Menu'),(3,'en_US','e3cb9a1ef5daf64b99d41dbfd2ee35c9',2,'Botble\\Menu\\Models\\Menu'),(4,'en_US','0994248752e4a65cb878ba1b3835c9dd',3,'Botble\\Menu\\Models\\Menu'),(5,'en_US','46d5b92663c5c2530b1961375514ec3d',4,'Botble\\Menu\\Models\\Menu'),(6,'en_US','03f7204b8aa09c26b2b39ddcfe276c02',5,'Botble\\Menu\\Models\\Menu');
/*!40000 ALTER TABLE `language_meta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

DROP TABLE IF EXISTS `media_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_files` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `alt` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `folder_id` bigint unsigned NOT NULL DEFAULT '0',
  `mime_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `size` int NOT NULL,
  `url` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `options` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `visibility` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'public',
  PRIMARY KEY (`id`),
  KEY `media_files_user_id_index` (`user_id`),
  KEY `media_files_index` (`folder_id`,`user_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=202 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 (41,0,'acer','acer',3,'image/png',285,'our-partners/acer.png','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(42,0,'asus','asus',3,'image/png',314,'our-partners/asus.png','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(43,0,'dell','dell',3,'image/png',296,'our-partners/dell.png','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(44,0,'microsoft','microsoft',3,'image/png',287,'our-partners/microsoft.png','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(45,0,'nokia','nokia',3,'image/png',308,'our-partners/nokia.png','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(46,0,'1','1',4,'image/jpeg',9803,'news/1.jpg','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(47,0,'10','10',4,'image/jpeg',9803,'news/10.jpg','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(48,0,'11','11',4,'image/jpeg',9803,'news/11.jpg','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(49,0,'12','12',4,'image/jpeg',9803,'news/12.jpg','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(50,0,'13','13',4,'image/jpeg',9803,'news/13.jpg','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(51,0,'14','14',4,'image/jpeg',9803,'news/14.jpg','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(52,0,'15','15',4,'image/jpeg',9803,'news/15.jpg','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(53,0,'16','16',4,'image/jpeg',9803,'news/16.jpg','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(54,0,'2','2',4,'image/jpeg',9803,'news/2.jpg','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(55,0,'3','3',4,'image/jpeg',9803,'news/3.jpg','[]','2024-09-18 03:10:45','2024-09-18 03:10:45',NULL,'public'),(56,0,'4','4',4,'image/jpeg',9803,'news/4.jpg','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(57,0,'5','5',4,'image/jpeg',9803,'news/5.jpg','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(58,0,'6','6',4,'image/jpeg',9803,'news/6.jpg','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(59,0,'7','7',4,'image/jpeg',9803,'news/7.jpg','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(60,0,'8','8',4,'image/jpeg',9803,'news/8.jpg','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(61,0,'9','9',4,'image/jpeg',9803,'news/9.jpg','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(62,0,'cover-image1','cover-image1',4,'image/png',9803,'news/cover-image1.png','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(63,0,'cover-image2','cover-image2',4,'image/png',9803,'news/cover-image2.png','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(64,0,'cover-image3','cover-image3',4,'image/png',9803,'news/cover-image3.png','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(65,0,'img-news1','img-news1',4,'image/png',9803,'news/img-news1.png','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(66,0,'img-news2','img-news2',4,'image/png',9803,'news/img-news2.png','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(67,0,'img-news3','img-news3',4,'image/png',9803,'news/img-news3.png','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(68,0,'1','1',5,'image/jpeg',6977,'galleries/1.jpg','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(69,0,'10','10',5,'image/jpeg',9803,'galleries/10.jpg','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(70,0,'2','2',5,'image/jpeg',6977,'galleries/2.jpg','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(71,0,'3','3',5,'image/jpeg',6977,'galleries/3.jpg','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(72,0,'4','4',5,'image/jpeg',6977,'galleries/4.jpg','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(73,0,'5','5',5,'image/jpeg',6977,'galleries/5.jpg','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(74,0,'6','6',5,'image/jpeg',6977,'galleries/6.jpg','[]','2024-09-18 03:10:46','2024-09-18 03:10:46',NULL,'public'),(75,0,'7','7',5,'image/jpeg',6977,'galleries/7.jpg','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(76,0,'8','8',5,'image/jpeg',9803,'galleries/8.jpg','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(77,0,'9','9',5,'image/jpeg',9803,'galleries/9.jpg','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(78,0,'widget-banner','widget-banner',6,'image/png',11079,'widgets/widget-banner.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(79,0,'404','404',7,'image/png',10947,'general/404.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(80,0,'android','android',7,'image/png',477,'general/android.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(81,0,'app-store','app-store',7,'image/png',477,'general/app-store.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(82,0,'content','content',7,'image/png',1705,'general/content.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(83,0,'cover-image','cover-image',7,'image/png',8992,'general/cover-image.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(84,0,'customer','customer',7,'image/png',2794,'general/customer.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(85,0,'favicon','favicon',7,'image/png',709,'general/favicon.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(86,0,'finance','finance',7,'image/png',2483,'general/finance.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(87,0,'human','human',7,'image/png',2401,'general/human.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(88,0,'img-about2','img-about2',7,'image/png',36911,'general/img-about2.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(89,0,'lightning','lightning',7,'image/png',2768,'general/lightning.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(90,0,'logo-company','logo-company',7,'image/png',3164,'general/logo-company.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(91,0,'logo-light','logo-light',7,'image/png',2290,'general/logo-light.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(92,0,'logo','logo',7,'image/png',2516,'general/logo.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(93,0,'management','management',7,'image/png',1967,'general/management.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(94,0,'marketing','marketing',7,'image/png',2202,'general/marketing.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(95,0,'newsletter-background-image','newsletter-background-image',7,'image/png',9830,'general/newsletter-background-image.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(96,0,'newsletter-image-left','newsletter-image-left',7,'image/png',4177,'general/newsletter-image-left.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(97,0,'newsletter-image-right','newsletter-image-right',7,'image/png',2886,'general/newsletter-image-right.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(98,0,'research','research',7,'image/png',3200,'general/research.png','[]','2024-09-18 03:10:47','2024-09-18 03:10:47',NULL,'public'),(99,0,'retail','retail',7,'image/png',2827,'general/retail.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(100,0,'security','security',7,'image/png',2952,'general/security.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(101,0,'img-1','img-1',8,'image/png',2377,'authentication/img-1.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(102,0,'img-2','img-2',8,'image/png',5009,'authentication/img-2.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(103,0,'background-cover-candidate','background-cover-candidate',9,'image/png',436821,'pages/background-cover-candidate.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(104,0,'background_breadcrumb','background_breadcrumb',9,'image/png',6111,'pages/background-breadcrumb.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(105,0,'banner-section-search-box','banner-section-search-box',9,'image/png',20501,'pages/banner-section-search-box.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(106,0,'banner1','banner1',9,'image/png',7381,'pages/banner1.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(107,0,'banner2','banner2',9,'image/png',4920,'pages/banner2.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(108,0,'banner3','banner3',9,'image/png',2472,'pages/banner3.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(109,0,'banner4','banner4',9,'image/png',1952,'pages/banner4.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(110,0,'banner5','banner5',9,'image/png',1545,'pages/banner5.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(111,0,'banner6','banner6',9,'image/png',1609,'pages/banner6.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(112,0,'bg-breadcrumb','bg-breadcrumb',9,'image/png',14250,'pages/bg-breadcrumb.png','[]','2024-09-18 03:10:48','2024-09-18 03:10:48',NULL,'public'),(113,0,'bg-cat','bg-cat',9,'image/png',60674,'pages/bg-cat.png','[]','2024-09-18 03:10:49','2024-09-18 03:10:49',NULL,'public'),(114,0,'bg-left-hiring','bg-left-hiring',9,'image/png',1631,'pages/bg-left-hiring.png','[]','2024-09-18 03:10:49','2024-09-18 03:10:49',NULL,'public'),(115,0,'bg-newsletter','bg-newsletter',9,'image/png',4587,'pages/bg-newsletter.png','[]','2024-09-18 03:10:49','2024-09-18 03:10:49',NULL,'public'),(116,0,'bg-right-hiring','bg-right-hiring',9,'image/png',3074,'pages/bg-right-hiring.png','[]','2024-09-18 03:10:49','2024-09-18 03:10:49',NULL,'public'),(117,0,'controlcard','controlcard',9,'image/png',7404,'pages/controlcard.png','[]','2024-09-18 03:10:49','2024-09-18 03:10:49',NULL,'public'),(118,0,'home-page-4-banner','home-page-4-banner',9,'image/png',7596,'pages/home-page-4-banner.png','[]','2024-09-18 03:10:49','2024-09-18 03:10:49',NULL,'public'),(119,0,'icon-bottom-banner','icon-bottom-banner',9,'image/png',304,'pages/icon-bottom-banner.png','[]','2024-09-18 03:10:49','2024-09-18 03:10:49',NULL,'public'),(120,0,'icon-top-banner','icon-top-banner',9,'image/png',414,'pages/icon-top-banner.png','[]','2024-09-18 03:10:49','2024-09-18 03:10:49',NULL,'public'),(121,0,'img-banner','img-banner',9,'image/png',10542,'pages/img-banner.png','[]','2024-09-18 03:10:49','2024-09-18 03:10:49',NULL,'public'),(122,0,'img-chart','img-chart',9,'image/png',7549,'pages/img-chart.png','[]','2024-09-18 03:10:49','2024-09-18 03:10:49',NULL,'public'),(123,0,'img-job-search','img-job-search',9,'image/png',35569,'pages/img-job-search.png','[]','2024-09-18 03:10:49','2024-09-18 03:10:49',NULL,'public'),(124,0,'img-profile','img-profile',9,'image/png',9177,'pages/img-profile.png','[]','2024-09-18 03:10:49','2024-09-18 03:10:49',NULL,'public'),(125,0,'img-single','img-single',9,'image/png',13060,'pages/img-single.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(126,0,'img1','img1',9,'image/png',10246,'pages/img1.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(127,0,'job-tools','job-tools',9,'image/png',2216,'pages/job-tools.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(128,0,'left-job-head','left-job-head',9,'image/png',14956,'pages/left-job-head.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(129,0,'newsletter-left','newsletter-left',9,'image/png',4177,'pages/newsletter-left.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(130,0,'newsletter-right','newsletter-right',9,'image/png',2886,'pages/newsletter-right.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(131,0,'planning-job','planning-job',9,'image/png',1623,'pages/planning-job.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(132,0,'right-job-head','right-job-head',9,'image/png',10955,'pages/right-job-head.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(133,0,'facebook','facebook',10,'image/png',796,'socials/facebook.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(134,0,'linkedin','linkedin',10,'image/png',802,'socials/linkedin.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(135,0,'twitter','twitter',10,'image/png',1025,'socials/twitter.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(136,0,'location1','location1',11,'image/png',5149,'locations/location1.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(137,0,'location2','location2',11,'image/png',5921,'locations/location2.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(138,0,'location3','location3',11,'image/png',5276,'locations/location3.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(139,0,'location4','location4',11,'image/png',5259,'locations/location4.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(140,0,'location5','location5',11,'image/png',5140,'locations/location5.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(141,0,'location6','location6',11,'image/png',4891,'locations/location6.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(142,0,'1','1',12,'image/png',407,'job-categories/1.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(143,0,'10','10',12,'image/png',407,'job-categories/10.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(144,0,'11','11',12,'image/png',407,'job-categories/11.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(145,0,'12','12',12,'image/png',407,'job-categories/12.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(146,0,'13','13',12,'image/png',407,'job-categories/13.png','[]','2024-09-18 03:10:50','2024-09-18 03:10:50',NULL,'public'),(147,0,'14','14',12,'image/png',407,'job-categories/14.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(148,0,'15','15',12,'image/png',407,'job-categories/15.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(149,0,'16','16',12,'image/png',407,'job-categories/16.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(150,0,'17','17',12,'image/png',407,'job-categories/17.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(151,0,'18','18',12,'image/png',407,'job-categories/18.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(152,0,'19','19',12,'image/png',407,'job-categories/19.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(153,0,'2','2',12,'image/png',407,'job-categories/2.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(154,0,'3','3',12,'image/png',407,'job-categories/3.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(155,0,'4','4',12,'image/png',407,'job-categories/4.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(156,0,'5','5',12,'image/png',407,'job-categories/5.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(157,0,'6','6',12,'image/png',407,'job-categories/6.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(158,0,'7','7',12,'image/png',407,'job-categories/7.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(159,0,'8','8',12,'image/png',407,'job-categories/8.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(160,0,'9','9',12,'image/png',407,'job-categories/9.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(161,0,'img-cover-1','img-cover-1',12,'image/png',33918,'job-categories/img-cover-1.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(162,0,'img-cover-2','img-cover-2',12,'image/png',33918,'job-categories/img-cover-2.png','[]','2024-09-18 03:10:51','2024-09-18 03:10:51',NULL,'public'),(163,0,'img-cover-3','img-cover-3',12,'image/png',33918,'job-categories/img-cover-3.png','[]','2024-09-18 03:10:52','2024-09-18 03:10:52',NULL,'public'),(164,0,'1','1',13,'image/png',598,'companies/1.png','[]','2024-09-18 03:10:53','2024-09-18 03:10:53',NULL,'public'),(165,0,'2','2',13,'image/png',598,'companies/2.png','[]','2024-09-18 03:10:53','2024-09-18 03:10:53',NULL,'public'),(166,0,'3','3',13,'image/png',598,'companies/3.png','[]','2024-09-18 03:10:53','2024-09-18 03:10:53',NULL,'public'),(167,0,'4','4',13,'image/png',598,'companies/4.png','[]','2024-09-18 03:10:53','2024-09-18 03:10:53',NULL,'public'),(168,0,'5','5',13,'image/png',598,'companies/5.png','[]','2024-09-18 03:10:53','2024-09-18 03:10:53',NULL,'public'),(169,0,'6','6',13,'image/png',598,'companies/6.png','[]','2024-09-18 03:10:53','2024-09-18 03:10:53',NULL,'public'),(170,0,'7','7',13,'image/png',598,'companies/7.png','[]','2024-09-18 03:10:53','2024-09-18 03:10:53',NULL,'public'),(171,0,'8','8',13,'image/png',598,'companies/8.png','[]','2024-09-18 03:10:53','2024-09-18 03:10:53',NULL,'public'),(172,0,'9','9',13,'image/png',598,'companies/9.png','[]','2024-09-18 03:10:53','2024-09-18 03:10:53',NULL,'public'),(173,0,'company-cover-image','company-cover-image',13,'image/png',8992,'companies/company-cover-image.png','[]','2024-09-18 03:10:53','2024-09-18 03:10:53',NULL,'public'),(174,0,'img1','img1',14,'image/png',5706,'jobs/img1.png','[]','2024-09-18 03:10:54','2024-09-18 03:10:54',NULL,'public'),(175,0,'img2','img2',14,'image/png',5706,'jobs/img2.png','[]','2024-09-18 03:10:54','2024-09-18 03:10:54',NULL,'public'),(176,0,'img3','img3',14,'image/png',5706,'jobs/img3.png','[]','2024-09-18 03:10:54','2024-09-18 03:10:54',NULL,'public'),(177,0,'img4','img4',14,'image/png',5706,'jobs/img4.png','[]','2024-09-18 03:10:54','2024-09-18 03:10:54',NULL,'public'),(178,0,'img5','img5',14,'image/png',5706,'jobs/img5.png','[]','2024-09-18 03:10:54','2024-09-18 03:10:54',NULL,'public'),(179,0,'img6','img6',14,'image/png',5706,'jobs/img6.png','[]','2024-09-18 03:10:54','2024-09-18 03:10:54',NULL,'public'),(180,0,'img7','img7',14,'image/png',5706,'jobs/img7.png','[]','2024-09-18 03:10:54','2024-09-18 03:10:54',NULL,'public'),(181,0,'img8','img8',14,'image/png',5706,'jobs/img8.png','[]','2024-09-18 03:10:54','2024-09-18 03:10:54',NULL,'public'),(182,0,'img9','img9',14,'image/png',5706,'jobs/img9.png','[]','2024-09-18 03:10:54','2024-09-18 03:10:54',NULL,'public'),(183,0,'01','01',15,'application/pdf',43496,'resume/01.pdf','[]','2024-09-18 03:10:55','2024-09-18 03:10:55',NULL,'public'),(184,0,'1','1',16,'image/png',3030,'avatars/1.png','[]','2024-09-18 03:10:55','2024-09-18 03:10:55',NULL,'public'),(185,0,'2','2',16,'image/png',2754,'avatars/2.png','[]','2024-09-18 03:10:55','2024-09-18 03:10:55',NULL,'public'),(186,0,'3','3',16,'image/png',2703,'avatars/3.png','[]','2024-09-18 03:10:55','2024-09-18 03:10:55',NULL,'public'),(187,0,'1','1',17,'image/png',395380,'covers/1.png','[]','2024-09-18 03:10:55','2024-09-18 03:10:55',NULL,'public'),(188,0,'2','2',17,'image/png',1308067,'covers/2.png','[]','2024-09-18 03:10:56','2024-09-18 03:10:56',NULL,'public'),(189,0,'3','3',17,'image/png',301502,'covers/3.png','[]','2024-09-18 03:10:56','2024-09-18 03:10:56',NULL,'public'),(190,0,'1','1',18,'image/png',4294,'teams/1.png','[]','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,'public'),(191,0,'2','2',18,'image/png',4294,'teams/2.png','[]','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,'public'),(192,0,'3','3',18,'image/png',4294,'teams/3.png','[]','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,'public'),(193,0,'4','4',18,'image/png',4294,'teams/4.png','[]','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,'public'),(194,0,'5','5',18,'image/png',4294,'teams/5.png','[]','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,'public'),(195,0,'6','6',18,'image/png',4294,'teams/6.png','[]','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,'public'),(196,0,'7','7',18,'image/png',4294,'teams/7.png','[]','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,'public'),(197,0,'8','8',18,'image/png',4294,'teams/8.png','[]','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,'public'),(198,0,'1','1',19,'image/png',3943,'testimonials/1.png','[]','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,'public'),(199,0,'2','2',19,'image/png',3943,'testimonials/2.png','[]','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,'public'),(200,0,'3','3',19,'image/png',3943,'testimonials/3.png','[]','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,'public'),(201,0,'4','4',19,'image/png',3943,'testimonials/4.png','[]','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,'public');
/*!40000 ALTER TABLE `media_files` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `media_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_folders` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `parent_id` bigint unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `media_folders_user_id_index` (`user_id`),
  KEY `media_folders_index` (`parent_id`,`user_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=20 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 (3,0,'our-partners',NULL,'our-partners',0,'2024-09-18 03:10:45','2024-09-18 03:10:45',NULL),(4,0,'news',NULL,'news',0,'2024-09-18 03:10:45','2024-09-18 03:10:45',NULL),(5,0,'galleries',NULL,'galleries',0,'2024-09-18 03:10:46','2024-09-18 03:10:46',NULL),(6,0,'widgets',NULL,'widgets',0,'2024-09-18 03:10:47','2024-09-18 03:10:47',NULL),(7,0,'general',NULL,'general',0,'2024-09-18 03:10:47','2024-09-18 03:10:47',NULL),(8,0,'authentication',NULL,'authentication',0,'2024-09-18 03:10:48','2024-09-18 03:10:48',NULL),(9,0,'pages',NULL,'pages',0,'2024-09-18 03:10:48','2024-09-18 03:10:48',NULL),(10,0,'socials',NULL,'socials',0,'2024-09-18 03:10:50','2024-09-18 03:10:50',NULL),(11,0,'locations',NULL,'locations',0,'2024-09-18 03:10:50','2024-09-18 03:10:50',NULL),(12,0,'job-categories',NULL,'job-categories',0,'2024-09-18 03:10:50','2024-09-18 03:10:50',NULL),(13,0,'companies',NULL,'companies',0,'2024-09-18 03:10:53','2024-09-18 03:10:53',NULL),(14,0,'jobs',NULL,'jobs',0,'2024-09-18 03:10:54','2024-09-18 03:10:54',NULL),(15,0,'resume',NULL,'resume',0,'2024-09-18 03:10:55','2024-09-18 03:10:55',NULL),(16,0,'avatars',NULL,'avatars',0,'2024-09-18 03:10:55','2024-09-18 03:10:55',NULL),(17,0,'covers',NULL,'covers',0,'2024-09-18 03:10:55','2024-09-18 03:10:55',NULL),(18,0,'teams',NULL,'teams',0,'2024-09-18 03:11:27','2024-09-18 03:11:27',NULL),(19,0,'testimonials',NULL,'testimonials',0,'2024-09-18 03:11:27','2024-09-18 03:11:27',NULL);
/*!40000 ALTER TABLE `media_folders` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

DROP TABLE IF EXISTS `menu_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menu_locations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `menu_id` bigint unsigned NOT NULL,
  `location` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `menu_locations_menu_id_created_at_index` (`menu_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=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','2024-09-18 03:11:27','2024-09-18 03:11:27');
/*!40000 ALTER TABLE `menu_locations` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `menu_nodes` WRITE;
/*!40000 ALTER TABLE `menu_nodes` DISABLE KEYS */;
INSERT INTO `menu_nodes` VALUES (1,1,0,NULL,NULL,'/',NULL,0,'Home',NULL,'_self',1,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(2,1,1,1,'Botble\\Page\\Models\\Page','/homepage-1','fi fi-rr-home',1,'Home 1',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(3,1,1,2,'Botble\\Page\\Models\\Page','/homepage-2','fi fi-rr-home',2,'Home 2',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(4,1,1,3,'Botble\\Page\\Models\\Page','/homepage-3','fi fi-rr-home',3,'Home 3',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(5,1,1,4,'Botble\\Page\\Models\\Page','/homepage-4','fi fi-rr-home',4,'Home 4',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(6,1,1,5,'Botble\\Page\\Models\\Page','/homepage-5','fi fi-rr-home',5,'Home 5',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(7,1,1,6,'Botble\\Page\\Models\\Page','/homepage-6','fi fi-rr-home',6,'Home 6',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(8,1,0,8,'Botble\\Page\\Models\\Page','/companies',NULL,0,'Find a Job',NULL,'_self',1,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(9,1,8,NULL,NULL,'/jobs?layout=grid','fi fi-rr-briefcase',0,'Jobs Grid',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(10,1,8,NULL,NULL,'/jobs','fi fi-rr-briefcase',0,'Jobs List',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(11,1,8,NULL,NULL,'','fi fi-rr-briefcase',0,'Job Details',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(12,1,8,NULL,NULL,'','fi fi-rr-briefcase',0,'Job External',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(13,1,8,NULL,NULL,'','fi fi-rr-briefcase',0,'Job Hide Company',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(14,1,0,8,'Botble\\Page\\Models\\Page','/companies',NULL,0,'Companies',NULL,'_self',1,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(15,1,14,8,'Botble\\Page\\Models\\Page','/companies','fi fi-rr-briefcase',0,'Companies',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(16,1,14,NULL,NULL,'','fi fi-rr-info',0,'Company Details',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(17,1,0,9,'Botble\\Page\\Models\\Page','/candidates',NULL,0,'Candidates',NULL,'_self',1,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(18,1,17,9,'Botble\\Page\\Models\\Page','/candidates','fi fi-rr-user',0,'Candidates Grid',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(19,1,17,NULL,NULL,'','fi fi-rr-info',0,'Candidate Details',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(20,1,0,NULL,NULL,'#',NULL,0,'Pages',NULL,'_self',1,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(21,1,20,10,'Botble\\Page\\Models\\Page','/about-us','fi fi-rr-star',0,'About Us',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(22,1,20,11,'Botble\\Page\\Models\\Page','/pricing-plan','fi fi-rr-database',0,'Pricing Plan',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(23,1,20,10,'Botble\\Page\\Models\\Page','/about-us','fi fi-rr-paper-plane',0,'Contact Us',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(24,1,20,NULL,NULL,'/register','fi fi-rr-user-add',0,'Register',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(25,1,20,NULL,NULL,'/login','fi fi-rr-fingerprint',0,'Sign in',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(26,1,20,NULL,NULL,'/password/request','fi fi-rr-settings',0,'Reset Password',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(27,1,0,13,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Blog',NULL,'_self',1,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(28,1,27,13,'Botble\\Page\\Models\\Page','/blog','fi fi-rr-edit',0,'Blog Grid',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(29,1,27,NULL,NULL,'','fi fi-rr-document-signed',0,'Blog Single',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(30,2,0,10,'Botble\\Page\\Models\\Page','/about-us',NULL,0,'About Us',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(31,2,0,NULL,NULL,'#',NULL,0,'Our Team',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(32,2,0,NULL,NULL,'#',NULL,0,'Products',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(33,2,0,12,'Botble\\Page\\Models\\Page','/contact',NULL,0,'Contact',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(34,3,0,10,'Botble\\Page\\Models\\Page','/about-us',NULL,0,'Feature',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(35,3,0,11,'Botble\\Page\\Models\\Page','/pricing-plan',NULL,0,'Pricing',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(36,3,0,NULL,NULL,'#',NULL,0,'Credit',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(37,3,0,15,'Botble\\Page\\Models\\Page','/faqs',NULL,0,'FAQ',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(38,4,0,NULL,NULL,'#',NULL,0,'iOS',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(39,4,0,NULL,NULL,'#',NULL,0,'Android',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(40,4,0,NULL,NULL,'#',NULL,0,'Microsoft',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(41,4,0,NULL,NULL,'#',NULL,0,'Desktop',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(42,5,0,14,'Botble\\Page\\Models\\Page','/cookie-policy',NULL,0,'Cookie Policy',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(43,5,0,17,'Botble\\Page\\Models\\Page','/terms',NULL,0,'Terms',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27'),(44,5,0,15,'Botble\\Page\\Models\\Page','/faqs',NULL,0,'FAQ',NULL,'_self',0,'2024-09-18 03:11:27','2024-09-18 03:11:27');
/*!40000 ALTER TABLE `menu_nodes` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `menus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menus` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `menus_slug_unique` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=6 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','2024-09-18 03:11:27','2024-09-18 03:11:27'),(2,'Resources','resources','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(3,'Community','community','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(4,'Quick links','quick-links','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(5,'More','more','published','2024-09-18 03:11:27','2024-09-18 03:11:27');
/*!40000 ALTER TABLE `menus` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `meta_boxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `meta_boxes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `meta_key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_value` text COLLATE utf8mb4_unicode_ci,
  `reference_id` bigint unsigned NOT NULL,
  `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_boxes_reference_id_index` (`reference_id`)
) ENGINE=InnoDB AUTO_INCREMENT=197 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,'background_breadcrumb','[\"pages\\/background-breadcrumb.png\"]',10,'Botble\\Page\\Models\\Page','2024-09-18 03:10:45','2024-09-18 03:10:45'),(2,'background_breadcrumb','[\"pages\\/background-breadcrumb.png\"]',12,'Botble\\Page\\Models\\Page','2024-09-18 03:10:45','2024-09-18 03:10:45'),(3,'cover_image','[\"news\\/cover-image1.png\"]',1,'Botble\\Blog\\Models\\Post','2024-09-18 03:10:46','2024-09-18 03:10:46'),(4,'cover_image','[\"news\\/cover-image2.png\"]',2,'Botble\\Blog\\Models\\Post','2024-09-18 03:10:46','2024-09-18 03:10:46'),(5,'cover_image','[\"news\\/cover-image3.png\"]',3,'Botble\\Blog\\Models\\Post','2024-09-18 03:10:46','2024-09-18 03:10:46'),(6,'icon_image','[\"general\\/content.png\"]',1,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(7,'job_category_image','[\"job-categories\\/img-cover-1.png\"]',1,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(8,'icon_image','[\"general\\/research.png\"]',2,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(9,'job_category_image','[\"job-categories\\/img-cover-1.png\"]',2,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(10,'icon_image','[\"general\\/marketing.png\"]',3,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(11,'job_category_image','[\"job-categories\\/img-cover-3.png\"]',3,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(12,'icon_image','[\"general\\/customer.png\"]',4,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(13,'job_category_image','[\"job-categories\\/img-cover-2.png\"]',4,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(14,'icon_image','[\"general\\/finance.png\"]',5,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(15,'job_category_image','[\"job-categories\\/img-cover-2.png\"]',5,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(16,'icon_image','[\"general\\/lightning.png\"]',6,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(17,'job_category_image','[\"job-categories\\/img-cover-3.png\"]',6,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(18,'icon_image','[\"general\\/human.png\"]',7,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(19,'job_category_image','[\"job-categories\\/img-cover-3.png\"]',7,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(20,'icon_image','[\"general\\/management.png\"]',8,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(21,'job_category_image','[\"job-categories\\/img-cover-3.png\"]',8,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(22,'icon_image','[\"general\\/retail.png\"]',9,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(23,'job_category_image','[\"job-categories\\/img-cover-2.png\"]',9,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(24,'icon_image','[\"general\\/security.png\"]',10,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(25,'job_category_image','[\"job-categories\\/img-cover-1.png\"]',10,'Botble\\JobBoard\\Models\\Category','2024-09-18 03:10:52','2024-09-18 03:10:52'),(26,'cover_image','[\"companies\\/company-cover-image.png\"]',1,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(27,'cover_image','[\"companies\\/company-cover-image.png\"]',2,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(28,'cover_image','[\"companies\\/company-cover-image.png\"]',3,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(29,'cover_image','[\"companies\\/company-cover-image.png\"]',4,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(30,'cover_image','[\"companies\\/company-cover-image.png\"]',5,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(31,'cover_image','[\"companies\\/company-cover-image.png\"]',6,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(32,'cover_image','[\"companies\\/company-cover-image.png\"]',7,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(33,'cover_image','[\"companies\\/company-cover-image.png\"]',8,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(34,'cover_image','[\"companies\\/company-cover-image.png\"]',9,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(35,'cover_image','[\"companies\\/company-cover-image.png\"]',10,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(36,'cover_image','[\"companies\\/company-cover-image.png\"]',11,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(37,'cover_image','[\"companies\\/company-cover-image.png\"]',12,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(38,'cover_image','[\"companies\\/company-cover-image.png\"]',13,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(39,'cover_image','[\"companies\\/company-cover-image.png\"]',14,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(40,'cover_image','[\"companies\\/company-cover-image.png\"]',15,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(41,'cover_image','[\"companies\\/company-cover-image.png\"]',16,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:53','2024-09-18 03:10:53'),(42,'cover_image','[\"companies\\/company-cover-image.png\"]',17,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:54','2024-09-18 03:10:54'),(43,'cover_image','[\"companies\\/company-cover-image.png\"]',18,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:54','2024-09-18 03:10:54'),(44,'cover_image','[\"companies\\/company-cover-image.png\"]',19,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:54','2024-09-18 03:10:54'),(45,'cover_image','[\"companies\\/company-cover-image.png\"]',20,'Botble\\JobBoard\\Models\\Company','2024-09-18 03:10:54','2024-09-18 03:10:54'),(46,'featured_image','[\"jobs\\/img1.png\"]',1,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(47,'featured_image','[\"jobs\\/img2.png\"]',2,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(48,'featured_image','[\"jobs\\/img3.png\"]',3,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(49,'featured_image','[\"jobs\\/img4.png\"]',4,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(50,'featured_image','[\"jobs\\/img5.png\"]',5,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(51,'featured_image','[\"jobs\\/img6.png\"]',6,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(52,'featured_image','[\"jobs\\/img7.png\"]',7,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(53,'featured_image','[\"jobs\\/img8.png\"]',8,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(54,'featured_image','[\"jobs\\/img9.png\"]',9,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(55,'featured_image','[\"jobs\\/img3.png\"]',10,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(56,'featured_image','[\"jobs\\/img6.png\"]',11,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(57,'featured_image','[\"jobs\\/img2.png\"]',12,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(58,'featured_image','[\"jobs\\/img8.png\"]',13,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(59,'featured_image','[\"jobs\\/img7.png\"]',14,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(60,'featured_image','[\"jobs\\/img4.png\"]',15,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:54','2024-09-18 03:10:54'),(61,'featured_image','[\"jobs\\/img7.png\"]',16,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(62,'featured_image','[\"jobs\\/img4.png\"]',17,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(63,'featured_image','[\"jobs\\/img5.png\"]',18,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(64,'featured_image','[\"jobs\\/img6.png\"]',19,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(65,'featured_image','[\"jobs\\/img7.png\"]',20,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(66,'featured_image','[\"jobs\\/img5.png\"]',21,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(67,'featured_image','[\"jobs\\/img8.png\"]',22,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(68,'featured_image','[\"jobs\\/img7.png\"]',23,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(69,'featured_image','[\"jobs\\/img8.png\"]',24,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(70,'featured_image','[\"jobs\\/img2.png\"]',25,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(71,'featured_image','[\"jobs\\/img6.png\"]',26,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(72,'featured_image','[\"jobs\\/img5.png\"]',27,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(73,'featured_image','[\"jobs\\/img7.png\"]',28,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(74,'featured_image','[\"jobs\\/img2.png\"]',29,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(75,'featured_image','[\"jobs\\/img3.png\"]',30,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(76,'featured_image','[\"jobs\\/img2.png\"]',31,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(77,'featured_image','[\"jobs\\/img8.png\"]',32,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(78,'featured_image','[\"jobs\\/img5.png\"]',33,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(79,'featured_image','[\"jobs\\/img4.png\"]',34,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(80,'featured_image','[\"jobs\\/img7.png\"]',35,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(81,'featured_image','[\"jobs\\/img7.png\"]',36,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(82,'featured_image','[\"jobs\\/img5.png\"]',37,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(83,'featured_image','[\"jobs\\/img4.png\"]',38,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(84,'featured_image','[\"jobs\\/img5.png\"]',39,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(85,'featured_image','[\"jobs\\/img6.png\"]',40,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(86,'featured_image','[\"jobs\\/img6.png\"]',41,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(87,'featured_image','[\"jobs\\/img1.png\"]',42,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(88,'featured_image','[\"jobs\\/img7.png\"]',43,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(89,'featured_image','[\"jobs\\/img2.png\"]',44,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(90,'featured_image','[\"jobs\\/img8.png\"]',45,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(91,'featured_image','[\"jobs\\/img4.png\"]',46,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(92,'featured_image','[\"jobs\\/img6.png\"]',47,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(93,'featured_image','[\"jobs\\/img2.png\"]',48,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(94,'featured_image','[\"jobs\\/img4.png\"]',49,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(95,'featured_image','[\"jobs\\/img6.png\"]',50,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(96,'featured_image','[\"jobs\\/img6.png\"]',51,'Botble\\JobBoard\\Models\\Job','2024-09-18 03:10:55','2024-09-18 03:10:55'),(97,'cover_image','[\"covers\\/2.png\"]',1,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:10:56','2024-09-18 03:10:56'),(98,'cover_image','[\"covers\\/1.png\"]',2,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:10:56','2024-09-18 03:10:56'),(99,'cover_image','[\"covers\\/2.png\"]',3,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:10:57','2024-09-18 03:10:57'),(100,'cover_image','[\"covers\\/3.png\"]',4,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:10:57','2024-09-18 03:10:57'),(101,'cover_image','[\"covers\\/3.png\"]',5,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:10:57','2024-09-18 03:10:57'),(102,'cover_image','[\"covers\\/3.png\"]',6,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:10:58','2024-09-18 03:10:58'),(103,'cover_image','[\"covers\\/3.png\"]',7,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:10:58','2024-09-18 03:10:58'),(104,'cover_image','[\"covers\\/2.png\"]',8,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:10:58','2024-09-18 03:10:58'),(105,'cover_image','[\"covers\\/2.png\"]',9,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:10:59','2024-09-18 03:10:59'),(106,'cover_image','[\"covers\\/1.png\"]',10,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:10:59','2024-09-18 03:10:59'),(107,'cover_image','[\"covers\\/1.png\"]',11,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:10:59','2024-09-18 03:10:59'),(108,'cover_image','[\"covers\\/1.png\"]',12,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:00','2024-09-18 03:11:00'),(109,'cover_image','[\"covers\\/1.png\"]',13,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:00','2024-09-18 03:11:00'),(110,'cover_image','[\"covers\\/2.png\"]',14,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:00','2024-09-18 03:11:00'),(111,'cover_image','[\"covers\\/1.png\"]',15,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:01','2024-09-18 03:11:01'),(112,'cover_image','[\"covers\\/2.png\"]',16,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:01','2024-09-18 03:11:01'),(113,'cover_image','[\"covers\\/3.png\"]',17,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:01','2024-09-18 03:11:01'),(114,'cover_image','[\"covers\\/1.png\"]',18,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:02','2024-09-18 03:11:02'),(115,'cover_image','[\"covers\\/3.png\"]',19,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:02','2024-09-18 03:11:02'),(116,'cover_image','[\"covers\\/1.png\"]',20,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:02','2024-09-18 03:11:02'),(117,'cover_image','[\"covers\\/2.png\"]',21,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:03','2024-09-18 03:11:03'),(118,'cover_image','[\"covers\\/2.png\"]',22,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:03','2024-09-18 03:11:03'),(119,'cover_image','[\"covers\\/2.png\"]',23,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:03','2024-09-18 03:11:03'),(120,'cover_image','[\"covers\\/2.png\"]',24,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:03','2024-09-18 03:11:03'),(121,'cover_image','[\"covers\\/3.png\"]',25,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:04','2024-09-18 03:11:04'),(122,'cover_image','[\"covers\\/3.png\"]',26,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:04','2024-09-18 03:11:04'),(123,'cover_image','[\"covers\\/1.png\"]',27,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:04','2024-09-18 03:11:04'),(124,'cover_image','[\"covers\\/1.png\"]',28,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:05','2024-09-18 03:11:05'),(125,'cover_image','[\"covers\\/3.png\"]',29,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:05','2024-09-18 03:11:05'),(126,'cover_image','[\"covers\\/3.png\"]',30,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:05','2024-09-18 03:11:05'),(127,'cover_image','[\"covers\\/3.png\"]',31,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:06','2024-09-18 03:11:06'),(128,'cover_image','[\"covers\\/2.png\"]',32,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:06','2024-09-18 03:11:06'),(129,'cover_image','[\"covers\\/3.png\"]',33,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:06','2024-09-18 03:11:06'),(130,'cover_image','[\"covers\\/2.png\"]',34,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:07','2024-09-18 03:11:07'),(131,'cover_image','[\"covers\\/3.png\"]',35,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:07','2024-09-18 03:11:07'),(132,'cover_image','[\"covers\\/2.png\"]',36,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:07','2024-09-18 03:11:07'),(133,'cover_image','[\"covers\\/3.png\"]',37,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:07','2024-09-18 03:11:07'),(134,'cover_image','[\"covers\\/3.png\"]',38,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:08','2024-09-18 03:11:08'),(135,'cover_image','[\"covers\\/1.png\"]',39,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:08','2024-09-18 03:11:08'),(136,'cover_image','[\"covers\\/1.png\"]',40,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:08','2024-09-18 03:11:08'),(137,'cover_image','[\"covers\\/3.png\"]',41,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:09','2024-09-18 03:11:09'),(138,'cover_image','[\"covers\\/1.png\"]',42,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:09','2024-09-18 03:11:09'),(139,'cover_image','[\"covers\\/3.png\"]',43,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:09','2024-09-18 03:11:09'),(140,'cover_image','[\"covers\\/1.png\"]',44,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:09','2024-09-18 03:11:09'),(141,'cover_image','[\"covers\\/2.png\"]',45,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:10','2024-09-18 03:11:10'),(142,'cover_image','[\"covers\\/3.png\"]',46,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:10','2024-09-18 03:11:10'),(143,'cover_image','[\"covers\\/1.png\"]',47,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:10','2024-09-18 03:11:10'),(144,'cover_image','[\"covers\\/3.png\"]',48,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:11','2024-09-18 03:11:11'),(145,'cover_image','[\"covers\\/1.png\"]',49,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:11','2024-09-18 03:11:11'),(146,'cover_image','[\"covers\\/2.png\"]',50,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:11','2024-09-18 03:11:11'),(147,'cover_image','[\"covers\\/1.png\"]',51,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:12','2024-09-18 03:11:12'),(148,'cover_image','[\"covers\\/1.png\"]',52,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:12','2024-09-18 03:11:12'),(149,'cover_image','[\"covers\\/2.png\"]',53,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:12','2024-09-18 03:11:12'),(150,'cover_image','[\"covers\\/3.png\"]',54,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:12','2024-09-18 03:11:12'),(151,'cover_image','[\"covers\\/1.png\"]',55,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:13','2024-09-18 03:11:13'),(152,'cover_image','[\"covers\\/2.png\"]',56,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:13','2024-09-18 03:11:13'),(153,'cover_image','[\"covers\\/3.png\"]',57,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:13','2024-09-18 03:11:13'),(154,'cover_image','[\"covers\\/2.png\"]',58,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:14','2024-09-18 03:11:14'),(155,'cover_image','[\"covers\\/2.png\"]',59,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:14','2024-09-18 03:11:14'),(156,'cover_image','[\"covers\\/2.png\"]',60,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:14','2024-09-18 03:11:14'),(157,'cover_image','[\"covers\\/2.png\"]',61,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:15','2024-09-18 03:11:15'),(158,'cover_image','[\"covers\\/3.png\"]',62,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:15','2024-09-18 03:11:15'),(159,'cover_image','[\"covers\\/1.png\"]',63,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:15','2024-09-18 03:11:15'),(160,'cover_image','[\"covers\\/3.png\"]',64,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:15','2024-09-18 03:11:15'),(161,'cover_image','[\"covers\\/2.png\"]',65,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:16','2024-09-18 03:11:16'),(162,'cover_image','[\"covers\\/3.png\"]',66,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:16','2024-09-18 03:11:16'),(163,'cover_image','[\"covers\\/1.png\"]',67,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:16','2024-09-18 03:11:16'),(164,'cover_image','[\"covers\\/2.png\"]',68,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:17','2024-09-18 03:11:17'),(165,'cover_image','[\"covers\\/3.png\"]',69,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:17','2024-09-18 03:11:17'),(166,'cover_image','[\"covers\\/1.png\"]',70,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:17','2024-09-18 03:11:17'),(167,'cover_image','[\"covers\\/3.png\"]',71,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:17','2024-09-18 03:11:17'),(168,'cover_image','[\"covers\\/1.png\"]',72,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:18','2024-09-18 03:11:18'),(169,'cover_image','[\"covers\\/3.png\"]',73,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:18','2024-09-18 03:11:18'),(170,'cover_image','[\"covers\\/3.png\"]',74,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:18','2024-09-18 03:11:18'),(171,'cover_image','[\"covers\\/3.png\"]',75,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:18','2024-09-18 03:11:18'),(172,'cover_image','[\"covers\\/3.png\"]',76,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:19','2024-09-18 03:11:19'),(173,'cover_image','[\"covers\\/1.png\"]',77,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:19','2024-09-18 03:11:19'),(174,'cover_image','[\"covers\\/3.png\"]',78,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:19','2024-09-18 03:11:19'),(175,'cover_image','[\"covers\\/1.png\"]',79,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:20','2024-09-18 03:11:20'),(176,'cover_image','[\"covers\\/2.png\"]',80,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:20','2024-09-18 03:11:20'),(177,'cover_image','[\"covers\\/1.png\"]',81,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:20','2024-09-18 03:11:20'),(178,'cover_image','[\"covers\\/3.png\"]',82,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:21','2024-09-18 03:11:21'),(179,'cover_image','[\"covers\\/2.png\"]',83,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:22','2024-09-18 03:11:22'),(180,'cover_image','[\"covers\\/1.png\"]',84,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:22','2024-09-18 03:11:22'),(181,'cover_image','[\"covers\\/1.png\"]',85,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:22','2024-09-18 03:11:22'),(182,'cover_image','[\"covers\\/2.png\"]',86,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:23','2024-09-18 03:11:23'),(183,'cover_image','[\"covers\\/1.png\"]',87,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:23','2024-09-18 03:11:23'),(184,'cover_image','[\"covers\\/2.png\"]',88,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:23','2024-09-18 03:11:23'),(185,'cover_image','[\"covers\\/3.png\"]',89,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:23','2024-09-18 03:11:23'),(186,'cover_image','[\"covers\\/1.png\"]',90,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:24','2024-09-18 03:11:24'),(187,'cover_image','[\"covers\\/1.png\"]',91,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:24','2024-09-18 03:11:24'),(188,'cover_image','[\"covers\\/1.png\"]',92,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:24','2024-09-18 03:11:24'),(189,'cover_image','[\"covers\\/1.png\"]',93,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:25','2024-09-18 03:11:25'),(190,'cover_image','[\"covers\\/3.png\"]',94,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:25','2024-09-18 03:11:25'),(191,'cover_image','[\"covers\\/3.png\"]',95,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:25','2024-09-18 03:11:25'),(192,'cover_image','[\"covers\\/2.png\"]',96,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:26','2024-09-18 03:11:26'),(193,'cover_image','[\"covers\\/1.png\"]',97,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:26','2024-09-18 03:11:26'),(194,'cover_image','[\"covers\\/3.png\"]',98,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:26','2024-09-18 03:11:26'),(195,'cover_image','[\"covers\\/2.png\"]',99,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:26','2024-09-18 03:11:26'),(196,'cover_image','[\"covers\\/1.png\"]',100,'Botble\\JobBoard\\Models\\Account','2024-09-18 03:11:27','2024-09-18 03:11:27');
/*!40000 ALTER TABLE `meta_boxes` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `migrations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=131 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_reset_tokens_table',1),(5,'2016_06_10_230148_create_acl_tables',1),(6,'2016_06_14_230857_create_menus_table',1),(7,'2016_06_28_221418_create_pages_table',1),(8,'2016_10_05_074239_create_setting_table',1),(9,'2016_11_28_032840_create_dashboard_widget_tables',1),(10,'2016_12_16_084601_create_widgets_table',1),(11,'2017_05_09_070343_create_media_tables',1),(12,'2017_11_03_070450_create_slug_table',1),(13,'2019_01_05_053554_create_jobs_table',1),(14,'2019_08_19_000000_create_failed_jobs_table',1),(15,'2019_12_14_000001_create_personal_access_tokens_table',1),(16,'2022_04_20_100851_add_index_to_media_table',1),(17,'2022_04_20_101046_add_index_to_menu_table',1),(18,'2022_07_10_034813_move_lang_folder_to_root',1),(19,'2022_08_04_051940_add_missing_column_expires_at',1),(20,'2022_09_01_000001_create_admin_notifications_tables',1),(21,'2022_10_14_024629_drop_column_is_featured',1),(22,'2022_11_18_063357_add_missing_timestamp_in_table_settings',1),(23,'2022_12_02_093615_update_slug_index_columns',1),(24,'2023_01_30_024431_add_alt_to_media_table',1),(25,'2023_02_16_042611_drop_table_password_resets',1),(26,'2023_04_10_103353_fix_social_links',1),(27,'2023_04_23_005903_add_column_permissions_to_admin_notifications',1),(28,'2023_05_10_075124_drop_column_id_in_role_users_table',1),(29,'2023_07_19_152743_migrate_old_city_state_image',1),(30,'2023_08_21_090810_make_page_content_nullable',1),(31,'2023_09_14_021936_update_index_for_slugs_table',1),(32,'2023_12_07_095130_add_color_column_to_media_folders_table',1),(33,'2023_12_17_162208_make_sure_column_color_in_media_folders_nullable',1),(34,'2023_12_20_034718_update_invoice_amount',1),(35,'2024_04_04_110758_update_value_column_in_user_meta_table',1),(36,'2024_05_12_091229_add_column_visibility_to_table_media_files',1),(37,'2024_07_07_091316_fix_column_url_in_menu_nodes_table',1),(38,'2024_07_12_100000_change_random_hash_for_media',1),(39,'2020_11_18_150916_ads_create_ads_table',2),(40,'2021_12_02_035301_add_ads_translations_table',2),(41,'2023_04_17_062645_add_open_in_new_tab',2),(42,'2023_11_07_023805_add_tablet_mobile_image',2),(43,'2024_04_01_043317_add_google_adsense_slot_id_to_ads_table',2),(44,'2024_04_27_100730_improve_analytics_setting',3),(45,'2015_06_29_025744_create_audit_history',4),(46,'2023_11_14_033417_change_request_column_in_table_audit_histories',4),(47,'2015_06_18_033822_create_blog_table',5),(48,'2021_02_16_092633_remove_default_value_for_author_type',5),(49,'2021_12_03_030600_create_blog_translations',5),(50,'2022_04_19_113923_add_index_to_table_posts',5),(51,'2023_08_29_074620_make_column_author_id_nullable',5),(52,'2024_07_30_091615_fix_order_column_in_categories_table',5),(53,'2016_06_17_091537_create_contacts_table',6),(54,'2023_11_10_080225_migrate_contact_blacklist_email_domains_to_core',6),(55,'2024_03_20_080001_migrate_change_attribute_email_to_nullable_form_contacts_table',6),(56,'2024_03_25_000001_update_captcha_settings_for_contact',6),(57,'2024_04_19_063914_create_custom_fields_table',6),(58,'2018_07_09_221238_create_faq_table',7),(59,'2021_12_03_082134_create_faq_translations',7),(60,'2023_11_17_063408_add_description_column_to_faq_categories_table',7),(61,'2016_10_13_150201_create_galleries_table',8),(62,'2021_12_03_082953_create_gallery_translations',8),(63,'2022_04_30_034048_create_gallery_meta_translations_table',8),(64,'2023_08_29_075308_make_column_user_id_nullable',8),(65,'2022_06_20_093259_create_job_board_tables',9),(66,'2022_09_12_061845_update_table_activity_logs',9),(67,'2022_09_13_042407_create_table_jb_jobs_types',9),(68,'2022_09_15_030017_update_jb_jobs_table',9),(69,'2022_09_15_094840_add_job_employer_colleagues',9),(70,'2022_09_27_000001_create_jb_invoices_tables',9),(71,'2022_09_30_144924_update_jobs_table',9),(72,'2022_10_04_085631_add_company_logo_to_jb_invoices',9),(73,'2022_10_10_030606_create_reviews_table',9),(74,'2022_11_09_065056_add_missing_jobs_page',9),(75,'2022_11_10_065056_add_columns_to_accounts',9),(76,'2022_11_16_034756_add_column_cover_letter_to_accounts',9),(77,'2022_11_29_304756_create_jb_account_favorite_skills_table',9),(78,'2022_11_29_304757_create_jb_account_favorite_tags',9),(79,'2022_12_26_304758_create_table_jb_experiences',9),(80,'2022_12_26_304759_create_table_jb_education',9),(81,'2023_01_31_023233_create_jb_custom_fields_table',9),(82,'2023_02_06_024257_add_package_translations',9),(83,'2023_02_08_062457_add_custom_fields_translation_table',9),(84,'2023_04_03_126927_add_parent_id_to_jb_categories_table',9),(85,'2023_05_04_000001_add_hide_cv_to_jb_accounts_table',9),(86,'2023_05_09_062031_unique_reviews_table',9),(87,'2023_05_13_180010_make_jb_reviews_table_morphable',9),(88,'2023_05_16_113126_fix_account_confirmed_at',9),(89,'2023_07_03_135746_add_zip_code_to_jb_jobs_table',9),(90,'2023_07_06_022808_create_jb_coupons_table',9),(91,'2023_07_14_045213_add_coupon_code_column_to_jb_invoices_table',9),(92,'2024_01_31_022842_add_description_to_jb_packages_table',9),(93,'2024_02_01_080657_add_tax_id_column_to_jb_companies_table',9),(94,'2024_05_02_030658_add_field_unique_id_to_jb_accounts_and_jb_companies_table',9),(95,'2024_07_22_122219_create_jb_account_languages_table',9),(96,'2024_09_06_070120_update_jb_packages_table',9),(97,'2016_10_03_032336_create_languages_table',10),(98,'2023_09_14_022423_add_index_for_language_table',10),(99,'2021_10_25_021023_fix-priority-load-for-language-advanced',11),(100,'2021_12_03_075608_create_page_translations',11),(101,'2023_07_06_011444_create_slug_translations_table',11),(102,'2019_11_18_061011_create_country_table',12),(103,'2021_12_03_084118_create_location_translations',12),(104,'2021_12_03_094518_migrate_old_location_data',12),(105,'2021_12_10_034440_switch_plugin_location_to_use_language_advanced',12),(106,'2022_01_16_085908_improve_plugin_location',12),(107,'2022_08_04_052122_delete_location_backup_tables',12),(108,'2023_04_23_061847_increase_state_translations_abbreviation_column',12),(109,'2023_07_26_041451_add_more_columns_to_location_table',12),(110,'2023_07_27_041451_add_more_columns_to_location_translation_table',12),(111,'2023_08_15_073307_drop_unique_in_states_cities_translations',12),(112,'2023_10_21_065016_make_state_id_in_table_cities_nullable',12),(113,'2024_08_17_094600_add_image_into_countries',12),(114,'2017_10_24_154832_create_newsletter_table',13),(115,'2024_03_25_000001_update_captcha_settings_for_newsletter',13),(116,'2017_05_18_080441_create_payment_tables',14),(117,'2021_03_27_144913_add_customer_type_into_table_payments',14),(118,'2021_05_24_034720_make_column_currency_nullable',14),(119,'2021_08_09_161302_add_metadata_column_to_payments_table',14),(120,'2021_10_19_020859_update_metadata_field',14),(121,'2022_06_28_151901_activate_paypal_stripe_plugin',14),(122,'2022_07_07_153354_update_charge_id_in_table_payments',14),(123,'2024_07_04_083133_create_payment_logs_table',14),(124,'2022_11_02_092723_team_create_team_table',15),(125,'2023_08_11_094574_update_team_table',15),(126,'2023_11_30_085354_add_missing_description_to_team',15),(127,'2018_07_09_214610_create_testimonial_table',16),(128,'2021_12_03_083642_create_testimonials_translations',16),(129,'2016_10_07_193005_create_translations_table',17),(130,'2023_12_12_105220_drop_translations_table',17);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

LOCK TABLES `pages` WRITE;
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
INSERT INTO `pages` VALUES (1,'Homepage 1','<div>[search-box title=\"The Easiest Way to Get Your New Job\" highlight_text=\"Easiest Way\" description=\"Each month, more than 3 million job seekers turn to website in their search for work, making over 140,000 applications every single day\" banner_image_1=\"pages/banner1.png\" icon_top_banner=\"pages/icon-top-banner.png\" banner_image_2=\"pages/banner2.png\" icon_bottom_banner=\"pages/icon-bottom-banner.png\" style=\"style-1\" trending_keywords=\"Design,Development,Manager,Senior\"][/search-box]</div><div>[featured-job-categories title=\"Browse by category\" subtitle=\"Find the job that’s perfect for you. about 800+ new jobs everyday\"][/featured-job-categories]</div><div>[apply-banner subtitle=\"Let’s Work Together &lt;br\\&gt;&amp; Explore Opportunities\" highlight_sub_title_text=\"Work, Explore\" title_1=\"We are\" title_2=\"HIRING\" button_apply_text=\"Apply\" button_apply_link=\"#\" apply_image_left=\"pages/bg-left-hiring.png\" apply_image_right=\"pages/bg-right-hiring.png\"][/apply-banner]</div><div>[job-of-the-day title=\"Jobs of the day\" subtitle=\"Search and connect with the right candidates faster.\" job_categories=\"4,9,1,3,5,7\" style=\"style-1\"][/job-of-the-day]</div><div>[job-grid title=\"Find The One That’s Right For You\" high_light_title_text=\"Right\" subtitle=\"Millions Of Jobs.\" description=\"Search all the open positions on the web. Get your own personalized salary estimate. Read reviews on over 600,000 companies worldwide. The right job is out there.\" image_job_1=\"pages/img-chart.png\" image_job_2=\"pages/controlcard.png\" image=\"pages/img1.png\" button_text=\"Search jobs\" button_url=\"#\" link_text=\"Learn more\" link_text_url=\"#\"][/job-grid]</div><div>[top-companies title=\"Top Recruiters\" description=\"Discover your next career move, freelance gig, or internship\"][/top-companies]</div><div>[job-by-location title=\"Jobs by Location\" description=\"Find your favourite jobs and get the benefits of yourself\" city=\"1,2,3,4,5,6\"][/job-by-location]</div><div>[news-and-blogs title=\"News and Blog\" subtitle=\"Get the latest news, updates and tips\"][/news-and-blogs]</div>',1,NULL,'homepage',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(2,'Homepage 2','<div>[search-box subtitle=\"We have 150,000+ live jobs\" title=\"The #1 Job Board for Hiring or Find your next job\" highlight_text=\"Job Board for\" description=\"Each month, more than 3 million job seekers turn to website in their search for work, making over 140,000 applications every single day\" counter_title_1=\"Daily Jobs Posted\" counter_number_1=\"265\" counter_title_2=\"Recruiters\" counter_number_2=\"17\" counter_title_3=\"Freelancers\" counter_number_3=\"15\" counter_title_4=\"Blog Tips\" counter_number_4=\"28\" background_image=\"pages/banner-section-search-box.png\" style=\"style-2\" trending_keywords=\"Design,Development,Manager,Senior\"][/search-box]</div><div>[job-of-the-day title=\"Jobs of the day\" subtitle=\"Search and connect with the right candidates faster.\" job_categories=\"1,2,5,4,7,8\" style=\"style-2\"][/job-of-the-day]</div><div>[popular-category title=\"Popular category\" subtitle=\"Search and connect with the right candidates faster.\"][/popular-category]</div><div>[job-by-location title=\"Jobs by Location\" description=\"Find your favourite jobs and get the benefits of yourself\" city=\"12,46,69,111,121,116,62\" style=\"style-2\"][/job-by-location]</div><div>[counter-section counter_title_1=\"Completed Cases\" counter_description_1=\"We always provide people a complete solution upon focused of any business\" counter_number_1=\"1000\" counter_title_2=\"Our Office\" counter_description_2=\"We always provide people a complete solution upon focused of any business\" counter_number_2=\"1\" counter_title_3=\"Skilled People\" counter_description_3=\"We always provide people a complete solution upon focused of any business\" counter_number_3=\"6\" counter_title_4=\"Happy Clients\" counter_description_4=\"We always provide people a complete solution upon focused of any business\" counter_number_4=\"2\"][/counter-section]</div><div>[top-companies title=\"Top Recruiters\" description=\"Discover your next career move, freelance gig, or internship\" style=\"style-2\"][/top-companies]</div><div>[advertisement-banner first_title=\"Job Tools Services\" first_description=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam laoreet rutrum quam, id faucibus erat interdum a. Curabitur eget tortor a nulla interdum semper.\" load_more_first_content_text=\"Find Out More\" load_more_link_first_content=\"#\" image_of_first_content=\"pages/job-tools.png\" second_title=\"Planning a Job?\" second_description=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam laoreet rutrum quam, id faucibus erat interdum a. Curabitur eget tortor a nulla interdum semper.\" load_more_second_content_text=\"Find Out More\" load_more_link_second_content=\"#\" image_of_second_content=\"pages/planning-job.png\"][/advertisement-banner]</div><div>[news-and-blogs title=\"News and Blog\" subtitle=\"Get the latest news, updates and tips\" button_text=\"Load More Posts\" button_link=\"#\" style=\"style-2\"][/news-and-blogs]</div>',1,NULL,'homepage',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(3,'Homepage 3','<div>[search-box title=\"The #1 Job Board for Hiring or Find your next job\" highlight_text=\"Job Board for\" description=\"Each month, more than 3 million job seekers turn to website in their search for work, making over 140,000 applications every single day\" style=\"style-3\" trending_keywords=\"Design,Development,Manager,Senior\"][/search-box]</div><div>[job-of-the-day title=\"Jobs of the day\" subtitle=\"Search and connect with the right candidates faster.\" job_categories=\"1,2,5,4,7,8\" style=\"style-3\"][/job-of-the-day]</div><div>[top-candidates title=\"Top Candidates\" description=\"Jobs is a curated job board of the best jobs for developers, designers and marketers in the tech industry.\" limit=\"8\" style=\"style-3\"][/top-candidates]</div><div>[top-companies title=\"Top Recruiters\" description=\"Discover your next career move, freelance gig, or internship\" style=\"style-3\"][/top-companies]</div><div>[apply-banner subtitle=\"Let’s Work Together &lt;br\\&gt;&amp; Explore Opportunities\" highlight_sub_title_text=\"Work, Explore\" title_1=\"We are\" title_2=\"HIRING\" button_apply_text=\"Apply\" button_apply_link=\"#\" apply_image_left=\"pages/bg-left-hiring.png\" apply_image_right=\"pages/bg-right-hiring.png\" style=\"style-3\"][/apply-banner]</div><div>[our-partners title=\"Trusted by\" name_1=\"Asus\" url_1=\"https://www.asus.com\" image_1=\"our-partners/asus.png\" name_2=\"Dell\" url_2=\"https://www.dell.com\" image_2=\"our-partners/dell.png\" name_3=\"Microsoft\" url_3=\"https://www.microsoft.com\" image_3=\"our-partners/microsoft.png\" name_4=\"Acer\" url_4=\"https://www.acer.com\" image_4=\"our-partners/acer.png\" name_5=\"Nokia\" url_5=\"https://www.nokia.com\" image_5=\"our-partners/nokia.png\"][/our-partners]</div><div>[news-and-blogs title=\"News and Blog\" subtitle=\"Get the latest news, updates and tips\" button_text=\"Load More Posts\" button_link=\"#\" style=\"style-3\"][/news-and-blogs]</div>',1,NULL,'homepage',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(4,'Homepage 4','<div>[search-box title=\"Get The Right Job You Deserve\" highlight_text=\"Right Job\" banner_image_1=\"pages/home-page-4-banner.png\" style=\"style-1\" trending_keywords=\"Designer, Web, IOS, Developer, PHP, Senior, Engineer\" background_color=\"#000\"][/search-box]</div><div>[job-of-the-day title=\"Latest Jobs Post\" subtitle=\"Explore the different types of available jobs to apply discover which is right for you.\" job_categories=\"1,2,3,4,5,6,8,7\" style=\"style-3\"][/job-of-the-day]</div><div>[featured-job-categories title=\"Browse by category\" subtitle=\"Find the job that’s perfect for you. about 800+ new jobs everyday\" limit_category=\"10\" background_image=\"pages/bg-cat.png\" style=\"style-2\"][/featured-job-categories]</div><div>[[testimonials title=\"See Some Words\" description=\"Thousands of employee get their ideal jobs and feed back to us!\" style=\"style-2\"][/testimonials]</div><div>[our-partners title=\"Trusted by\" name_1=\"Asus\" url_1=\"https://www.asus.com\" image_1=\"our-partners/asus.png\" name_2=\"Dell\" url_2=\"https://www.dell.com\" image_2=\"our-partners/dell.png\" name_3=\"Microsoft\" url_3=\"https://www.microsoft.com\" image_3=\"our-partners/microsoft.png\" name_4=\"Acer\" url_4=\"https://www.acer.com\" image_4=\"our-partners/acer.png\" name_5=\"Nokia\" url_5=\"https://www.nokia.com\" image_5=\"our-partners/nokia.png\"][/our-partners]</div><div>[popular-category title=\"Popular category\" subtitle=\"Search and connect with the right candidates faster.\"][/popular-category]</div><div>[job-by-location title=\"Jobs by Location\" description=\"Find your favourite jobs and get the benefits of yourself\" city=\"12,46,69,111,121,116,62\" style=\"style-2\"][/job-by-location]</div><div>[news-and-blogs title=\"News and Blog\" subtitle=\"Get the latest news, updates and tips\" button_text=\"Load More Posts\" button_link=\"#\"][/news-and-blogs]</div>',1,NULL,'homepage',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(5,'Homepage 5','<div>[search-box title=\"Find Jobs, &#x3C;br&#x3E; Hire Creatives\" description=\"Each month, more than 3 million job seekers turn to website in their search for work, making over 140,000 applications every single day\" banner_image_1=\"pages/banner1.png\" banner_image_2=\"pages/banner2.png\" banner_image_3=\"pages/banner3.png\" banner_image_4=\"pages/banner4.png\" banner_image_5=\"pages/banner5.png\" banner_image_6=\"pages/banner6.png\" style=\"style-5\"][/search-box]</div><div>[counter-section counter_title_1=\"Completed Cases\" counter_description_1=\"We always provide people a complete solution upon focused of any business\" counter_number_1=\"1000\" counter_title_2=\"Our Office\" counter_description_2=\"We always provide people a complete solution upon focused of any business\" counter_number_2=\"1\" counter_title_3=\"Skilled People\" counter_description_3=\"We always provide people a complete solution upon focused of any business\" counter_number_3=\"6\" counter_title_4=\"Happy Clients\" counter_description_4=\"We always provide people a complete solution upon focused of any business\" counter_number_4=\"2\"][/counter-section]</div><div>[popular-category title=\"Explore the Marketplace\" subtitle=\"Search and connect with the right candidates faster. Tell us what you’ve looking for and we’ll get to work for you.\" style=\"style-5\"][/popular-category]</div><div>[job-of-the-day title=\"Latest Jobs Post\" subtitle=\"Explore the different types of available jobs to apply &#x3C;br&#x3E; discover which is right for you.\" job_categories=\"1,2,5,4,7,8\" style=\"style-2\"][/job-of-the-day]</div><div>[job-grid style=\"style-2\" title=\"Create Your Personal Account Profile\" subtitle=\"Create Profile\" description=\"Work Profile is a personality assessment that measures an individual\'s work personality through their workplace traits, social and emotional traits; as well as the values and aspirations that drive them forward.\" image=\"pages/img-profile.png\" button_text=\"Create Profile\" button_url=\"/register\"][/job-grid]</div><div>[how-it-works title=\"How It Works\" description=\"Just via some simple steps, you will find your ideal candidates you’r looking for!\" step_label_1=\"Register an &#x3C;br&#x3E; account to start\" step_help_1=\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do\" step_label_2=\"Explore over &#x3C;br&#x3E; thousands of resumes\" step_help_2=\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do\" step_label_3=\"Find the most &#x3C;br&#x3E; suitable candidate\" step_help_3=\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do\" button_label=\"Get Started\" button_url=\"#\"][/how-it-works]</div><div>[top-candidates title=\"Top Candidates\" description=\"Jobs is a curated job board of the best jobs for developers, designers &#x3C;br&#x3E; and marketers in the tech industry.\" limit=\"8\" style=\"style-5\"][/top-candidates]</div><div>[news-and-blogs title=\"News and Blog\" subtitle=\"Get the latest news, updates and tips\" button_text=\"Load More Posts\" button_link=\"#\" style=\"style-2\"][/news-and-blogs]</div>',1,NULL,'homepage',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(6,'Homepage 6','<div>[search-box title=\"There Are 102,256 Postings Here For you!\" highlight_text=\"102,256\" description=\"Find Jobs, Employment & Career Opportunities\" style=\"style-4\" trending_keywords=\"Design,Development,Manager,Senior,,\" background_color=\"#000\"][/search-box]</div><div>[gallery image_1=\"galleries/1.jpg\" image_2=\"galleries/2.jpg\" image_3=\"galleries/3.jpg\" image_4=\"galleries/4.jpg\" image_5=\"galleries/5.jpg\"][/gallery]</div><div>[featured-job-categories title=\"Browse by category\" subtitle=\"Find the job that’s perfect for you. about 800+ new jobs everyday\"][/featured-job-categories]</div><div>[job-grid style=\"style-2\" title=\"Create Your Personal Account Profile\" subtitle=\"Create Profile\" description=\"Work Profile is a personality assessment that measures an individual\'s work personality through their workplace traits, social and emotional traits; as well as the values and aspirations that drive them forward.\" image=\"pages/img-profile.png\" button_text=\"Create Profile\" button_url=\"/register\"][/job-grid]</div><div>[job-of-the-day title=\"Latest Jobs Post\" subtitle=\"Explore the different types of available jobs to apply discover which is right for you.\" job_categories=\"1,2,3,4,5,6\" style=\"style-2\"][/job-of-the-day]</div><div>[job-search-banner title=\"Job search for people passionate about startup\" background_image=\"pages/img-job-search.png\" checkbox_title_1=\"Create an account\" checkbox_description_1=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nec justo a quam varius maximus. Maecenas sodales tortor quis tincidunt commodo.\" checkbox_title_2=\"Search for Jobs\" checkbox_description_2=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nec justo a quam varius maximus. Maecenas sodales tortor quis tincidunt commodo.\" checkbox_title_3=\"Save & Apply\" checkbox_description_3=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nec justo a quam varius maximus. Maecenas sodales tortor quis tincidunt commodo.\"][/job-search-banner]</div>',1,NULL,'homepage',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(7,'Jobs','<div>[search-box title=\"The official IT Jobs site\" highlight_text=\"IT Jobs\" description=\"“JobBox is our first stop whenever we\'re hiring a PHP role. We\'ve hired 10 PHP developers in the last few years, all thanks to JobBox.” — Andrew Hall, Elite JSC.\" banner_image_1=\"pages/left-job-head.png\" banner_image_2=\"pages/right-job-head.png\" style=\"style-3\" background_color=\"#000\"][/search-box]</div><div>[job-list max_salary_range=\"10000\"][/job-list]</div>',1,NULL,'default',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(8,'Companies','<div>[job-companies title=\"Browse Companies\" subtitle=\"Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero repellendus magni, atque delectus molestias quis?\"][/job-companies]</div>',1,NULL,'default',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(9,'Candidates','<div>[job-candidates title=\"Browse Candidates\" description=\"Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero repellendus magni, atque &#x3C;br&#x3E; delectus molestias quis?\" number_per_page=\"9\" style=\"grid\"][/job-candidates]</div><div>[news-and-blogs title=\"News and Blog\" subtitle=\"Get the latest news, updates and tips\" style=\"style-2\"][/news-and-blogs]</div>',1,NULL,'default',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(10,'About us','<div>[company-about title=\"About Our Company\" description=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ligula ante, dictum non aliquet eu, dapibus ac quam. Morbi vel ante viverra orci tincidunt tempor eu id ipsum. Sed consectetur, risus a blandit tempor, velit magna pellentesque risus, at congue tellus dui quis nisl.\" title_box=\"What we can do?\" image=\"general/img-about2.png\" description_box=\"Aenean sollicituin, lorem quis bibendum auctor nisi elit consequat ipsum sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet maurisorbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctora ornare odio. Aenean sollicituin, lorem quis bibendum auctor nisi elit consequat ipsum sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet maurisorbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctora ornare odio. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Duis non nisi purus. Integer sit nostra, per inceptos himenaeos. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Duis non nisi purus. Integer sit nostra, per inceptos himenaeos.\" url=\"/\" text_button_box=\"Read more\"][/company-about]</div><div>[team title=\"About Our Company\" sub_title=\"OUR COMPANY\" description=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ligula ante, dictum non aliquet eu, dapibus ac quam. Morbi vel ante viverra orci tincidunt tempor eu id ipsum. Sed consectetur, risus a blandit tempor, velit magna pellentesque risus, at congue tellus dui quis nisl.\" number_of_people=\"8\"][/team]</div><div>[news-and-blogs title=\"News and Blog\" subtitle=\"Get the latest news, updates and tips\" button_text=\"View More\" button_link=\"/blog\" style=\"style-2\"][/news-and-blogs]</div><div>[testimonials title=\"Our Happy Customer\" description=\"When it comes to choosing the right web hosting provider, we know how easy it is to get overwhelmed with the number.\"][/testimonials]</div>',1,NULL,'page-detail','Get the latest news, updates and tips','published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(11,'Pricing Plan','<div>[pricing-table title=\"Pricing Table\" subtitle=\"Choose The Best Plan That’s For You\" number_of_package=\"3\"][/pricing-table]</div><div>[faq title=\"Frequently Asked Questions\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus, blandit and cursus varius and magnis sapien\" number_of_faq=\"4\"][/faq]</div><div>[testimonials title=\"Our Happy Customer\" subtitle=\"When it comes to choosing the right web hosting provider, we know how easy it is to get overwhelmed with the number.\"][/testimonials]</div>',1,NULL,'default',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(12,'Contact','<div>[company-information company_name=\"Jobbox Company\" logo_company=\"general/logo-company.png\" company_address=\"205 North Michigan Avenue, Suite 810 Chicago, 60601, US\" company_phone=\"0543213336\" company_email=\"contact@jobbox.com\" branch_company_name_0=\"London\" branch_company_address_0=\"2118 Thornridge Cir. Syracuse, Connecticut 35624\" branch_company_name_1=\"New York\" branch_company_address_1=\"4517 Washington Ave. Manchester, Kentucky 39495\" branch_company_name_2=\"Chicago\" branch_company_address_2=\"3891 Ranchview Dr. Richardson, California 62639\" branch_company_name_3=\"San Francisco\" branch_company_address_3=\"4140 Parker Rd. Allentown, New Mexico 31134\" branch_company_name_4=\"Sysney\" branch_company_address_4=\"3891 Ranchview Dr. Richardson, California 62639\" branch_company_name_5=\"Singapore\" branch_company_address_5=\"4140 Parker Rd. Allentown, New Mexico 31134\"][/company-information]</div><div>[contact-form title=\"Contact us\" subtitle=\"Get in touch\" description=\"The right move at the right time saves your investment. live the dream of expanding your business.\" image=\"image-contact.png\" show_newsletter=\"yes\"][/contact-form]</div><div>[team title=\"Meet Our Team\" subtitle=\"OUR COMPANY\" description=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ligula ante, dictum non aliquet eu, dapibus ac quam. Morbi vel ante viverra orci tincidunt tempor eu id ipsum. Sed consectetur, risus a blandit tempor, velit magna pellentesque risus, at congue tellus dui quis nisl.\" number_of_people=\"8\"][/team]</div><div>[news-and-blogs title=\"News and Blog\" subtitle=\"Get the latest news, updates and tips\" button_text=\"View More\" button_link=\"/blog\" style=\"style-2\"][/news-and-blogs]</div><div>[testimonials title=\"Our Happy Customer\" subtitle=\"When it comes to choosing the right web hosting provider, we know how easy it is to get overwhelmed with the number.\"][/testimonials]</div>',1,NULL,'page-detail','Get the latest news, updates and tips','published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(13,'Blog','---',1,NULL,'page-detail','Get the latest news, updates and tips','published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(14,'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><ul><li>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.</li><li>Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.</li><li>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.</li></ul>',1,NULL,'page-detail-boxed',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(15,'FAQs','<div>[faq title=\"Frequently Asked Questions\" number_of_faq=\"4\"][/faq]</div>',1,NULL,'page-detail',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(16,'Services','<p>Queen. \'Well, I hardly know--No more, thank ye; I\'m better now--but I\'m a deal too far off to other parts of the singers in the court!\' and the words all coming different, and then all the jelly-fish out of sight; and an old Turtle--we used to say.\' \'So he did, so he did,\' said the Gryphon: and Alice was very deep, or she should chance to be no use in crying like that!\' But she waited for some time without hearing anything more: at last it sat down with wonder at the window.\' \'THAT you won\'t\'.</p><p>Knave. The Knave of Hearts, he stole those tarts, And took them quite away!\' \'Consider your verdict,\' the King very decidedly, and he called the Queen, \'and he shall tell you my adventures--beginning from this morning,\' said Alice hastily; \'but I\'m not the smallest notice of her or of anything to say, she simply bowed, and took the place of the game, feeling very glad to find quite a crowd of little Alice was rather glad there WAS no one could possibly hear you.\' And certainly there was not an.</p><p>EVER happen in a helpless sort of thing that would happen: \'\"Miss Alice! Come here directly, and get ready to ask help of any good reason, and as Alice could bear: she got back to yesterday, because I was going off into a small passage, not much larger than a real nose; also its eyes were nearly out of sight: \'but it doesn\'t matter a bit,\' said the Mock Turtle in a melancholy tone. \'Nobody seems to like her, down here, and I\'m sure I have done that?\' she thought. \'But everything\'s curious.</p><p>Alice waited till the eyes appeared, and then they wouldn\'t be in a great hurry; \'this paper has just been reading about; and when she looked down into a pig, my dear,\' said Alice, in a Little Bill It was so full of soup. \'There\'s certainly too much pepper in my kitchen AT ALL. Soup does very well without--Maybe it\'s always pepper that makes the matter worse. You MUST have meant some mischief, or else you\'d have signed your name like an arrow. The Cat\'s head with great curiosity, and this was.</p>',1,NULL,'page-detail-boxed',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(17,'Terms','<p>When they take us up and said, \'So you did, old fellow!\' said the Queen of Hearts, carrying the King\'s crown on a three-legged stool in the kitchen. \'When I\'M a Duchess,\' she said to herself, \'Why, they\'re only a pack of cards: the Knave was standing before them, in chains, with a bound into the garden with one eye; \'I seem to be\"--or if you\'d like it very hard indeed to make out exactly what they WILL do next! If they had any sense, they\'d take the hint; but the Dormouse turned out, and, by.</p><p>WAS a curious croquet-ground in her hand, watching the setting sun, and thinking of little animals and birds waiting outside. The poor little thing sat down at her rather inquisitively, and seemed to have the experiment tried. \'Very true,\' said the King, the Queen, and Alice rather unwillingly took the regular course.\' \'What was THAT like?\' said Alice. \'Nothing WHATEVER?\' persisted the King. The next witness would be as well say,\' added the Queen. \'It proves nothing of the suppressed.</p><p>Mouse, turning to Alice, and she heard a little girl or a watch to take out of a globe of goldfish she had found her head down to them, and it\'ll sit up and say \"Who am I to do?\' said Alice. \'Anything you like,\' said the March Hare interrupted in a deep sigh, \'I was a dead silence. \'It\'s a Cheshire cat,\' said the King, \'that saves a world of trouble, you know, this sort in her hands, and began:-- \'You are old,\' said the Mock Turtle. \'Very much indeed,\' said Alice. The King looked anxiously.</p><p>English,\' thought Alice; \'only, as it\'s asleep, I suppose you\'ll be asleep again before it\'s done.\' \'Once upon a Gryphon, lying fast asleep in the direction it pointed to, without trying to find that the hedgehog had unrolled itself, and was in managing her flamingo: she succeeded in getting its body tucked away, comfortably enough, under her arm, with its tongue hanging out of his great wig.\' The judge, by the soldiers, who of course had to sing this:-- \'Beautiful Soup, so rich and green.</p>',1,NULL,'page-detail-boxed',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45'),(18,'Job Categories','<div>[search-box title=\"22 Jobs Available Now\" highlight_text=\"22 Jobs\" description=\"Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero repellendus magni, atque delectus molestias quis?\" banner_image_1=\"pages/left-job-head.png\" banner_image_2=\"pages/right-job-head.png\" style=\"style-3\" background_color=\"#000\"][/search-box]</div><div>[popular-category title=\"Popular category\" limit_category=\"8\" style=\"style-1\"][/popular-category]</div><div>[job-categories title=\"Categories\" subtitle=\"All categories\" limit_category=\"8\"][/job-categories]</div>',1,NULL,'default',NULL,'published','2024-09-18 03:10:45','2024-09-18 03:10:45');
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

LOCK TABLES `post_categories` WRITE;
/*!40000 ALTER TABLE `post_categories` DISABLE KEYS */;
INSERT INTO `post_categories` VALUES (2,1),(5,1),(3,2),(5,2),(2,3),(5,3);
/*!40000 ALTER TABLE `post_categories` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `post_tags` WRITE;
/*!40000 ALTER TABLE `post_tags` DISABLE KEYS */;
INSERT INTO `post_tags` VALUES (1,1),(2,1),(3,1),(4,1),(5,1),(1,2),(2,2),(3,2),(4,2),(5,2),(1,3),(2,3),(3,3),(4,3),(5,3);
/*!40000 ALTER TABLE `post_tags` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `posts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `author_id` bigint unsigned DEFAULT NULL,
  `author_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `views` int unsigned NOT NULL DEFAULT '0',
  `format_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `posts_status_index` (`status`),
  KEY `posts_author_id_index` (`author_id`),
  KEY `posts_author_type_index` (`author_type`),
  KEY `posts_created_at_index` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=4 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,'Interview Question: Why Dont You Have a Degree?','Quae minima dolorem vel ipsam. Qui saepe assumenda possimus cupiditate eum ad consequatur ut. Eum sunt quod eum. Dolorem sint voluptatum nesciunt.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Hatter, and he poured a little more conversation with her arms round it as she had found the fan and gloves, and, as there was room for her. \'I can hardly breathe.\' \'I can\'t explain MYSELF, I\'m afraid, but you might knock, and I had not gone far before they saw Alice coming. \'There\'s PLENTY of room!\' said Alice sharply, for she was to get through was more hopeless than ever: she sat still just as well. The twelve jurors were writing down \'stupid things!\' on their slates, when the tide rises and sharks are around, His voice has a timid voice at her feet, for it to the beginning of the door of which was lit up by wild beasts and other unpleasant things, all because they WOULD not remember the simple and loving heart of her skirt, upsetting all the way to fly up into the air off all its feet at once, and ran till she shook the house, \"Let us both go to law: I will prosecute YOU.--Come, I\'ll take no denial; We must have been that,\' said the Hatter: \'let\'s all move one place on.\' He moved.</p><p class=\"text-center\"><img src=\"/storage/news/4.jpg\" style=\"width: 100%\" class=\"image_resized\" alt=\"image\"></p><p>And yet I don\'t like the right size, that it was good manners for her neck from being broken. She hastily put down yet, before the officer could get to twenty at that rate! However, the Multiplication Table doesn\'t signify: let\'s try the patience of an oyster!\' \'I wish I hadn\'t drunk quite so much!\' said Alice, \'we learned French and music.\' \'And washing?\' said the Duchess: you\'d better finish the story for yourself.\' \'No, please go on!\' Alice said very politely, \'for I can\'t remember,\' said.</p><p class=\"text-center\"><img src=\"/storage/news/6.jpg\" style=\"width: 100%\" class=\"image_resized\" alt=\"image\"></p><p>Queen. \'It proves nothing of the miserable Mock Turtle. \'She can\'t explain MYSELF, I\'m afraid, but you might do very well as she could. \'The Dormouse is asleep again,\' said the King: \'leave out that part.\' \'Well, at any rate I\'ll never go THERE again!\' said Alice indignantly. \'Ah! then yours wasn\'t a really good school,\' said the Caterpillar, and the roof was thatched with fur. It was high time you were never even spoke to Time!\' \'Perhaps not,\' Alice cautiously replied, not feeling at all like the Queen?\' said the King. \'Nothing whatever,\' said Alice. \'Then it doesn\'t mind.\' The table was a very decided tone: \'tell her something worth hearing. For some minutes the whole she thought of herself, \'I wish I could show you our cat Dinah: I think it so VERY tired of being upset, and their slates and pencils had been anxiously looking across the garden, where Alice could only hear whispers now and then, if I only wish they WOULD put their heads off?\' shouted the Gryphon, with a great.</p><p class=\"text-center\"><img src=\"/storage/news/11.jpg\" style=\"width: 100%\" class=\"image_resized\" alt=\"image\"></p><p>Alice heard it say to itself, \'Oh dear! Oh dear! I wish I could say if I might venture to ask them what the next moment a shower of saucepans, plates, and dishes. The Duchess took her choice, and was going to leave off being arches to do anything but sit with its head, it WOULD twist itself round and look up in such long curly brown hair! And it\'ll fetch things when you throw them, and was going to do it! Oh dear! I shall see it trot away quietly into the teapot. \'At any rate it would not join the dance? \"You can really have no sort of circle, (\'the exact shape doesn\'t matter,\' it said,) and then she heard one of these cakes,\' she thought, and rightly too, that very few things indeed were really impossible. There seemed to quiver all over with fright. \'Oh, I BEG your pardon!\' cried Alice hastily, afraid that it ought to have wondered at this, but at last the Mock Turtle went on. \'Would you like the look of things at all, as the Lory positively refused to tell me your history, you.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/img-news1.png',2145,NULL,'2024-09-06 01:08:38','2024-09-06 01:08:38'),(2,'21 Job Interview Tips: How To Make a Great Impression','Sint omnis architecto quia aut veritatis eveniet maxime beatae. Repudiandae et aut iste earum natus ea velit.','<p>Queen shrieked out. \'Behead that Dormouse! Turn that Dormouse out of the way of nursing it, (which was to get out again. Suddenly she came upon a little different. But if I\'m not particular as to go on. \'And so these three little sisters,\' the Dormouse turned out, and, by the prisoner to--to somebody.\' \'It must be the best way you have to beat them off, and found herself in a louder tone. \'ARE you to set about it; and as it spoke (it was Bill, I fancy--Who\'s to go down the chimney, and said nothing. \'When we were little,\' the Mock Turtle\'s Story \'You can\'t think how glad I am so VERY much out of the room. The cook threw a frying-pan after her as hard as she could get to twenty at that rate! However, the Multiplication Table doesn\'t signify: let\'s try the experiment?\' \'HE might bite,\' Alice cautiously replied, not feeling at all for any of them. However, on the ground near the centre of the house of the cupboards as she went round the hall, but they began solemnly dancing round and.</p><p class=\"text-center\"><img src=\"/storage/news/3.jpg\" style=\"width: 100%\" class=\"image_resized\" alt=\"image\"></p><p>What happened to you? Tell us all about as she couldn\'t answer either question, it didn\'t much matter which way she put one arm out of its mouth, and addressed her in the air, and came back again. \'Keep your temper,\' said the Hatter. \'It isn\'t directed at all,\' said Alice: \'three inches is such a dreadful time.\' So Alice got up this morning, but I think that will be When they take us up and ran off, thinking while she was beginning very angrily, but the Dormouse shall!\' they both bowed low.</p><p class=\"text-center\"><img src=\"/storage/news/7.jpg\" style=\"width: 100%\" class=\"image_resized\" alt=\"image\"></p><p>On various pretexts they all crowded together at one corner of it: for she was out of their hearing her; and when she had never been so much already, that it might belong to one of the court. \'What do you know about this business?\' the King had said that day. \'That PROVES his guilt,\' said the Gryphon went on, \'--likely to win, that it\'s hardly worth while finishing the game.\' The Queen had never left off writing on his knee, and the other two were using it as far as they came nearer, Alice could only hear whispers now and then unrolled the parchment scroll, and read as follows:-- \'The Queen will hear you! You see, she came upon a heap of sticks and dry leaves, and the constant heavy sobbing of the sea.\' \'I couldn\'t help it,\' said the Hatter: \'it\'s very interesting. I never knew whether it was only too glad to get her head to hide a smile: some of YOUR adventures.\' \'I could tell you his history,\' As they walked off together. Alice was so full of tears, but said nothing. \'Perhaps it.</p><p class=\"text-center\"><img src=\"/storage/news/11.jpg\" style=\"width: 100%\" class=\"image_resized\" alt=\"image\"></p><p>March Hare. \'Then it doesn\'t matter a bit,\' she thought of herself, \'I wonder how many hours a day is very confusing.\' \'It isn\'t,\' said the youth, \'one would hardly suppose That your eye was as much as she could, for her to wink with one finger; and the baby was howling so much contradicted in her life, and had been wandering, when a sharp hiss made her so savage when they passed too close, and waving their forepaws to mark the time, while the Mouse was swimming away from him, and very soon had to do this, so that they could not taste theirs, and the constant heavy sobbing of the tale was something like it,\' said Five, \'and I\'ll tell you my adventures--beginning from this morning,\' said Alice in a trembling voice to a mouse: she had never done such a thing before, but she did not dare to disobey, though she looked up, but it had finished this short speech, they all quarrel so dreadfully one can\'t hear oneself speak--and they don\'t give birthday presents like that!\' He got behind him.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/img-news2.png',389,NULL,'2024-08-20 17:31:21','2024-08-20 17:31:21'),(3,'39 Strengths and Weaknesses To Discuss in a Job Interview','Nihil ab ut velit optio. Amet sit eveniet debitis autem voluptas rem. Voluptatem occaecati id modi cum illum autem similique. Ut libero tempora eos quod.','<p>Don\'t let me hear the Rabbit came near her, she began, rather timidly, saying to herself how she would have done that?\' she thought. \'I must be collected at once crowded round it, panting, and asking, \'But who has won?\' This question the Dodo could not join the dance. So they went on all the same, shedding gallons of tears, but said nothing. \'When we were little,\' the Mock Turtle, and said nothing. \'This here young lady,\' said the Pigeon; \'but if they do, why then they\'re a kind of authority among them, called out, \'First witness!\' The first thing I\'ve got to come yet, please your Majesty,\' said the Gryphon. \'It\'s all his fancy, that: he hasn\'t got no business there, at any rate I\'ll never go THERE again!\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have been ill.\' \'So they were,\' said the Gryphon: and it said nothing. \'When we were little,\' the Mock Turtle went on, \'if you only kept on puzzling about it while the rest were quite dry again, the.</p><p class=\"text-center\"><img src=\"/storage/news/2.jpg\" style=\"width: 100%\" class=\"image_resized\" alt=\"image\"></p><p>Alice called out in a coaxing tone, and everybody laughed, \'Let the jury consider their verdict,\' the King said to the beginning of the house!\' (Which was very nearly getting up and say \"Who am I to do?\' said Alice. \'Nothing WHATEVER?\' persisted the King. On this the whole party swam to the end: then stop.\' These were the cook, and a fall, and a scroll of parchment in the flurry of the court. (As that is rather a complaining tone, \'and they all looked puzzled.) \'He must have been changed for.</p><p class=\"text-center\"><img src=\"/storage/news/8.jpg\" style=\"width: 100%\" class=\"image_resized\" alt=\"image\"></p><p>King said, with a whiting. Now you know.\' It was, no doubt: only Alice did not appear, and after a minute or two to think to herself, \'I wish the creatures wouldn\'t be in a hoarse, feeble voice: \'I heard every word you fellows were saying.\' \'Tell us a story!\' said the Footman, and began staring at the cook was busily stirring the soup, and seemed to rise like a thunderstorm. \'A fine day, your Majesty!\' the soldiers remaining behind to execute the unfortunate gardeners, who ran to Alice as she spoke. Alice did not dare to disobey, though she felt that it might injure the brain; But, now that I\'m perfectly sure I don\'t care which happens!\' She ate a little feeble, squeaking voice, (\'That\'s Bill,\' thought Alice,) \'Well, I can\'t remember,\' said the Duck: \'it\'s generally a frog or a watch to take the roof off.\' After a while she was now the right size for going through the doorway; \'and even if my head would go through,\' thought poor Alice, \'to speak to this mouse? Everything is so.</p><p class=\"text-center\"><img src=\"/storage/news/13.jpg\" style=\"width: 100%\" class=\"image_resized\" alt=\"image\"></p><p>WHAT?\' thought Alice; \'I might as well say that \"I see what would happen next. The first question of course had to stop and untwist it. After a time she went on all the children she knew, who might do something better with the other end of his head. But at any rate, the Dormouse said--\' the Hatter instead!\' CHAPTER VII. A Mad Tea-Party There was a most extraordinary noise going on rather better now,\' she added aloud. \'Do you mean by that?\' said the Gryphon. \'The reason is,\' said the Gryphon. \'It\'s all his fancy, that: he hasn\'t got no business there, at any rate: go and take it away!\' There was a little startled by seeing the Cheshire Cat sitting on a little bird as soon as she had read about them in books, and she tried to get hold of it; so, after hunting all about it!\' Last came a rumbling of little cartwheels, and the two creatures, who had been to her, so she waited. The Gryphon lifted up both its paws in surprise. \'What! Never heard of one,\' said Alice, looking down at her as.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/img-news3.png',1456,NULL,'2024-08-19 01:34:23','2024-08-19 01:34:23');
/*!40000 ALTER TABLE `posts` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` VALUES (1,'admin','Admin','{\"users.index\":true,\"users.create\":true,\"users.edit\":true,\"users.destroy\":true,\"roles.index\":true,\"roles.create\":true,\"roles.edit\":true,\"roles.destroy\":true,\"core.system\":true,\"core.cms\":true,\"core.manage.license\":true,\"systems.cronjob\":true,\"core.tools\":true,\"tools.data-synchronize\":true,\"media.index\":true,\"files.index\":true,\"files.create\":true,\"files.edit\":true,\"files.trash\":true,\"files.destroy\":true,\"folders.index\":true,\"folders.create\":true,\"folders.edit\":true,\"folders.trash\":true,\"folders.destroy\":true,\"settings.index\":true,\"settings.common\":true,\"settings.options\":true,\"settings.email\":true,\"settings.media\":true,\"settings.admin-appearance\":true,\"settings.cache\":true,\"settings.datatables\":true,\"settings.email.rules\":true,\"settings.others\":true,\"menus.index\":true,\"menus.create\":true,\"menus.edit\":true,\"menus.destroy\":true,\"optimize.settings\":true,\"pages.index\":true,\"pages.create\":true,\"pages.edit\":true,\"pages.destroy\":true,\"plugins.index\":true,\"plugins.edit\":true,\"plugins.remove\":true,\"plugins.marketplace\":true,\"core.appearance\":true,\"theme.index\":true,\"theme.activate\":true,\"theme.remove\":true,\"theme.options\":true,\"theme.custom-css\":true,\"theme.custom-js\":true,\"theme.custom-html\":true,\"theme.robots-txt\":true,\"settings.website-tracking\":true,\"widgets.index\":true,\"ads.index\":true,\"ads.create\":true,\"ads.edit\":true,\"ads.destroy\":true,\"ads.settings\":true,\"analytics.general\":true,\"analytics.page\":true,\"analytics.browser\":true,\"analytics.referrer\":true,\"analytics.settings\":true,\"audit-log.index\":true,\"audit-log.destroy\":true,\"backups.index\":true,\"backups.create\":true,\"backups.restore\":true,\"backups.destroy\":true,\"plugins.blog\":true,\"posts.index\":true,\"posts.create\":true,\"posts.edit\":true,\"posts.destroy\":true,\"categories.index\":true,\"categories.create\":true,\"categories.edit\":true,\"categories.destroy\":true,\"tags.index\":true,\"tags.create\":true,\"tags.edit\":true,\"tags.destroy\":true,\"blog.settings\":true,\"posts.export\":true,\"posts.import\":true,\"captcha.settings\":true,\"contacts.index\":true,\"contacts.edit\":true,\"contacts.destroy\":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,\"galleries.index\":true,\"galleries.create\":true,\"galleries.edit\":true,\"galleries.destroy\":true,\"plugins.job-board\":true,\"jobs.index\":true,\"jobs.create\":true,\"jobs.edit\":true,\"jobs.destroy\":true,\"import-jobs.index\":true,\"export-jobs.index\":true,\"job-applications.index\":true,\"job-applications.edit\":true,\"job-applications.destroy\":true,\"accounts.index\":true,\"accounts.create\":true,\"accounts.edit\":true,\"accounts.destroy\":true,\"accounts.import\":true,\"accounts.export\":true,\"packages.index\":true,\"packages.create\":true,\"packages.edit\":true,\"packages.destroy\":true,\"companies.index\":true,\"companies.create\":true,\"companies.edit\":true,\"companies.destroy\":true,\"export-companies.index\":true,\"import-companies.index\":true,\"job-board.custom-fields.index\":true,\"job-board.custom-fields.create\":true,\"job-board.custom-fields.edit\":true,\"job-board.custom-fields.destroy\":true,\"job-attributes.index\":true,\"job-categories.index\":true,\"job-categories.create\":true,\"job-categories.edit\":true,\"job-categories.destroy\":true,\"job-types.index\":true,\"job-types.create\":true,\"job-types.edit\":true,\"job-types.destroy\":true,\"job-skills.index\":true,\"job-skills.create\":true,\"job-skills.edit\":true,\"job-skills.destroy\":true,\"job-shifts.index\":true,\"job-shifts.create\":true,\"job-shifts.edit\":true,\"job-shifts.destroy\":true,\"job-experiences.index\":true,\"job-experiences.create\":true,\"job-experiences.edit\":true,\"job-experiences.destroy\":true,\"language-levels.index\":true,\"language-levels.create\":true,\"language-levels.edit\":true,\"language-levels.destroy\":true,\"career-levels.index\":true,\"career-levels.create\":true,\"career-levels.edit\":true,\"career-levels.destroy\":true,\"functional-areas.index\":true,\"functional-areas.create\":true,\"functional-areas.edit\":true,\"functional-areas.destroy\":true,\"degree-types.index\":true,\"degree-types.create\":true,\"degree-types.edit\":true,\"degree-types.destroy\":true,\"degree-levels.index\":true,\"degree-levels.create\":true,\"degree-levels.edit\":true,\"degree-levels.destroy\":true,\"job-board.tag.index\":true,\"job-board.tag.create\":true,\"job-board.tag.edit\":true,\"job-board.tag.destroy\":true,\"job-board.settings\":true,\"invoice.index\":true,\"invoice.edit\":true,\"invoice.destroy\":true,\"reviews.index\":true,\"reviews.destroy\":true,\"invoice-template.index\":true,\"languages.index\":true,\"languages.create\":true,\"languages.edit\":true,\"languages.destroy\":true,\"plugin.location\":true,\"country.index\":true,\"country.create\":true,\"country.edit\":true,\"country.destroy\":true,\"state.index\":true,\"state.create\":true,\"state.edit\":true,\"state.destroy\":true,\"city.index\":true,\"city.create\":true,\"city.edit\":true,\"city.destroy\":true,\"newsletter.index\":true,\"newsletter.destroy\":true,\"newsletter.settings\":true,\"payment.index\":true,\"payments.settings\":true,\"payment.destroy\":true,\"payments.logs\":true,\"payments.logs.show\":true,\"payments.logs.destroy\":true,\"social-login.settings\":true,\"team.index\":true,\"team.create\":true,\"team.edit\":true,\"team.destroy\":true,\"testimonial.index\":true,\"testimonial.create\":true,\"testimonial.edit\":true,\"testimonial.destroy\":true,\"plugins.translation\":true,\"translations.locales\":true,\"translations.theme-translations\":true,\"translations.index\":true,\"theme-translations.export\":true,\"other-translations.export\":true,\"theme-translations.import\":true,\"other-translations.import\":true}','Admin users role',1,1,1,'2024-09-18 03:10:42','2024-09-18 03:10:42');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `settings_key_unique` (`key`)
) ENGINE=InnoDB AUTO_INCREMENT=53 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 (2,'api_enabled','0',NULL,'2024-09-18 03:10:42'),(3,'activated_plugins','[\"language\",\"language-advanced\",\"ads\",\"analytics\",\"audit-log\",\"backup\",\"blog\",\"captcha\",\"contact\",\"cookie-consent\",\"faq\",\"gallery\",\"job-board\",\"location\",\"newsletter\",\"payment\",\"paypal\",\"paystack\",\"razorpay\",\"rss-feed\",\"social-login\",\"sslcommerz\",\"stripe\",\"team\",\"testimonial\",\"translation\"]',NULL,'2024-09-18 03:10:42'),(4,'analytics_dashboard_widgets','0','2024-09-18 03:10:40','2024-09-18 03:10:40'),(5,'enable_recaptcha_botble_contact_forms_fronts_contact_form','1','2024-09-18 03:10:41','2024-09-18 03:10:41'),(7,'enable_recaptcha_botble_newsletter_forms_fronts_newsletter_form','1','2024-09-18 03:10:41','2024-09-18 03:10:41'),(10,'language_hide_default','1',NULL,NULL),(11,'language_switcher_display','dropdown',NULL,NULL),(12,'language_display','all',NULL,NULL),(13,'language_hide_languages','[]',NULL,NULL),(14,'show_admin_bar','1',NULL,NULL),(15,'theme','jobbox',NULL,NULL),(16,'admin_logo','general/logo-light.png',NULL,NULL),(17,'admin_favicon','general/favicon.png',NULL,NULL),(18,'theme-jobbox-site_title','JobBox - Laravel Job Board Script',NULL,NULL),(19,'theme-jobbox-seo_description','JobBox is a neat, clean and professional job board website script for your organization. It’s easy to build a complete Job Board site with JobBox script.',NULL,NULL),(20,'theme-jobbox-copyright','©2024 Archi Elite JSC. All right reserved.',NULL,NULL),(21,'theme-jobbox-favicon','general/favicon.png',NULL,NULL),(22,'theme-jobbox-logo','general/logo.png',NULL,NULL),(23,'theme-jobbox-hotline','+(123) 345-6789',NULL,NULL),(24,'theme-jobbox-cookie_consent_message','Your experience on this site will be improved by allowing cookies ',NULL,NULL),(25,'theme-jobbox-cookie_consent_learn_more_url','/cookie-policy',NULL,NULL),(26,'theme-jobbox-cookie_consent_learn_more_text','Cookie Policy',NULL,NULL),(27,'theme-jobbox-homepage_id','1',NULL,NULL),(28,'theme-jobbox-blog_page_id','13',NULL,NULL),(29,'theme-jobbox-preloader_enabled','no',NULL,NULL),(30,'theme-jobbox-job_categories_page_id','18',NULL,NULL),(31,'theme-jobbox-job_candidates_page_id','9',NULL,NULL),(32,'theme-jobbox-default_company_cover_image','general/cover-image.png',NULL,NULL),(33,'theme-jobbox-job_companies_page_id','8',NULL,NULL),(34,'theme-jobbox-job_list_page_id','7',NULL,NULL),(35,'theme-jobbox-email','contact@jobbox.com',NULL,NULL),(36,'theme-jobbox-404_page_image','general/404.png',NULL,NULL),(37,'theme-jobbox-background_breadcrumb','pages/bg-breadcrumb.png',NULL,NULL),(38,'theme-jobbox-blog_page_template_blog','blog_gird_1',NULL,NULL),(39,'theme-jobbox-background_blog_single','pages/img-single.png',NULL,NULL),(40,'theme-jobbox-auth_background_image_1','authentication/img-1.png',NULL,NULL),(41,'theme-jobbox-auth_background_image_2','authentication/img-2.png',NULL,NULL),(42,'theme-jobbox-background_cover_candidate_default','pages/background-cover-candidate.png',NULL,NULL),(43,'theme-jobbox-job_board_max_salary_filter','10000',NULL,NULL),(44,'theme-jobbox-social_links','[[{\"key\":\"social-name\",\"value\":\"Facebook\"},{\"key\":\"social-icon\",\"value\":\"socials\\/facebook.png\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/facebook.com\"}],[{\"key\":\"social-name\",\"value\":\"Linkedin\"},{\"key\":\"social-icon\",\"value\":\"socials\\/linkedin.png\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/linkedin.com\"}],[{\"key\":\"social-name\",\"value\":\"Twitter\"},{\"key\":\"social-icon\",\"value\":\"socials\\/twitter.png\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/twitter.com\"}]]',NULL,NULL),(45,'media_random_hash','532aa508bc982ef66928757cc78f8b25',NULL,NULL),(46,'permalink-botble-blog-models-post','blog',NULL,NULL),(47,'permalink-botble-blog-models-category','blog',NULL,NULL),(48,'payment_cod_status','1',NULL,NULL),(49,'payment_cod_description','Please pay money directly to the postman, if you choose cash on delivery method (COD).',NULL,NULL),(50,'payment_bank_transfer_status','1',NULL,NULL),(51,'payment_bank_transfer_description','Please send money to our bank account: ACB - 69270 213 19.',NULL,NULL),(52,'payment_stripe_payment_type','stripe_checkout',NULL,NULL);
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `slugs` WRITE;
/*!40000 ALTER TABLE `slugs` DISABLE KEYS */;
INSERT INTO `slugs` VALUES (1,'homepage-1',1,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(2,'homepage-2',2,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(3,'homepage-3',3,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(4,'homepage-4',4,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(5,'homepage-5',5,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(6,'homepage-6',6,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(7,'jobs',7,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(8,'companies',8,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(9,'candidates',9,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(10,'about-us',10,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(11,'pricing-plan',11,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(12,'contact',12,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(13,'blog',13,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(14,'cookie-policy',14,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(15,'faqs',15,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(16,'services',16,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(17,'terms',17,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(18,'job-categories',18,'Botble\\Page\\Models\\Page','','2024-09-18 03:10:45','2024-09-18 03:10:45'),(19,'design',1,'Botble\\Blog\\Models\\Category','blog','2024-09-18 03:10:46','2024-09-18 03:10:50'),(20,'lifestyle',2,'Botble\\Blog\\Models\\Category','blog','2024-09-18 03:10:46','2024-09-18 03:10:50'),(21,'travel-tips',3,'Botble\\Blog\\Models\\Category','blog','2024-09-18 03:10:46','2024-09-18 03:10:50'),(22,'healthy',4,'Botble\\Blog\\Models\\Category','blog','2024-09-18 03:10:46','2024-09-18 03:10:50'),(23,'travel-tips',5,'Botble\\Blog\\Models\\Category','blog','2024-09-18 03:10:46','2024-09-18 03:10:50'),(24,'hotel',6,'Botble\\Blog\\Models\\Category','blog','2024-09-18 03:10:46','2024-09-18 03:10:50'),(25,'nature',7,'Botble\\Blog\\Models\\Category','blog','2024-09-18 03:10:46','2024-09-18 03:10:50'),(26,'new',1,'Botble\\Blog\\Models\\Tag','tag','2024-09-18 03:10:46','2024-09-18 03:10:46'),(27,'event',2,'Botble\\Blog\\Models\\Tag','tag','2024-09-18 03:10:46','2024-09-18 03:10:46'),(28,'interview-question-why-dont-you-have-a-degree',1,'Botble\\Blog\\Models\\Post','blog','2024-09-18 03:10:46','2024-09-18 03:10:50'),(29,'21-job-interview-tips-how-to-make-a-great-impression',2,'Botble\\Blog\\Models\\Post','blog','2024-09-18 03:10:46','2024-09-18 03:10:50'),(30,'39-strengths-and-weaknesses-to-discuss-in-a-job-interview',3,'Botble\\Blog\\Models\\Post','blog','2024-09-18 03:10:46','2024-09-18 03:10:50'),(31,'perfect',1,'Botble\\Gallery\\Models\\Gallery','galleries','2024-09-18 03:10:47','2024-09-18 03:10:47'),(32,'new-day',2,'Botble\\Gallery\\Models\\Gallery','galleries','2024-09-18 03:10:47','2024-09-18 03:10:47'),(33,'happy-day',3,'Botble\\Gallery\\Models\\Gallery','galleries','2024-09-18 03:10:47','2024-09-18 03:10:47'),(34,'nature',4,'Botble\\Gallery\\Models\\Gallery','galleries','2024-09-18 03:10:47','2024-09-18 03:10:47'),(35,'morning',5,'Botble\\Gallery\\Models\\Gallery','galleries','2024-09-18 03:10:47','2024-09-18 03:10:47'),(36,'photography',6,'Botble\\Gallery\\Models\\Gallery','galleries','2024-09-18 03:10:47','2024-09-18 03:10:47'),(37,'content-writer',1,'Botble\\JobBoard\\Models\\Category','job-categories','2024-09-18 03:10:52','2024-09-18 03:10:52'),(38,'market-research',2,'Botble\\JobBoard\\Models\\Category','job-categories','2024-09-18 03:10:52','2024-09-18 03:10:52'),(39,'marketing-sale',3,'Botble\\JobBoard\\Models\\Category','job-categories','2024-09-18 03:10:52','2024-09-18 03:10:52'),(40,'customer-help',4,'Botble\\JobBoard\\Models\\Category','job-categories','2024-09-18 03:10:52','2024-09-18 03:10:52'),(41,'finance',5,'Botble\\JobBoard\\Models\\Category','job-categories','2024-09-18 03:10:52','2024-09-18 03:10:52'),(42,'software',6,'Botble\\JobBoard\\Models\\Category','job-categories','2024-09-18 03:10:52','2024-09-18 03:10:52'),(43,'human-resource',7,'Botble\\JobBoard\\Models\\Category','job-categories','2024-09-18 03:10:52','2024-09-18 03:10:52'),(44,'management',8,'Botble\\JobBoard\\Models\\Category','job-categories','2024-09-18 03:10:52','2024-09-18 03:10:52'),(45,'retail-products',9,'Botble\\JobBoard\\Models\\Category','job-categories','2024-09-18 03:10:52','2024-09-18 03:10:52'),(46,'security-analyst',10,'Botble\\JobBoard\\Models\\Category','job-categories','2024-09-18 03:10:52','2024-09-18 03:10:52'),(47,'linkedin',1,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(48,'adobe-illustrator',2,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(49,'bing-search',3,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(50,'dailymotion',4,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(51,'linkedin',5,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(52,'quora-jsc',6,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(53,'nintendo',7,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(54,'periscope',8,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(55,'newsum',9,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(56,'powerhome',10,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(57,'whopcom',11,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(58,'greenwood',12,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(59,'kentucky',13,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(60,'equity',14,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(61,'honda',15,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(62,'toyota',16,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:53','2024-09-18 03:10:53'),(63,'lexus',17,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:54','2024-09-18 03:10:54'),(64,'ondo',18,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:54','2024-09-18 03:10:54'),(65,'square',19,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:54','2024-09-18 03:10:54'),(66,'visa',20,'Botble\\JobBoard\\Models\\Company','companies','2024-09-18 03:10:54','2024-09-18 03:10:54'),(67,'illustrator',1,'Botble\\JobBoard\\Models\\Tag','job-tags','2024-09-18 03:10:54','2024-09-18 03:10:54'),(68,'adobe-xd',2,'Botble\\JobBoard\\Models\\Tag','job-tags','2024-09-18 03:10:54','2024-09-18 03:10:54'),(69,'figma',3,'Botble\\JobBoard\\Models\\Tag','job-tags','2024-09-18 03:10:54','2024-09-18 03:10:54'),(70,'sketch',4,'Botble\\JobBoard\\Models\\Tag','job-tags','2024-09-18 03:10:54','2024-09-18 03:10:54'),(71,'lunacy',5,'Botble\\JobBoard\\Models\\Tag','job-tags','2024-09-18 03:10:54','2024-09-18 03:10:54'),(72,'php',6,'Botble\\JobBoard\\Models\\Tag','job-tags','2024-09-18 03:10:54','2024-09-18 03:10:54'),(73,'python',7,'Botble\\JobBoard\\Models\\Tag','job-tags','2024-09-18 03:10:54','2024-09-18 03:10:54'),(74,'javascript',8,'Botble\\JobBoard\\Models\\Tag','job-tags','2024-09-18 03:10:54','2024-09-18 03:10:54'),(75,'ui-ux-designer-full-time',1,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(76,'full-stack-engineer',2,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(77,'java-software-engineer',3,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(78,'digital-marketing-manager',4,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(79,'frontend-developer',5,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(80,'react-native-web-developer',6,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(81,'senior-system-engineer',7,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(82,'products-manager',8,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(83,'lead-quality-control-qa',9,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(84,'principal-designer-design-systems',10,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(85,'devops-architect',11,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(86,'senior-software-engineer-npm-cli',12,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(87,'senior-systems-engineer',13,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(88,'software-engineer-actions-platform',14,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(89,'staff-engineering-manager-actions',15,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:54','2024-09-18 03:10:54'),(90,'staff-engineering-manager-actions-runtime',16,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(91,'staff-engineering-manager-packages',17,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(92,'staff-software-engineer',18,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(93,'systems-software-engineer',19,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(94,'senior-compensation-analyst',20,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(95,'senior-accessibility-program-manager',21,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(96,'analyst-relations-manager-application-security',22,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(97,'senior-enterprise-advocate-emea',23,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(98,'deal-desk-manager',24,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(99,'director-revenue-compensation',25,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(100,'program-manager',26,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(101,'sr-manager-deal-desk-intl',27,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(102,'senior-director-product-management-actions-runners-and-compute-services',28,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(103,'alliances-director',29,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(104,'corporate-sales-representative',30,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(105,'country-leader',31,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(106,'customer-success-architect',32,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(107,'devops-account-executive-us-public-sector',33,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(108,'enterprise-account-executive',34,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(109,'senior-engineering-manager-product-security-engineering-paved-paths',35,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(110,'customer-reliability-engineer-iii',36,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(111,'support-engineer-enterprise-support-japanese',37,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(112,'technical-partner-manager',38,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(113,'sr-manager-inside-account-management',39,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(114,'services-sales-representative',40,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(115,'services-delivery-manager',41,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(116,'senior-solutions-engineer',42,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(117,'senior-service-delivery-engineer',43,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(118,'senior-director-global-sales-development',44,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(119,'partner-program-manager',45,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(120,'principal-cloud-solutions-engineer',46,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(121,'senior-cloud-solutions-engineer',47,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(122,'senior-customer-success-manager',48,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(123,'inside-account-manager',49,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(124,'ux-jobs-board',50,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(125,'senior-laravel-developer-tall-stack',51,'Botble\\JobBoard\\Models\\Job','jobs','2024-09-18 03:10:55','2024-09-18 03:10:55'),(126,'gene',1,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:10:56','2024-09-18 03:10:56'),(127,'aubrey',2,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:10:56','2024-09-18 03:10:56'),(128,'sarah',3,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:10:57','2024-09-18 03:10:57'),(129,'steven',4,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:10:57','2024-09-18 03:10:57'),(130,'william',5,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:10:57','2024-09-18 03:10:57'),(131,'linda',6,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:10:58','2024-09-18 03:10:58'),(132,'celestine',7,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:10:58','2024-09-18 03:10:58'),(133,'cole',8,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:10:58','2024-09-18 03:10:58'),(134,'imani',9,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:10:59','2024-09-18 03:10:59'),(135,'isidro',10,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:10:59','2024-09-18 03:10:59'),(136,'teagan',11,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:10:59','2024-09-18 03:10:59'),(137,'drake',12,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:00','2024-09-18 03:11:00'),(138,'leta',13,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:00','2024-09-18 03:11:00'),(139,'ronny',14,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:00','2024-09-18 03:11:00'),(140,'marilou',15,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:01','2024-09-18 03:11:01'),(141,'alessandro',16,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:01','2024-09-18 03:11:01'),(142,'murl',17,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:01','2024-09-18 03:11:01'),(143,'idella',18,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:02','2024-09-18 03:11:02'),(144,'kaden',19,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:02','2024-09-18 03:11:02'),(145,'alejandra',20,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:02','2024-09-18 03:11:02'),(146,'betty',21,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:03','2024-09-18 03:11:03'),(147,'jaqueline',22,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:03','2024-09-18 03:11:03'),(148,'romaine',23,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:03','2024-09-18 03:11:03'),(149,'derek',24,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:03','2024-09-18 03:11:03'),(150,'amir',25,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:04','2024-09-18 03:11:04'),(151,'clarissa',26,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:04','2024-09-18 03:11:04'),(152,'modesta',27,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:04','2024-09-18 03:11:04'),(153,'christopher',28,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:05','2024-09-18 03:11:05'),(154,'paige',29,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:05','2024-09-18 03:11:05'),(155,'susie',30,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:05','2024-09-18 03:11:05'),(156,'araceli',31,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:06','2024-09-18 03:11:06'),(157,'brigitte',32,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:06','2024-09-18 03:11:06'),(158,'hobart',33,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:06','2024-09-18 03:11:06'),(159,'jace',34,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:07','2024-09-18 03:11:07'),(160,'trever',35,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:07','2024-09-18 03:11:07'),(161,'kyler',36,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:07','2024-09-18 03:11:07'),(162,'ena',37,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:07','2024-09-18 03:11:07'),(163,'emmy',38,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:08','2024-09-18 03:11:08'),(164,'bethany',39,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:08','2024-09-18 03:11:08'),(165,'sigrid',40,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:08','2024-09-18 03:11:08'),(166,'rosalee',41,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:09','2024-09-18 03:11:09'),(167,'jeff',42,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:09','2024-09-18 03:11:09'),(168,'shanon',43,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:09','2024-09-18 03:11:09'),(169,'tavares',44,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:09','2024-09-18 03:11:09'),(170,'jayne',45,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:10','2024-09-18 03:11:10'),(171,'nelda',46,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:10','2024-09-18 03:11:10'),(172,'westley',47,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:10','2024-09-18 03:11:10'),(173,'valentine',48,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:11','2024-09-18 03:11:11'),(174,'yesenia',49,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:11','2024-09-18 03:11:11'),(175,'lelah',50,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:11','2024-09-18 03:11:11'),(176,'bud',51,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:12','2024-09-18 03:11:12'),(177,'antonietta',52,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:12','2024-09-18 03:11:12'),(178,'dana',53,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:12','2024-09-18 03:11:12'),(179,'giovanny',54,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:12','2024-09-18 03:11:12'),(180,'juliet',55,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:13','2024-09-18 03:11:13'),(181,'maida',56,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:13','2024-09-18 03:11:13'),(182,'adeline',57,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:13','2024-09-18 03:11:13'),(183,'leonie',58,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:14','2024-09-18 03:11:14'),(184,'bryana',59,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:14','2024-09-18 03:11:14'),(185,'ursula',60,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:14','2024-09-18 03:11:14'),(186,'allison',61,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:15','2024-09-18 03:11:15'),(187,'rhoda',62,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:15','2024-09-18 03:11:15'),(188,'dawson',63,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:15','2024-09-18 03:11:15'),(189,'zola',64,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:15','2024-09-18 03:11:15'),(190,'noah',65,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:16','2024-09-18 03:11:16'),(191,'annie',66,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:16','2024-09-18 03:11:16'),(192,'israel',67,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:16','2024-09-18 03:11:16'),(193,'donnell',68,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:17','2024-09-18 03:11:17'),(194,'victoria',69,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:17','2024-09-18 03:11:17'),(195,'humberto',70,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:17','2024-09-18 03:11:17'),(196,'reyes',71,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:17','2024-09-18 03:11:17'),(197,'noe',72,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:18','2024-09-18 03:11:18'),(198,'june',73,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:18','2024-09-18 03:11:18'),(199,'mark',74,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:18','2024-09-18 03:11:18'),(200,'sydnee',75,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:18','2024-09-18 03:11:18'),(201,'margarete',76,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:19','2024-09-18 03:11:19'),(202,'rowland',77,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:19','2024-09-18 03:11:19'),(203,'jewel',78,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:19','2024-09-18 03:11:19'),(204,'irma',79,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:20','2024-09-18 03:11:20'),(205,'jon',80,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:20','2024-09-18 03:11:20'),(206,'esther',81,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:20','2024-09-18 03:11:20'),(207,'mafalda',82,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:21','2024-09-18 03:11:21'),(208,'allie',83,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:22','2024-09-18 03:11:22'),(209,'aric',84,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:22','2024-09-18 03:11:22'),(210,'cristian',85,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:22','2024-09-18 03:11:22'),(211,'frederic',86,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:23','2024-09-18 03:11:23'),(212,'erwin',87,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:23','2024-09-18 03:11:23'),(213,'erna',88,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:23','2024-09-18 03:11:23'),(214,'stephen',89,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:23','2024-09-18 03:11:23'),(215,'broderick',90,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:24','2024-09-18 03:11:24'),(216,'tressa',91,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:24','2024-09-18 03:11:24'),(217,'fae',92,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:24','2024-09-18 03:11:24'),(218,'lenny',93,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:25','2024-09-18 03:11:25'),(219,'chyna',94,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:25','2024-09-18 03:11:25'),(220,'tanner',95,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:25','2024-09-18 03:11:25'),(221,'miracle',96,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:26','2024-09-18 03:11:26'),(222,'mossie',97,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:26','2024-09-18 03:11:26'),(223,'santino',98,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:26','2024-09-18 03:11:26'),(224,'marge',99,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:26','2024-09-18 03:11:26'),(225,'nickolas',100,'Botble\\JobBoard\\Models\\Account','candidates','2024-09-18 03:11:27','2024-09-18 03:11:27'),(226,'interview-question-why-dont-you-have-a-degree',1,'Botble\\Blog\\Models\\Post','','2024-09-18 03:11:28','2024-09-18 03:11:28'),(227,'21-job-interview-tips-how-to-make-a-great-impression',2,'Botble\\Blog\\Models\\Post','','2024-09-18 03:11:28','2024-09-18 03:11:28'),(228,'39-strengths-and-weaknesses-to-discuss-in-a-job-interview',3,'Botble\\Blog\\Models\\Post','','2024-09-18 03:11:28','2024-09-18 03:11:28'),(229,'design',1,'Botble\\Blog\\Models\\Category','','2024-09-18 03:11:28','2024-09-18 03:11:28'),(230,'lifestyle',2,'Botble\\Blog\\Models\\Category','','2024-09-18 03:11:28','2024-09-18 03:11:28'),(231,'travel-tips',3,'Botble\\Blog\\Models\\Category','','2024-09-18 03:11:28','2024-09-18 03:11:28'),(232,'healthy',4,'Botble\\Blog\\Models\\Category','','2024-09-18 03:11:28','2024-09-18 03:11:28'),(233,'travel-tips',5,'Botble\\Blog\\Models\\Category','','2024-09-18 03:11:28','2024-09-18 03:11:28'),(234,'hotel',6,'Botble\\Blog\\Models\\Category','','2024-09-18 03:11:28','2024-09-18 03:11:28'),(235,'nature',7,'Botble\\Blog\\Models\\Category','','2024-09-18 03:11:28','2024-09-18 03:11:28'),(236,'jack-persion',1,'Botble\\Team\\Models\\Team','teams','2024-09-18 03:11:28','2024-09-18 03:11:28'),(237,'tyler-men',2,'Botble\\Team\\Models\\Team','teams','2024-09-18 03:11:28','2024-09-18 03:11:28'),(238,'mohamed-salah',3,'Botble\\Team\\Models\\Team','teams','2024-09-18 03:11:28','2024-09-18 03:11:28'),(239,'xao-shin',4,'Botble\\Team\\Models\\Team','teams','2024-09-18 03:11:28','2024-09-18 03:11:28'),(240,'peter-cop',5,'Botble\\Team\\Models\\Team','teams','2024-09-18 03:11:28','2024-09-18 03:11:28'),(241,'jacob-jones',6,'Botble\\Team\\Models\\Team','teams','2024-09-18 03:11:28','2024-09-18 03:11:28'),(242,'court-henry',7,'Botble\\Team\\Models\\Team','teams','2024-09-18 03:11:28','2024-09-18 03:11:28'),(243,'theresa',8,'Botble\\Team\\Models\\Team','teams','2024-09-18 03:11:28','2024-09-18 03:11:28');
/*!40000 ALTER TABLE `slugs` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

DROP TABLE IF EXISTS `states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `states` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `abbreviation` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_id` bigint unsigned DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `states_slug_unique` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=7 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,'France','france','FR',1,0,NULL,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(2,'England','england','EN',2,0,NULL,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(3,'New York','new-york','NY',1,0,NULL,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(4,'Holland','holland','HL',4,0,NULL,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(5,'Denmark','denmark','DN',5,0,NULL,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50'),(6,'Germany','germany','GER',1,0,NULL,0,'published','2024-09-18 03:10:50','2024-09-18 03:10:50');
/*!40000 ALTER TABLE `states` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

DROP TABLE IF EXISTS `tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tags` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `author_id` bigint unsigned DEFAULT NULL,
  `author_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 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,'New',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-09-18 03:10:46','2024-09-18 03:10:46'),(2,'Event',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-09-18 03:10:46','2024-09-18 03:10:46');
/*!40000 ALTER TABLE `tags` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

--
-- Table structure for table `teams`
--

DROP TABLE IF EXISTS `teams`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `teams` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `socials` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `phone` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `website` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `teams`
--

LOCK TABLES `teams` WRITE;
/*!40000 ALTER TABLE `teams` DISABLE KEYS */;
INSERT INTO `teams` VALUES (1,'Jack Persion','teams/1.png','Developer Fullstack','USA','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,NULL,NULL,NULL,NULL,NULL),(2,'Tyler Men','teams/2.png','Business Analyst','Qatar','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,NULL,NULL,NULL,NULL,NULL),(3,'Mohamed Salah','teams/3.png','Developer Fullstack','India','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,NULL,NULL,NULL,NULL,NULL),(4,'Xao Shin','teams/4.png','Developer Fullstack','China','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,NULL,NULL,NULL,NULL,NULL),(5,'Peter Cop','teams/5.png','Designer','Russia','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,NULL,NULL,NULL,NULL,NULL),(6,'Jacob Jones','teams/6.png','Frontend Developer','New York, US','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,NULL,NULL,NULL,NULL,NULL),(7,'Court Henry','teams/7.png','Backend Developer','Portugal','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,NULL,NULL,NULL,NULL,NULL),(8,'Theresa','teams/8.png','Backend Developer','Thailand','\"{\\\"facebook\\\":\\\"fb.com\\\",\\\"twitter\\\":\\\"twitter.com\\\",\\\"instagram\\\":\\\"instagram.com\\\"}\"','published','2024-09-18 03:11:27','2024-09-18 03:11:27',NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `teams` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `teams_translations`
--

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

--
-- Dumping data for table `teams_translations`
--

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

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

DROP TABLE IF EXISTS `testimonials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `testimonials` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `company` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `testimonials` WRITE;
/*!40000 ALTER TABLE `testimonials` DISABLE KEYS */;
INSERT INTO `testimonials` VALUES (1,'Ellis Kim','Very soon the Rabbit just under the table: she opened it, and found herself in a long, low hall, which was sitting on the glass table and the turtles all advance! They are waiting on the look-out.','testimonials/1.png','Digital Artist','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(2,'John Smith','I wonder what was going to say,\' said the Mock Turtle said with some surprise that the best cat in the last word with such a dreadful time.\' So Alice got up in a low trembling voice, \'Let us get to.','testimonials/2.png','Product designer','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(3,'Sayen Ahmod','Alice said; but was dreadfully puzzled by the way, and the little thing sobbed again (or grunted, it was all very well as I used--and I don\'t remember where.\' \'Well, it must be what he did with the.','testimonials/3.png','Developer','published','2024-09-18 03:11:27','2024-09-18 03:11:27'),(4,'Tayla Swef','Alice thought over all she could see it again, but it puzzled her very much what would be worth the trouble of getting her hands on her spectacles, and began bowing to the three gardeners at it.','testimonials/4.png','Graphic designer','published','2024-09-18 03:11:27','2024-09-18 03:11:27');
/*!40000 ALTER TABLE `testimonials` ENABLE KEYS */;
UNLOCK TABLES;

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

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

--
-- Dumping data for table `testimonials_translations`
--

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

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

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

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

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

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

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

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

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'green.alanis@stanton.net',NULL,'$2y$12$bPNYOMyJG46FC8CBGt15mOVpqKOhsDNpezJlesPP5xB2ZkDQ2h38i',NULL,'2024-09-18 03:10:42','2024-09-18 03:10:42','Ayden','Stokes','admin',NULL,1,1,NULL,NULL);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `widgets` WRITE;
/*!40000 ALTER TABLE `widgets` DISABLE KEYS */;
INSERT INTO `widgets` VALUES (1,'NewsletterWidget','pre_footer_sidebar','jobbox',0,'{\"id\":\"NewsletterWidget\",\"title\":\"New Things Will Always <br> Update Regularly\",\"background_image\":\"general\\/newsletter-background-image.png\",\"image_left\":\"general\\/newsletter-image-left.png\",\"image_right\":\"general\\/newsletter-image-right.png\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(2,'SiteInformationWidget','footer_sidebar','jobbox',1,'{\"introduction\":\"TNGamerChangers is a dynamic job search platform that aims to revolutionize the way people find work and companies discover talent. Much like Indeed, we provide a comprehensive job board where candidates can explore opportunities and employers can connect with skilled professionals.",\"facebook_url\":\"#\",\"twitter_url\":\"#\",\"linkedin_url\":\"#\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(3,'CustomMenuWidget','footer_sidebar','jobbox',2,'{\"id\":\"CustomMenuWidget\",\"name\":\"Resources\",\"menu_id\":\"resources\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(4,'CustomMenuWidget','footer_sidebar','jobbox',3,'{\"id\":\"CustomMenuWidget\",\"name\":\"Community\",\"menu_id\":\"community\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(5,'CustomMenuWidget','footer_sidebar','jobbox',4,'{\"id\":\"CustomMenuWidget\",\"name\":\"Quick links\",\"menu_id\":\"quick-links\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(6,'CustomMenuWidget','footer_sidebar','jobbox',5,'{\"id\":\"CustomMenuWidget\",\"name\":\"More\",\"menu_id\":\"more\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(7,'DownloadWidget','footer_sidebar','jobbox',6,'{\"app_store_url\":\"#\",\"app_store_image\":\"general\\/app-store.png\",\"android_app_url\":\"#\",\"google_play_image\":\"general\\/android.png\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(8,'BlogSearchWidget','primary_sidebar','jobbox',1,'{\"id\":\"BlogSearchWidget\",\"name\":\"Search\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(9,'BlogCategoriesWidget','primary_sidebar','jobbox',2,'{\"id\":\"BlogCategoriesWidget\",\"name\":\"Categories\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(10,'BlogPostsWidget','primary_sidebar','jobbox',3,'{\"id\":\"BlogPostsWidget\",\"type\":\"popular\",\"name\":\"Popular Posts\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(11,'BlogTagsWidget','primary_sidebar','jobbox',4,'{\"id\":\"BlogTagsWidget\",\"name\":\"Popular Tags\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(12,'BlogSearchWidget','blog_sidebar','jobbox',0,'{\"id\":\"BlogSearchWidget\",\"name\":\"Blog Search\",\"description\":\"Search blog posts\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(13,'BlogPostsWidget','blog_sidebar','jobbox',1,'{\"id\":\"BlogPostsWidget\",\"name\":\"Blog posts\",\"description\":\"Blog posts widget.\",\"type\":\"popular\",\"number_display\":5}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(14,'AdsBannerWidget','blog_sidebar','jobbox',2,'{\"id\":\"AdsBannerWidget\",\"name\":\"Ads banner\",\"banner_ads\":\"widgets\\/widget-banner.png\",\"url\":\"\\/\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(15,'GalleryWidget','blog_sidebar','jobbox',3,'{\"id\":\"GalleryWidget\",\"name\":\"Gallery\",\"title_gallery\":\"Gallery\",\"number_image\":8}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(16,'AdsBannerWidget','candidate_sidebar','jobbox',0,'{\"id\":\"AdsBannerWidget\",\"name\":\"Ads banner\",\"banner_ads\":\"widgets\\/widget-banner.png\",\"url\":\"\\/\"}','2024-09-18 03:10:47','2024-09-18 03:10:47'),(17,'AdsBannerWidget','company_sidebar','jobbox',0,'{\"id\":\"AdsBannerWidget\",\"name\":\"Ads banner\",\"banner_ads\":\"widgets\\/widget-banner.png\",\"url\":\"\\/\"}','2024-09-18 03:10:47','2024-09-18 03:10:47');
/*!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 2024-09-18 17:11:29
