-- Laravel Native Database Backup
-- Generated: 2025-10-15 19:56:38
-- Database: ewiidine_backend

CREATE DATABASE IF NOT EXISTS `ewiidine_backend`;
USE `ewiidine_backend`;


-- Table structure for table `areas`
DROP TABLE IF EXISTS `areas`;
CREATE TABLE `areas` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `area_name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `areas_branch_id_foreign` (`branch_id`),
  CONSTRAINT `areas_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `areas`
INSERT INTO `areas` VALUES
('1', '3', 'Roof Top', '2025-09-20 12:23:30', '2025-09-20 12:23:30'),
('2', '3', 'Ground Floor', '2025-09-20 12:23:38', '2025-09-20 12:23:38'),
('3', '4', 'Roof Top', '2025-09-20 12:57:57', '2025-09-20 12:57:57'),
('4', '4', 'Ground Floor', '2025-09-20 12:58:17', '2025-09-20 12:58:17'),
('5', '4', 'Premium Loundge', '2025-09-20 12:58:25', '2025-09-20 12:58:25'),
('6', '5', 'Ground Floor', '2025-10-07 15:00:54', '2025-10-07 15:00:54');


-- Table structure for table `branch_delivery_settings`
DROP TABLE IF EXISTS `branch_delivery_settings`;
CREATE TABLE `branch_delivery_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `max_radius` decimal(8,2) NOT NULL DEFAULT 5.00,
  `unit` enum('km','miles') NOT NULL DEFAULT 'km',
  `fee_type` varchar(191) NOT NULL DEFAULT 'fixed',
  `fixed_fee` decimal(8,2) DEFAULT NULL,
  `per_distance_rate` decimal(8,2) DEFAULT NULL,
  `free_delivery_over_amount` decimal(8,2) DEFAULT NULL,
  `free_delivery_within_radius` double DEFAULT NULL,
  `delivery_schedule_start` time DEFAULT NULL,
  `delivery_schedule_end` time DEFAULT NULL,
  `prep_time_minutes` int(11) NOT NULL DEFAULT 20,
  `additional_eta_buffer_time` int(11) DEFAULT NULL,
  `avg_delivery_speed_kmh` int(11) NOT NULL DEFAULT 30,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `branch_delivery_settings_branch_id_foreign` (`branch_id`),
  CONSTRAINT `branch_delivery_settings_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `branches`
DROP TABLE IF EXISTS `branches`;
CREATE TABLE `branches` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `unique_hash` varchar(64) DEFAULT NULL,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `cloned_branch_name` varchar(191) DEFAULT NULL,
  `cloned_branch_id` varchar(191) DEFAULT NULL,
  `is_menu_clone` tinyint(1) NOT NULL DEFAULT 0,
  `is_item_categories_clone` tinyint(1) NOT NULL DEFAULT 0,
  `is_menu_items_clone` tinyint(1) NOT NULL DEFAULT 0,
  `is_item_modifiers_clone` tinyint(1) NOT NULL DEFAULT 0,
  `is_clone_reservation_settings` tinyint(1) NOT NULL DEFAULT 0,
  `is_clone_delivery_settings` tinyint(1) NOT NULL DEFAULT 0,
  `is_clone_kot_setting` tinyint(1) NOT NULL DEFAULT 0,
  `is_modifiers_groups_clone` tinyint(1) NOT NULL DEFAULT 0,
  `address` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `lat` decimal(10,7) DEFAULT NULL,
  `lng` decimal(10,7) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `branches_unique_hash_unique` (`unique_hash`),
  KEY `branches_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `branches_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `branches`
INSERT INTO `branches` VALUES
('1', '236a9f36ba17de102192', '1', 'East Ryann', NULL, NULL, '0', '0', '0', '0', '0', '0', '0', '0', '1933 Trantow Ports\nNorth Maiya, IN 36181-1654', '2025-09-17 05:36:43', '2025-09-17 05:36:44', NULL, NULL),
('2', '9b88bdaaf32ff43b0efa', '1', 'Port Maudiemouth', NULL, NULL, '0', '0', '0', '0', '0', '0', '0', '0', '4839 Skiles Greens Apt. 934\nSouth Dorothy, HI 63471-6063', '2025-09-17 05:36:44', '2025-09-17 05:36:44', NULL, NULL),
('3', '44d04158af269bb0295f', '2', 'Kosi Road', NULL, NULL, '0', '0', '0', '0', '0', '0', '0', '0', 'Kosi Road', '2025-09-17 10:02:45', '2025-09-17 10:02:45', NULL, NULL),
('4', 'da13321c2c3594be0816', '3', 'Montreal Branch', NULL, NULL, '0', '0', '0', '0', '0', '0', '0', '0', '1250 Boul René Lévesque O Bur 2200 Montreal,Québec H3B 4W8Canada\n', '2025-09-20 12:56:44', '2025-09-20 12:56:44', NULL, NULL),
('5', '48928f740c3b5a40d588', '4', 'MESS ONE', NULL, NULL, '0', '0', '0', '0', '0', '0', '0', '0', 'IIM L MESS', '2025-10-07 15:00:09', '2025-10-07 19:16:36', '26.9405032', '80.8958627');


-- Table structure for table `cache`
DROP TABLE IF EXISTS `cache`;
CREATE TABLE `cache` (
  `key` varchar(191) NOT NULL,
  `value` mediumtext NOT NULL,
  `expiration` int(11) NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cache_locks`
DROP TABLE IF EXISTS `cache_locks`;
CREATE TABLE `cache_locks` (
  `key` varchar(191) NOT NULL,
  `owner` varchar(191) NOT NULL,
  `expiration` int(11) NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cart_header_images`
DROP TABLE IF EXISTS `cart_header_images`;
CREATE TABLE `cart_header_images` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `cart_header_setting_id` bigint(20) unsigned NOT NULL,
  `image_path` varchar(191) NOT NULL,
  `alt_text` varchar(191) DEFAULT NULL,
  `sort_order` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cart_header_images_cart_header_setting_id_foreign` (`cart_header_setting_id`),
  CONSTRAINT `cart_header_images_cart_header_setting_id_foreign` FOREIGN KEY (`cart_header_setting_id`) REFERENCES `cart_header_settings` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cart_header_settings`
DROP TABLE IF EXISTS `cart_header_settings`;
CREATE TABLE `cart_header_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned NOT NULL,
  `header_type` enum('text','image') NOT NULL DEFAULT 'text',
  `header_text` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cart_header_settings_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `cart_header_settings_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `cart_header_settings`
INSERT INTO `cart_header_settings` VALUES
('1', '1', 'text', 'Ready to Satisfy Your Cravings? Place Your Order Now!', '2025-09-17 06:06:31', '2025-09-17 06:06:31'),
('2', '4', 'text', 'Ready to Satisfy Your Cravings? Place Your Order', '2025-10-07 15:49:38', '2025-10-07 15:51:19'),
('3', '4', 'text', 'Pressure Is Temporary, Fooding is Permanent at HELL', '2025-10-07 15:50:37', '2025-10-07 15:50:37');


-- Table structure for table `cart_item_modifier_options`
DROP TABLE IF EXISTS `cart_item_modifier_options`;
CREATE TABLE `cart_item_modifier_options` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `cart_item_id` bigint(20) unsigned DEFAULT NULL,
  `modifier_option_id` bigint(20) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cart_item_modifier_options_cart_item_id_foreign` (`cart_item_id`),
  KEY `cart_item_modifier_options_modifier_option_id_foreign` (`modifier_option_id`),
  CONSTRAINT `cart_item_modifier_options_cart_item_id_foreign` FOREIGN KEY (`cart_item_id`) REFERENCES `cart_items` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_item_modifier_options_modifier_option_id_foreign` FOREIGN KEY (`modifier_option_id`) REFERENCES `modifier_options` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cart_items`
DROP TABLE IF EXISTS `cart_items`;
CREATE TABLE `cart_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `cart_session_id` bigint(20) unsigned DEFAULT NULL,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `menu_item_id` bigint(20) unsigned DEFAULT NULL,
  `menu_item_variation_id` bigint(20) unsigned DEFAULT NULL,
  `quantity` int(11) NOT NULL,
  `price` decimal(16,2) NOT NULL,
  `amount` decimal(16,2) NOT NULL,
  `tax_amount` decimal(16,2) DEFAULT NULL,
  `tax_percentage` decimal(8,4) DEFAULT NULL,
  `tax_breakup` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`tax_breakup`)),
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `kiosk_id` bigint(20) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cart_items_cart_session_id_foreign` (`cart_session_id`),
  KEY `cart_items_branch_id_foreign` (`branch_id`),
  KEY `cart_items_menu_item_id_foreign` (`menu_item_id`),
  KEY `cart_items_menu_item_variation_id_foreign` (`menu_item_variation_id`),
  KEY `cart_items_kiosk_id_foreign` (`kiosk_id`),
  CONSTRAINT `cart_items_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_items_cart_session_id_foreign` FOREIGN KEY (`cart_session_id`) REFERENCES `cart_sessions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_items_kiosk_id_foreign` FOREIGN KEY (`kiosk_id`) REFERENCES `kiosks` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_items_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_items_menu_item_variation_id_foreign` FOREIGN KEY (`menu_item_variation_id`) REFERENCES `menu_item_variations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `cart_items`
INSERT INTO `cart_items` VALUES
('1', '1', '3', '256', NULL, '2', '274.74', '549.48', NULL, NULL, NULL, '2025-09-28 12:21:26', '2025-09-28 12:21:26', NULL),
('2', '1', '3', '257', NULL, '6', '304.91', '1829.46', NULL, NULL, NULL, '2025-09-28 12:21:35', '2025-09-28 12:21:35', NULL);


-- Table structure for table `cart_sessions`
DROP TABLE IF EXISTS `cart_sessions`;
CREATE TABLE `cart_sessions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_id` varchar(191) NOT NULL,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `order_id` bigint(20) unsigned DEFAULT NULL,
  `order_type_id` bigint(20) unsigned DEFAULT NULL,
  `placed_via` enum('pos','shop','kiosk') DEFAULT NULL,
  `order_type` varchar(191) NOT NULL,
  `sub_total` decimal(16,2) NOT NULL,
  `total` decimal(16,2) NOT NULL,
  `total_tax_amount` decimal(16,2) NOT NULL DEFAULT 0.00,
  `tax_mode` enum('order','item') NOT NULL DEFAULT 'order',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `kiosk_id` bigint(20) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cart_sessions_branch_id_foreign` (`branch_id`),
  KEY `cart_sessions_order_id_foreign` (`order_id`),
  KEY `cart_sessions_order_type_id_foreign` (`order_type_id`),
  KEY `cart_sessions_kiosk_id_foreign` (`kiosk_id`),
  CONSTRAINT `cart_sessions_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_sessions_kiosk_id_foreign` FOREIGN KEY (`kiosk_id`) REFERENCES `kiosks` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_sessions_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_sessions_order_type_id_foreign` FOREIGN KEY (`order_type_id`) REFERENCES `order_types` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `cart_sessions`
INSERT INTO `cart_sessions` VALUES
('1', 'za5x74tfqzhc6CM3oLo24xA4irflUO0wjdkwxG7F', '3', NULL, NULL, 'kiosk', 'dine_in', '2378.94', '2378.94', '0.00', 'order', '2025-09-28 12:21:21', '2025-09-28 12:21:35', NULL),
('2', '2YQc0bIxOl5BPijCYtmwI6GNIYi8NIi76jByR1G4', '5', NULL, NULL, 'kiosk', 'dine_in', '0.00', '0.00', '0.00', 'order', '2025-10-07 15:15:41', '2025-10-07 15:15:41', NULL),
('3', 'AM4EPSowLJmPrHesaGOn7XixUmnM5ZIEP5fxp38u', '5', NULL, NULL, 'kiosk', 'pickup', '0.00', '0.00', '0.00', 'order', '2025-10-15 12:35:28', '2025-10-15 12:38:16', NULL);


-- Table structure for table `cash_denominations`
DROP TABLE IF EXISTS `cash_denominations`;
CREATE TABLE `cash_denominations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `value` int(11) NOT NULL,
  `sort_order` int(11) NOT NULL DEFAULT 0,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cash_register_approvals`
DROP TABLE IF EXISTS `cash_register_approvals`;
CREATE TABLE `cash_register_approvals` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `cash_register_session_id` bigint(20) unsigned NOT NULL,
  `approved_by` bigint(20) unsigned NOT NULL,
  `approved_at` datetime NOT NULL,
  `manager_note` text 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;


-- Table structure for table `cash_register_counts`
DROP TABLE IF EXISTS `cash_register_counts`;
CREATE TABLE `cash_register_counts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `cash_register_session_id` bigint(20) unsigned NOT NULL,
  `cash_denomination_id` bigint(20) unsigned NOT NULL,
  `count` int(11) NOT NULL DEFAULT 0,
  `subtotal` decimal(12,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cash_register_global_settings`
DROP TABLE IF EXISTS `cash_register_global_settings`;
CREATE TABLE `cash_register_global_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `purchase_code` varchar(191) DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `license_type` varchar(20) DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `cash_register_global_settings`
INSERT INTO `cash_register_global_settings` VALUES
('1', '65100125-205d-420e-b03c-0faa1e6f02b9', '2026-04-16 03:07:13', NULL, NULL, '1', '2025-10-15 12:16:30', '2025-10-15 12:16:31');


-- Table structure for table `cash_register_sessions`
DROP TABLE IF EXISTS `cash_register_sessions`;
CREATE TABLE `cash_register_sessions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `cash_register_id` bigint(20) unsigned NOT NULL,
  `restaurant_id` bigint(20) unsigned NOT NULL,
  `branch_id` bigint(20) unsigned NOT NULL,
  `opened_by` bigint(20) unsigned NOT NULL,
  `opened_at` datetime NOT NULL,
  `opening_float` decimal(12,2) NOT NULL DEFAULT 0.00,
  `closed_by` bigint(20) unsigned DEFAULT NULL,
  `approved_by` bigint(20) unsigned DEFAULT NULL,
  `approved_at` datetime DEFAULT NULL,
  `closed_at` datetime DEFAULT NULL,
  `expected_cash` decimal(12,2) NOT NULL DEFAULT 0.00,
  `counted_cash` decimal(12,2) NOT NULL DEFAULT 0.00,
  `discrepancy` decimal(12,2) NOT NULL DEFAULT 0.00,
  `status` varchar(191) NOT NULL DEFAULT 'open',
  `closing_note` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `cash_register_sessions`
INSERT INTO `cash_register_sessions` VALUES
('1', '1', '4', '5', '7', '2025-10-15 15:58:04', '10000.00', NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', 'open', NULL, '2025-10-15 15:58:04', '2025-10-15 15:58:04');


-- Table structure for table `cash_register_settings`
DROP TABLE IF EXISTS `cash_register_settings`;
CREATE TABLE `cash_register_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned NOT NULL,
  `force_open_after_login` tinyint(1) NOT NULL DEFAULT 0,
  `force_open_roles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`force_open_roles`)),
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `cash_register_settings_restaurant_id_unique` (`restaurant_id`),
  CONSTRAINT `cash_register_settings_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cash_register_transactions`
DROP TABLE IF EXISTS `cash_register_transactions`;
CREATE TABLE `cash_register_transactions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `cash_register_session_id` bigint(20) unsigned NOT NULL,
  `restaurant_id` bigint(20) unsigned NOT NULL,
  `branch_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned DEFAULT NULL,
  `happened_at` datetime NOT NULL,
  `type` varchar(191) NOT NULL,
  `reference` varchar(191) DEFAULT NULL,
  `reason` varchar(191) DEFAULT NULL,
  `amount` decimal(12,2) NOT NULL,
  `currency_code` varchar(191) DEFAULT NULL,
  `running_amount` decimal(12,2) NOT NULL DEFAULT 0.00,
  `created_by` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cash_register_transactions_order_id_index` (`order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `cash_register_transactions`
INSERT INTO `cash_register_transactions` VALUES
('1', '1', '4', '5', NULL, '2025-10-15 15:58:25', 'cash_in', NULL, '', '10.00', NULL, '0.00', '7', '2025-10-15 15:58:25', '2025-10-15 15:58:25'),
('2', '1', '4', '5', NULL, '2025-10-15 15:58:34', 'safe_drop', NULL, '', '500.00', NULL, '0.00', '7', '2025-10-15 15:58:34', '2025-10-15 15:58:34');


-- Table structure for table `cash_registers`
DROP TABLE IF EXISTS `cash_registers`;
CREATE TABLE `cash_registers` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned NOT NULL,
  `branch_id` bigint(20) unsigned NOT NULL,
  `name` varchar(191) NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `cash_registers`
INSERT INTO `cash_registers` VALUES
('1', '4', '5', 'Default Register', '1', '2025-10-15 15:49:47', '2025-10-15 15:49:47');


-- Table structure for table `contacts`
DROP TABLE IF EXISTS `contacts`;
CREATE TABLE `contacts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `language_setting_id` bigint(20) unsigned DEFAULT NULL,
  `email` varchar(191) DEFAULT NULL,
  `contact_company` varchar(191) DEFAULT NULL,
  `image` varchar(200) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `contacts_language_setting_id_foreign` (`language_setting_id`),
  CONSTRAINT `contacts_language_setting_id_foreign` FOREIGN KEY (`language_setting_id`) REFERENCES `language_settings` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `contacts`
INSERT INTO `contacts` VALUES
('1', '1', 'support@example.com', 'Bond Hobbs Inc', NULL, '957 Jamie Station, Lamontborough, SD 27319-9459', '2025-09-17 05:36:44', '2025-09-17 05:36:44');


-- Table structure for table `countries`
DROP TABLE IF EXISTS `countries`;
CREATE TABLE `countries` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `countries_code` char(2) NOT NULL,
  `countries_name` varchar(191) NOT NULL,
  `phonecode` varchar(191) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `countries_countries_code_index` (`countries_code`)
) ENGINE=InnoDB AUTO_INCREMENT=250 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `countries`
INSERT INTO `countries` VALUES
('1', 'AF', 'Afghanistan', '93'),
('2', 'AX', 'Åland Islands', '358'),
('3', 'AL', 'Albania', '355'),
('4', 'DZ', 'Algeria', '213'),
('5', 'AS', 'American Samoa', '1684'),
('6', 'AD', 'Andorra', '376'),
('7', 'AO', 'Angola', '244'),
('8', 'AI', 'Anguilla', '1264'),
('9', 'AQ', 'Antarctica', '0'),
('10', 'AG', 'Antigua and Barbuda', '1268'),
('11', 'AR', 'Argentina', '54'),
('12', 'AM', 'Armenia', '374'),
('13', 'AW', 'Aruba', '297'),
('14', 'AU', 'Australia', '61'),
('15', 'AT', 'Austria', '43'),
('16', 'AZ', 'Azerbaijan', '994'),
('17', 'BS', 'Bahamas', '1242'),
('18', 'BH', 'Bahrain', '973'),
('19', 'BD', 'Bangladesh', '880'),
('20', 'BB', 'Barbados', '1246'),
('21', 'BY', 'Belarus', '375'),
('22', 'BE', 'Belgium', '32'),
('23', 'BZ', 'Belize', '501'),
('24', 'BJ', 'Benin', '229'),
('25', 'BM', 'Bermuda', '1441'),
('26', 'BT', 'Bhutan', '975'),
('27', 'BO', 'Bolivia, Plurinational State of', '591'),
('28', 'BQ', 'Bonaire, Sint Eustatius and Saba', '599'),
('29', 'BA', 'Bosnia and Herzegovina', '387'),
('30', 'BW', 'Botswana', '267'),
('31', 'BV', 'Bouvet Island', '0'),
('32', 'BR', 'Brazil', '55'),
('33', 'IO', 'British Indian Ocean Territory', '246'),
('34', 'BN', 'Brunei Darussalam', '673'),
('35', 'BG', 'Bulgaria', '359'),
('36', 'BF', 'Burkina Faso', '226'),
('37', 'BI', 'Burundi', '257'),
('38', 'KH', 'Cambodia', '855'),
('39', 'CM', 'Cameroon', '237'),
('40', 'CA', 'Canada', '1'),
('41', 'CV', 'Cape Verde', '238'),
('42', 'KY', 'Cayman Islands', '1345'),
('43', 'CF', 'Central African Republic', '236'),
('44', 'TD', 'Chad', '235'),
('45', 'CL', 'Chile', '56'),
('46', 'CN', 'China', '86'),
('47', 'CX', 'Christmas Island', '61'),
('48', 'CC', 'Cocos (Keeling) Islands', '672'),
('49', 'CO', 'Colombia', '57'),
('50', 'KM', 'Comoros', '269'),
('51', 'CG', 'Congo', '242'),
('52', 'CD', 'Congo, the Democratic Republic of the', '242'),
('53', 'CK', 'Cook Islands', '682'),
('54', 'CR', 'Costa Rica', '506'),
('55', 'CI', 'Côte d\'Ivoire', '225'),
('56', 'HR', 'Croatia', '385'),
('57', 'CU', 'Cuba', '53'),
('58', 'CW', 'Curaçao', '599'),
('59', 'CY', 'Cyprus', '357'),
('60', 'CZ', 'Czech Republic', '420'),
('61', 'DK', 'Denmark', '45'),
('62', 'DJ', 'Djibouti', '253'),
('63', 'DM', 'Dominica', '1767'),
('64', 'DO', 'Dominican Republic', '1809'),
('65', 'EC', 'Ecuador', '593'),
('66', 'EG', 'Egypt', '20'),
('67', 'SV', 'El Salvador', '503'),
('68', 'GQ', 'Equatorial Guinea', '240'),
('69', 'ER', 'Eritrea', '291'),
('70', 'EE', 'Estonia', '372'),
('71', 'ET', 'Ethiopia', '251'),
('72', 'FK', 'Falkland Islands (Malvinas)', '500'),
('73', 'FO', 'Faroe Islands', '298'),
('74', 'FJ', 'Fiji', '679'),
('75', 'FI', 'Finland', '358'),
('76', 'FR', 'France', '33'),
('77', 'GF', 'French Guiana', '594'),
('78', 'PF', 'French Polynesia', '689'),
('79', 'TF', 'French Southern Territories', '0'),
('80', 'GA', 'Gabon', '241'),
('81', 'GM', 'Gambia', '220'),
('82', 'GE', 'Georgia', '995'),
('83', 'DE', 'Germany', '49'),
('84', 'GH', 'Ghana', '233'),
('85', 'GI', 'Gibraltar', '350'),
('86', 'GR', 'Greece', '30'),
('87', 'GL', 'Greenland', '299'),
('88', 'GD', 'Grenada', '1473'),
('89', 'GP', 'Guadeloupe', '590'),
('90', 'GU', 'Guam', '1671'),
('91', 'GT', 'Guatemala', '502'),
('92', 'GG', 'Guernsey', '44'),
('93', 'GN', 'Guinea', '224'),
('94', 'GW', 'Guinea-Bissau', '245'),
('95', 'GY', 'Guyana', '592'),
('96', 'HT', 'Haiti', '509'),
('97', 'HM', 'Heard Island and McDonald Islands', '0'),
('98', 'VA', 'Holy See (Vatican City State)', '39'),
('99', 'HN', 'Honduras', '504'),
('100', 'HK', 'Hong Kong', '852'),
('101', 'HU', 'Hungary', '36'),
('102', 'IS', 'Iceland', '354'),
('103', 'IN', 'India', '91'),
('104', 'ID', 'Indonesia', '62'),
('105', 'IR', 'Iran, Islamic Republic of', '98'),
('106', 'IQ', 'Iraq', '964'),
('107', 'IE', 'Ireland', '353'),
('108', 'IM', 'Isle of Man', '44'),
('109', 'IL', 'Israel', '972'),
('110', 'IT', 'Italy', '39'),
('111', 'JM', 'Jamaica', '1876'),
('112', 'JP', 'Japan', '81'),
('113', 'JE', 'Jersey', '44'),
('114', 'JO', 'Jordan', '962'),
('115', 'KZ', 'Kazakhstan', '7'),
('116', 'KE', 'Kenya', '254'),
('117', 'KI', 'Kiribati', '686'),
('118', 'KP', 'Korea, Democratic People\'s Republic of', '850'),
('119', 'KR', 'Korea, Republic of', '82'),
('120', 'KW', 'Kuwait', '965'),
('121', 'KG', 'Kyrgyzstan', '996'),
('122', 'LA', 'Lao People\'s Democratic Republic', '856'),
('123', 'LV', 'Latvia', '371'),
('124', 'LB', 'Lebanon', '961'),
('125', 'LS', 'Lesotho', '266'),
('126', 'LR', 'Liberia', '231'),
('127', 'LY', 'Libya', '218'),
('128', 'LI', 'Liechtenstein', '423'),
('129', 'LT', 'Lithuania', '370'),
('130', 'LU', 'Luxembourg', '352'),
('131', 'MO', 'Macao', '853'),
('132', 'MK', 'Macedonia, the Former Yugoslav Republic of', '389'),
('133', 'MG', 'Madagascar', '261'),
('134', 'MW', 'Malawi', '265'),
('135', 'MY', 'Malaysia', '60'),
('136', 'MV', 'Maldives', '960'),
('137', 'ML', 'Mali', '223'),
('138', 'MT', 'Malta', '356'),
('139', 'MH', 'Marshall Islands', '692'),
('140', 'MQ', 'Martinique', '596'),
('141', 'MR', 'Mauritania', '222'),
('142', 'MU', 'Mauritius', '230'),
('143', 'YT', 'Mayotte', '269'),
('144', 'MX', 'Mexico', '52'),
('145', 'FM', 'Micronesia, Federated States of', '691'),
('146', 'MD', 'Moldova, Republic of', '373'),
('147', 'MC', 'Monaco', '377'),
('148', 'MN', 'Mongolia', '976'),
('149', 'ME', 'Montenegro', '382'),
('150', 'MS', 'Montserrat', '1664'),
('151', 'MA', 'Morocco', '212'),
('152', 'MZ', 'Mozambique', '258'),
('153', 'MM', 'Myanmar', '95'),
('154', 'NA', 'Namibia', '264'),
('155', 'NR', 'Nauru', '674'),
('156', 'NP', 'Nepal', '977'),
('157', 'NL', 'Netherlands', '31'),
('158', 'NC', 'New Caledonia', '687'),
('159', 'NZ', 'New Zealand', '64'),
('160', 'NI', 'Nicaragua', '505'),
('161', 'NE', 'Niger', '227'),
('162', 'NG', 'Nigeria', '234'),
('163', 'NU', 'Niue', '683'),
('164', 'NF', 'Norfolk Island', '672'),
('165', 'MP', 'Northern Mariana Islands', '1670'),
('166', 'NO', 'Norway', '47'),
('167', 'OM', 'Oman', '968'),
('168', 'PK', 'Pakistan', '92'),
('169', 'PW', 'Palau', '680'),
('170', 'PS', 'Palestine, State of', '970'),
('171', 'PA', 'Panama', '507'),
('172', 'PG', 'Papua New Guinea', '675'),
('173', 'PY', 'Paraguay', '595'),
('174', 'PE', 'Peru', '51'),
('175', 'PH', 'Philippines', '63'),
('176', 'PN', 'Pitcairn', '0'),
('177', 'PL', 'Poland', '48'),
('178', 'PT', 'Portugal', '351'),
('179', 'PR', 'Puerto Rico', '1787'),
('180', 'QA', 'Qatar', '974'),
('181', 'RE', 'Réunion', '262'),
('182', 'RO', 'Romania', '40'),
('183', 'RU', 'Russian Federation', '7'),
('184', 'RW', 'Rwanda', '250'),
('185', 'BL', 'Saint Barthélemy', '590'),
('186', 'SH', 'Saint Helena, Ascension and Tristan da Cunha', '290'),
('187', 'KN', 'Saint Kitts and Nevis', '1869'),
('188', 'LC', 'Saint Lucia', '1758'),
('189', 'MF', 'Saint Martin (French part)', '590'),
('190', 'PM', 'Saint Pierre and Miquelon', '508'),
('191', 'VC', 'Saint Vincent and the Grenadines', '1784'),
('192', 'WS', 'Samoa', '684'),
('193', 'SM', 'San Marino', '378'),
('194', 'ST', 'Sao Tome and Principe', '239'),
('195', 'SA', 'Saudi Arabia', '966'),
('196', 'SN', 'Senegal', '221'),
('197', 'RS', 'Serbia', '381'),
('198', 'SC', 'Seychelles', '248'),
('199', 'SL', 'Sierra Leone', '232'),
('200', 'SG', 'Singapore', '65'),
('201', 'SX', 'Sint Maarten (Dutch part)', '1'),
('202', 'SK', 'Slovakia', '421'),
('203', 'SI', 'Slovenia', '386'),
('204', 'SB', 'Solomon Islands', '677'),
('205', 'SO', 'Somalia', '252'),
('206', 'ZA', 'South Africa', '27'),
('207', 'GS', 'South Georgia and the South Sandwich Islands', '0'),
('208', 'SS', 'South Sudan', '211'),
('209', 'ES', 'Spain', '34'),
('210', 'LK', 'Sri Lanka', '94'),
('211', 'SD', 'Sudan', '249'),
('212', 'SR', 'Suriname', '597'),
('213', 'SJ', 'Svalbard and Jan Mayen', '47'),
('214', 'SZ', 'Swaziland', '268'),
('215', 'SE', 'Sweden', '46'),
('216', 'CH', 'Switzerland', '41'),
('217', 'SY', 'Syrian Arab Republic', '963'),
('218', 'TW', 'Taiwan, Province of China', '886'),
('219', 'TJ', 'Tajikistan', '992'),
('220', 'TZ', 'Tanzania, United Republic of', '255'),
('221', 'TH', 'Thailand', '66'),
('222', 'TL', 'Timor-Leste', '670'),
('223', 'TG', 'Togo', '228'),
('224', 'TK', 'Tokelau', '690'),
('225', 'TO', 'Tonga', '676'),
('226', 'TT', 'Trinidad and Tobago', '1868'),
('227', 'TN', 'Tunisia', '216'),
('228', 'TR', 'Turkey', '90'),
('229', 'TM', 'Turkmenistan', '7370'),
('230', 'TC', 'Turks and Caicos Islands', '1649'),
('231', 'TV', 'Tuvalu', '688'),
('232', 'UG', 'Uganda', '256'),
('233', 'UA', 'Ukraine', '380'),
('234', 'AE', 'United Arab Emirates', '971'),
('235', 'GB', 'United Kingdom', '44'),
('236', 'US', 'United States', '1'),
('237', 'UM', 'United States Minor Outlying Islands', '1'),
('238', 'UY', 'Uruguay', '598'),
('239', 'UZ', 'Uzbekistan', '998'),
('240', 'VU', 'Vanuatu', '678'),
('241', 'VE', 'Venezuela, Bolivarian Republic of', '58'),
('242', 'VN', 'Viet Nam', '84'),
('243', 'VG', 'Virgin Islands, British', '1284'),
('244', 'VI', 'Virgin Islands, U.S.', '1340'),
('245', 'WF', 'Wallis and Futuna', '681'),
('246', 'EH', 'Western Sahara', '212'),
('247', 'YE', 'Yemen', '967'),
('248', 'ZM', 'Zambia', '260'),
('249', 'ZW', 'Zimbabwe', '263');


-- Table structure for table `currencies`
DROP TABLE IF EXISTS `currencies`;
CREATE TABLE `currencies` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `currency_name` varchar(191) NOT NULL,
  `currency_code` varchar(191) NOT NULL,
  `currency_symbol` varchar(191) NOT NULL,
  `currency_position` enum('left','right','left_with_space','right_with_space') NOT NULL DEFAULT 'left',
  `no_of_decimal` int(10) unsigned NOT NULL DEFAULT 2,
  `thousand_separator` varchar(191) DEFAULT ',',
  `decimal_separator` varchar(191) DEFAULT '.',
  `exchange_rate` decimal(16,2) DEFAULT NULL,
  `usd_price` decimal(16,2) DEFAULT NULL,
  `is_cryptocurrency` enum('yes','no') NOT NULL DEFAULT 'no',
  PRIMARY KEY (`id`),
  KEY `currencies_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `currencies_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `currencies`
INSERT INTO `currencies` VALUES
('1', '1', 'Dollars', 'USD', '$', 'left', '2', ',', '.', NULL, NULL, 'no'),
('2', '1', 'Rupee', 'INR', '₹', 'left', '2', ',', '.', NULL, NULL, 'no'),
('3', '1', 'Pounds', 'GBP', '£', 'left', '2', ',', '.', NULL, NULL, 'no'),
('4', '1', 'Euros', 'EUR', '€', 'left', '2', ',', '.', NULL, NULL, 'no'),
('5', '2', 'US Dollars', 'USD', '$', 'left', '2', ',', '.', NULL, NULL, 'no'),
('6', '2', 'Rupee', 'INR', '₹', 'left', '2', ',', '.', NULL, NULL, 'no'),
('7', '2', 'Pounds', 'GBP', '£', 'left', '2', ',', '.', NULL, NULL, 'no'),
('8', '2', 'Euros', 'EUR', '€', 'left', '2', ',', '.', NULL, NULL, 'no'),
('9', '2', 'Canadian Dollar', 'CAD', '$', 'left', '2', ',', '.', NULL, NULL, 'no'),
('10', '3', 'US Dollars', 'USD', '$', 'left', '2', ',', '.', NULL, NULL, 'no'),
('11', '3', 'Rupee', 'INR', '₹', 'left', '2', ',', '.', NULL, NULL, 'no'),
('12', '3', 'Pounds', 'GBP', '£', 'left', '2', ',', '.', NULL, NULL, 'no'),
('13', '3', 'Euros', 'EUR', '€', 'left', '2', ',', '.', NULL, NULL, 'no'),
('14', '3', 'Canadian Dollar', 'CAD', '$', 'left', '2', ',', '.', NULL, NULL, 'no'),
('15', '4', 'US Dollars', 'USD', '$', 'left', '2', ',', '.', NULL, NULL, 'no'),
('16', '4', 'Indian Rupee', 'INR', '₹', 'left', '2', ',', '.', NULL, NULL, 'no'),
('17', '4', 'Pounds', 'GBP', '£', 'left', '2', ',', '.', NULL, NULL, 'no'),
('18', '4', 'Euros', 'EUR', '€', 'left', '2', ',', '.', NULL, NULL, 'no'),
('19', '4', 'Canadian Dollar', 'CAD', '$', 'left', '2', ',', '.', NULL, NULL, 'no');


-- Table structure for table `custom_menus`
DROP TABLE IF EXISTS `custom_menus`;
CREATE TABLE `custom_menus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `menu_name` varchar(191) NOT NULL,
  `menu_slug` varchar(191) NOT NULL,
  `menu_content` longtext DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `position` enum('header','footer') NOT NULL DEFAULT 'header',
  `sort_order` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `custom_menus_menu_slug_unique` (`menu_slug`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `customer_addresses`
DROP TABLE IF EXISTS `customer_addresses`;
CREATE TABLE `customer_addresses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `label` varchar(191) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `lat` decimal(10,7) DEFAULT NULL,
  `lng` decimal(10,7) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `customer_addresses_customer_id_foreign` (`customer_id`),
  CONSTRAINT `customer_addresses_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `customers`
DROP TABLE IF EXISTS `customers`;
CREATE TABLE `customers` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `name` varchar(191) DEFAULT NULL,
  `phone` varchar(191) DEFAULT NULL,
  `phone_code` varchar(191) DEFAULT NULL,
  `email` varchar(191) DEFAULT NULL,
  `email_otp` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `delivery_address` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `customers_email_unique` (`email`),
  KEY `customers_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `customers_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `customers`
INSERT INTO `customers` VALUES
('1', '3', 'Anmol Agarwal ', '8077708564', NULL, 'agarwalanmol301@gmail.com', '713623', '2025-09-20 13:00:43', '2025-10-15 14:39:56', NULL),
('2', '4', 'Atish ', '7018146782', '91', 'atish.net@gmail.com', '570005', '2025-10-08 10:33:13', '2025-10-15 12:32:37', NULL),
('3', '4', 'Anmol', '8077708564', NULL, NULL, NULL, '2025-10-15 12:35:45', '2025-10-15 12:35:45', NULL);


-- Table structure for table `database_backup_settings`
DROP TABLE IF EXISTS `database_backup_settings`;
CREATE TABLE `database_backup_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `license_type` varchar(20) DEFAULT NULL,
  `purchase_code` varchar(191) DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT 1,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `frequency` enum('daily','weekly','monthly') NOT NULL DEFAULT 'daily',
  `backup_time` time NOT NULL DEFAULT '02:00:00',
  `retention_days` int(11) NOT NULL DEFAULT 30,
  `max_backups` int(11) NOT NULL DEFAULT 10,
  `include_files` tinyint(1) NOT NULL DEFAULT 0,
  `include_modules` tinyint(1) NOT NULL DEFAULT 0,
  `storage_location` enum('local','storage_setting') NOT NULL DEFAULT 'local',
  `storage_config` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`storage_config`)),
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `database_backup_settings`
INSERT INTO `database_backup_settings` VALUES
('1', NULL, NULL, NULL, NULL, '1', '1', 'daily', '02:00:00', '180', '10', '0', '0', 'storage_setting', '{\"filesystem\":\"wasabi\",\"auth_keys\":{\"driver\":\"s3\",\"access_key\":\"MLB2O84AO2WEMN4EU8N6\",\"secret_key\":\"O1trSCPlnClNcozZXzmj5XZEAKAgYe3s06ltibog\",\"region\":\"ca-central-1\",\"bucket\":\"ewiidine\"},\"status\":\"enabled\"}', '2025-09-17 05:48:02', '2025-10-15 19:51:40');


-- Table structure for table `database_backups`
DROP TABLE IF EXISTS `database_backups`;
CREATE TABLE `database_backups` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `filename` varchar(191) NOT NULL,
  `file_path` varchar(191) NOT NULL,
  `file_size` varchar(191) DEFAULT NULL,
  `status` enum('completed','failed','in_progress') NOT NULL DEFAULT 'in_progress',
  `error_message` text DEFAULT NULL,
  `backup_type` enum('manual','scheduled') NOT NULL DEFAULT 'manual',
  `version` varchar(191) DEFAULT NULL,
  `stored_on` varchar(191) NOT NULL DEFAULT 'local',
  `completed_at` timestamp NULL DEFAULT NULL,
  `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;

-- Dumping data for table `database_backups`
INSERT INTO `database_backups` VALUES
('8', 'backup_v1.2.50_2025-10-15_19-56-38.sql', '', NULL, 'in_progress', NULL, 'manual', '1.2.50', 'wasabi', NULL, '2025-10-15 19:56:38', '2025-10-15 19:56:38');


-- Table structure for table `delivery_executives`
DROP TABLE IF EXISTS `delivery_executives`;
CREATE TABLE `delivery_executives` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `name` varchar(191) NOT NULL,
  `phone` varchar(191) DEFAULT NULL,
  `photo` varchar(191) DEFAULT NULL,
  `status` enum('available','on_delivery','inactive') NOT NULL DEFAULT 'available',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `delivery_executives_branch_id_foreign` (`branch_id`),
  CONSTRAINT `delivery_executives_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `delivery_fee_tiers`
DROP TABLE IF EXISTS `delivery_fee_tiers`;
CREATE TABLE `delivery_fee_tiers` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `min_distance` double DEFAULT NULL,
  `max_distance` double DEFAULT NULL,
  `fee` decimal(8,2) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `delivery_fee_tiers_branch_id_foreign` (`branch_id`),
  CONSTRAINT `delivery_fee_tiers_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `denominations`
DROP TABLE IF EXISTS `denominations`;
CREATE TABLE `denominations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `uuid` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `value` decimal(10,2) NOT NULL,
  `type` enum('coin','note','bill') NOT NULL,
  `description` text DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `denominations_uuid_unique` (`uuid`),
  UNIQUE KEY `unique_denomination_per_branch` (`value`,`type`,`branch_id`,`restaurant_id`),
  KEY `denominations_branch_id_restaurant_id_index` (`branch_id`,`restaurant_id`),
  KEY `denominations_type_is_active_index` (`type`,`is_active`),
  KEY `denominations_value_type_index` (`value`,`type`),
  KEY `denominations_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `denominations_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `denominations_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `desktop_applications`
DROP TABLE IF EXISTS `desktop_applications`;
CREATE TABLE `desktop_applications` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `windows_file_path` varchar(191) DEFAULT NULL,
  `mac_file_path` varchar(191) DEFAULT NULL,
  `linux_file_path` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `desktop_applications`
INSERT INTO `desktop_applications` VALUES
('1', 'https://ewiidine.ca/', 'https://ewiidine.ca/', 'https://envato.froid.works/app/download/linux', '2025-09-17 05:36:43', '2025-10-15 14:02:38');


-- Table structure for table `email_settings`
DROP TABLE IF EXISTS `email_settings`;
CREATE TABLE `email_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `mail_from_name` varchar(191) DEFAULT NULL,
  `mail_from_email` varchar(191) DEFAULT NULL,
  `enable_queue` enum('yes','no') NOT NULL DEFAULT 'no',
  `mail_driver` enum('mail','smtp') NOT NULL DEFAULT 'mail',
  `smtp_host` varchar(191) DEFAULT NULL,
  `smtp_port` varchar(191) DEFAULT NULL,
  `smtp_encryption` varchar(191) DEFAULT NULL,
  `mail_username` varchar(191) DEFAULT NULL,
  `mail_password` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `email_verified` tinyint(1) NOT NULL DEFAULT 0,
  `verified` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `email_settings`
INSERT INTO `email_settings` VALUES
('1', 'Ewii Dine', 'no-reply@ewiidine.com', 'no', 'smtp', 'send.smtp.com', '465', 'ssl', 'ewiisolutions', 'hexpyd-7pekxi-ryFdos', '2025-09-17 05:36:44', '2025-09-20 14:25:43', '0', '1');


-- Table structure for table `expense_categories`
DROP TABLE IF EXISTS `expense_categories`;
CREATE TABLE `expense_categories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` varchar(191) DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `expense_categories_branch_id_foreign` (`branch_id`),
  CONSTRAINT `expense_categories_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `expense_categories`
INSERT INTO `expense_categories` VALUES
('1', '1', 'Rent', 'Monthly rent for restaurant space', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('2', '1', 'Utilities', 'Electricity, water, gas, and other utilities', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('3', '1', 'Salaries', 'Employee salaries and wages', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('4', '1', 'Ingredients', 'Food ingredients and raw materials', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('5', '1', 'Equipment', 'Kitchen equipment and appliances', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('6', '1', 'Marketing', 'Advertising and promotional expenses', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('7', '1', 'Insurance', 'Business insurance and liability coverage', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('8', '1', 'Maintenance', 'Repairs and maintenance costs', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('9', '1', 'Licenses', 'Business licenses and permits', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('10', '1', 'Miscellaneous', 'Other miscellaneous expenses', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('11', '2', 'Rent', 'Monthly rent for restaurant space', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('12', '2', 'Utilities', 'Electricity, water, gas, and other utilities', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('13', '2', 'Salaries', 'Employee salaries and wages', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('14', '2', 'Ingredients', 'Food ingredients and raw materials', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('15', '2', 'Equipment', 'Kitchen equipment and appliances', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('16', '2', 'Marketing', 'Advertising and promotional expenses', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('17', '2', 'Insurance', 'Business insurance and liability coverage', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('18', '2', 'Maintenance', 'Repairs and maintenance costs', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('19', '2', 'Licenses', 'Business licenses and permits', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('20', '2', 'Miscellaneous', 'Other miscellaneous expenses', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('21', '3', 'Rent', 'Monthly rent for restaurant space', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('22', '3', 'Utilities', 'Electricity, water, gas, and other utilities', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('23', '3', 'Salaries', 'Employee salaries and wages', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('24', '3', 'Ingredients', 'Food ingredients and raw materials', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('25', '3', 'Equipment', 'Kitchen equipment and appliances', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('26', '3', 'Marketing', 'Advertising and promotional expenses', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('27', '3', 'Insurance', 'Business insurance and liability coverage', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('28', '3', 'Maintenance', 'Repairs and maintenance costs', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('29', '3', 'Licenses', 'Business licenses and permits', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('30', '3', 'Miscellaneous', 'Other miscellaneous expenses', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('31', '4', 'Rent', 'Monthly rent for restaurant space', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('32', '4', 'Utilities', 'Electricity, water, gas, and other utilities', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('33', '4', 'Salaries', 'Employee salaries and wages', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('34', '4', 'Ingredients', 'Food ingredients and raw materials', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('35', '4', 'Equipment', 'Kitchen equipment and appliances', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('36', '4', 'Marketing', 'Advertising and promotional expenses', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('37', '4', 'Insurance', 'Business insurance and liability coverage', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('38', '4', 'Maintenance', 'Repairs and maintenance costs', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('39', '4', 'Licenses', 'Business licenses and permits', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('40', '4', 'Miscellaneous', 'Other miscellaneous expenses', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('41', '5', 'Rent', 'Monthly rent for restaurant space', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('42', '5', 'Utilities', 'Electricity, water, gas, and other utilities', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('43', '5', 'Salaries', 'Employee salaries and wages', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('44', '5', 'Ingredients', 'Food ingredients and raw materials', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('45', '5', 'Equipment', 'Kitchen equipment and appliances', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('46', '5', 'Marketing', 'Advertising and promotional expenses', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('47', '5', 'Insurance', 'Business insurance and liability coverage', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('48', '5', 'Maintenance', 'Repairs and maintenance costs', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('49', '5', 'Licenses', 'Business licenses and permits', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('50', '5', 'Miscellaneous', 'Other miscellaneous expenses', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09');


-- Table structure for table `expenses`
DROP TABLE IF EXISTS `expenses`;
CREATE TABLE `expenses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `expense_category_id` bigint(20) unsigned DEFAULT NULL,
  `branch_id` bigint(20) unsigned NOT NULL,
  `expense_title` varchar(191) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `amount` decimal(10,2) NOT NULL,
  `expense_date` date NOT NULL,
  `payment_status` varchar(191) NOT NULL,
  `payment_date` date DEFAULT NULL,
  `payment_due_date` date DEFAULT NULL,
  `payment_method` varchar(191) DEFAULT NULL,
  `receipt_path` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `expenses_expense_category_id_foreign` (`expense_category_id`),
  KEY `expenses_branch_id_foreign` (`branch_id`),
  CONSTRAINT `expenses_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `expenses_expense_category_id_foreign` FOREIGN KEY (`expense_category_id`) REFERENCES `expense_categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `failed_jobs`
DROP TABLE IF EXISTS `failed_jobs`;
CREATE TABLE `failed_jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(191) NOT NULL,
  `connection` text NOT NULL,
  `queue` text NOT NULL,
  `payload` longtext NOT NULL,
  `exception` longtext NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `file_storage`
DROP TABLE IF EXISTS `file_storage`;
CREATE TABLE `file_storage` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `path` varchar(191) NOT NULL,
  `filename` varchar(191) NOT NULL,
  `type` varchar(50) DEFAULT NULL,
  `size` int(10) unsigned NOT NULL,
  `storage_location` enum('local','aws_s3','digitalocean','wasabi','minio') NOT NULL DEFAULT 'local',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `file_storage_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `file_storage_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `file_storage`
INSERT INTO `file_storage` VALUES
('1', '1', 'qrcodes', 'qrcode-branch-1-1.png', 'image/png', '2764', 'wasabi', '2025-09-17 05:36:44', '2025-10-15 12:20:25'),
('3', '1', 'qrcodes', 'qrcode-branch-2-1.png', 'image/png', '2767', 'wasabi', '2025-09-17 05:36:44', '2025-10-15 12:20:25'),
('5', '1', 'favicons/restaurant/demo-restaurant/', 'android-chrome-192x192.png', 'image/png', '26347', 'wasabi', '2025-09-17 06:07:22', '2025-10-15 12:20:25'),
('6', '1', 'favicons/restaurant/demo-restaurant/', 'android-chrome-512x512.png', 'image/png', '26347', 'wasabi', '2025-09-17 06:07:22', '2025-10-15 12:20:26'),
('7', '1', 'favicons/restaurant/demo-restaurant/', 'apple-touch-icon.png', 'image/png', '26347', 'wasabi', '2025-09-17 06:07:22', '2025-10-15 12:20:26'),
('8', '1', 'favicons/restaurant/demo-restaurant/', 'favicon-16x16.png', 'image/png', '26347', 'wasabi', '2025-09-17 06:07:22', '2025-10-15 12:20:26'),
('9', '1', 'favicons/restaurant/demo-restaurant/', 'favicon-32x32.png', 'image/png', '26347', 'wasabi', '2025-09-17 06:07:22', '2025-10-15 12:20:26'),
('10', '1', 'favicons/restaurant/demo-restaurant/', 'favicon.ico', 'image/vnd.microsoft.icon', '15406', 'wasabi', '2025-09-17 06:07:22', '2025-10-15 12:20:26'),
('11', NULL, 'favicons/super-admin/', 'android-chrome-192x192.png', 'image/png', '26099', 'wasabi', '2025-09-17 06:11:53', '2025-10-15 12:20:26'),
('12', NULL, 'favicons/super-admin/', 'android-chrome-512x512.png', 'image/png', '131816', 'wasabi', '2025-09-17 06:11:53', '2025-10-15 12:20:26'),
('13', NULL, 'favicons/super-admin/', 'apple-touch-icon.png', 'image/png', '23503', 'wasabi', '2025-09-17 06:11:53', '2025-10-15 12:20:28'),
('14', NULL, 'favicons/super-admin/', 'favicon-16x16.png', 'image/png', '836', 'wasabi', '2025-09-17 06:11:53', '2025-10-15 12:20:28'),
('15', NULL, 'favicons/super-admin/', 'favicon-32x32.png', 'image/png', '1966', 'wasabi', '2025-09-17 06:11:53', '2025-10-15 12:20:28'),
('16', NULL, 'favicons/super-admin/', 'favicon.ico', 'image/vnd.microsoft.icon', '15406', 'wasabi', '2025-09-17 06:11:53', '2025-10-15 12:20:28'),
('17', '2', 'qrcodes', 'qrcode-branch-3-2.png', 'image/png', '2550', 'wasabi', '2025-09-17 10:02:45', '2025-10-15 12:20:28'),
('18', '2', 'qrcodes', 'qrcode-3-t01.png', 'image/png', '4740', 'wasabi', '2025-09-20 12:24:08', '2025-10-15 12:20:28'),
('19', '2', 'qrcodes', 'qrcode-3-r01.png', 'image/png', '4707', 'wasabi', '2025-09-20 12:24:21', '2025-10-15 12:20:28'),
('20', '3', 'qrcodes', 'qrcode-branch-4-3.png', 'image/png', '2777', 'wasabi', '2025-09-20 12:56:44', '2025-10-15 12:20:28'),
('21', '3', 'qrcodes', 'qrcode-4-t01.png', 'image/png', '4797', 'wasabi', '2025-09-20 12:58:07', '2025-10-15 12:20:28'),
('22', '3', 'qrcodes', 'qrcode-4-g01.png', 'image/png', '5096', 'wasabi', '2025-09-20 12:58:41', '2025-10-15 12:20:30'),
('23', '4', 'qrcodes', 'qrcode-branch-5-4.png', 'image/png', '2558', 'wasabi', '2025-10-07 15:00:09', '2025-10-15 12:20:30'),
('25', '4', 'qrcodes', 'qrcode-5-to1.png', 'image/png', '4694', 'wasabi', '2025-10-07 15:01:13', '2025-10-15 12:20:30'),
('26', '4', 'logo', 'fe8a6d219504148863cf356c9b23c71a.jpeg', 'image/jpeg', '11469', 'wasabi', '2025-10-07 15:29:17', '2025-10-15 12:20:30'),
('27', '4', 'qrcodes', 'qrcode-5-t02.png', 'image/png', '4986', 'wasabi', '2025-10-07 15:39:05', '2025-10-15 12:20:30'),
('28', '4', 'item', 'd53454ebe29fd1e1a47b90f692d86a6d.jpeg', 'image/jpeg', '204767', 'wasabi', '2025-10-08 08:47:24', '2025-10-15 12:20:30'),
('29', '4', 'item', '4892a1ba87cee5b2016d3505c120e7ae.jpeg', 'image/jpeg', '102740', 'wasabi', '2025-10-08 08:48:17', '2025-10-15 12:20:30'),
('30', '4', 'item', '4f724ef832d4425388dab42acfde2c3a.jpeg', 'image/jpeg', '96281', 'wasabi', '2025-10-08 08:49:15', '2025-10-15 12:20:30'),
('31', '4', 'item', '32b2d8f2eb55ef6c04737415608e768b.jpeg', 'image/jpeg', '286503', 'wasabi', '2025-10-08 08:50:17', '2025-10-15 12:20:31'),
('32', '4', 'item', '48cf1b5a9b4fde5d842184d3961bc5f3.jpeg', 'image/jpeg', '347340', 'wasabi', '2025-10-08 08:53:49', '2025-10-15 12:20:31'),
('33', NULL, '/', '6c4aeee7ac4e8e2ff6ae6faf68f0629e.jpg', 'image/jpeg', '68318', 'wasabi', '2025-10-15 12:19:55', '2025-10-15 12:19:55'),
('34', '4', 'favicons/restaurant/moms-biryani/', 'android-chrome-192x192.png', 'image/png', '52133', 'wasabi', '2025-10-15 12:31:03', '2025-10-15 12:31:03'),
('35', '4', 'favicons/restaurant/moms-biryani/', 'android-chrome-512x512.png', 'image/png', '246150', 'wasabi', '2025-10-15 12:31:03', '2025-10-15 12:31:03'),
('36', '4', 'favicons/restaurant/moms-biryani/', 'apple-touch-icon.png', 'image/png', '46964', 'wasabi', '2025-10-15 12:31:04', '2025-10-15 12:31:04'),
('37', '4', 'favicons/restaurant/moms-biryani/', 'favicon-16x16.png', 'image/png', '1000', 'wasabi', '2025-10-15 12:31:04', '2025-10-15 12:31:04'),
('38', '4', 'favicons/restaurant/moms-biryani/', 'favicon-32x32.png', 'image/png', '2756', 'wasabi', '2025-10-15 12:31:04', '2025-10-15 12:31:04'),
('39', '4', 'favicons/restaurant/moms-biryani/', 'favicon.ico', 'image/vnd.microsoft.icon', '15406', 'wasabi', '2025-10-15 12:31:04', '2025-10-15 12:31:04');


-- Table structure for table `file_storage_settings`
DROP TABLE IF EXISTS `file_storage_settings`;
CREATE TABLE `file_storage_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `filesystem` varchar(191) NOT NULL,
  `auth_keys` text DEFAULT NULL,
  `status` enum('enabled','disabled') NOT NULL DEFAULT 'disabled',
  `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;

-- Dumping data for table `file_storage_settings`
INSERT INTO `file_storage_settings` VALUES
('1', 'local', NULL, 'disabled', '2025-09-17 05:36:41', '2025-10-15 12:20:45'),
('2', 'wasabi', 'eyJpdiI6Ikw5b1VHVXFtejRNTFcraWxYeS9BK0E9PSIsInZhbHVlIjoiQlRwVnJBZVErUUtZL2tzRVFiK0RlQm9JbFBQckZQTUd4Z1JKU1dSMEYrZHE0bCtNY3hHUllWR3hTRWNzZ2xqODZ4a3pkbWFka2Z5R3pjQktpSXJsbG8vbWIzS3FJQUFLekg1WWczTHEyY2g3WThFQk1jcjRrempxRTBtdUZVcTVtRy80NTdDNXhwV2l2QVhpMTZybWRtcHBXamI3N0R5R1Y4d01Cc0gydU40MmRscERuUmZpREI2bFZRbVh6cDV3ZWhWcEI0aktSSkxaU3ZYcDU1NkZJUT09IiwibWFjIjoiNjQ4NTgxMTMyZWMxYWZlZTdlZTg0OTIxZDk2ODM3MDY1YTA1N2Q0NWQ2MDkyZWM5ZGE2OWEyNDQxMjQ0NWIzZSIsInRhZyI6IiJ9', 'enabled', '2025-09-28 12:43:25', '2025-10-15 12:20:45');


-- Table structure for table `flags`
DROP TABLE IF EXISTS `flags`;
CREATE TABLE `flags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `capital` varchar(191) DEFAULT NULL,
  `code` varchar(191) DEFAULT NULL,
  `continent` varchar(191) DEFAULT NULL,
  `name` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=267 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `flags`
INSERT INTO `flags` VALUES
('1', 'Kabul', 'af', 'Asia', 'Afghanistan'),
('2', 'Mariehamn', 'ax', 'Europe', 'Aland Islands'),
('3', 'Tirana', 'al', 'Europe', 'Albania'),
('4', 'Algiers', 'dz', 'Africa', 'Algeria'),
('5', 'Pago Pago', 'as', 'Oceania', 'American Samoa'),
('6', 'Andorra la Vella', 'ad', 'Europe', 'Andorra'),
('7', 'Luanda', 'ao', 'Africa', 'Angola'),
('8', 'The Valley', 'ai', 'North America', 'Anguilla'),
('9', '', 'aq', '', 'Antarctica'),
('10', 'St. John\'s', 'ag', 'North America', 'Antigua and Barbuda'),
('11', 'Buenos Aires', 'ar', 'South America', 'Argentina'),
('12', 'Yerevan', 'am', 'Asia', 'Armenia'),
('13', 'Oranjestad', 'aw', 'South America', 'Aruba'),
('14', 'Georgetown', 'ac', 'Africa', 'Ascension Island'),
('15', 'Canberra', 'au', 'Oceania', 'Australia'),
('16', 'Vienna', 'at', 'Europe', 'Austria'),
('17', 'Baku', 'az', 'Asia', 'Azerbaijan'),
('18', 'Nassau', 'bs', 'North America', 'Bahamas'),
('19', 'Manama', 'bh', 'Asia', 'Bahrain'),
('20', 'Dhaka', 'bd', 'Asia', 'Bangladesh'),
('21', 'Bridgetown', 'bb', 'North America', 'Barbados'),
('22', 'Minsk', 'by', 'Europe', 'Belarus'),
('23', 'Brussels', 'be', 'Europe', 'Belgium'),
('24', 'Belmopan', 'bz', 'North America', 'Belize'),
('25', 'Porto-Novo', 'bj', 'Africa', 'Benin'),
('26', 'Hamilton', 'bm', 'North America', 'Bermuda'),
('27', 'Thimphu', 'bt', 'Asia', 'Bhutan'),
('28', 'Sucre', 'bo', 'South America', 'Bolivia'),
('29', 'Kralendijk', 'bq', 'South America', 'Bonaire, Sint Eustatius and Saba'),
('30', 'Sarajevo', 'ba', 'Europe', 'Bosnia and Herzegovina'),
('31', 'Gaborone', 'bw', 'Africa', 'Botswana'),
('32', '', 'bv', '', 'Bouvet Island'),
('33', 'Brasília', 'br', 'South America', 'Brazil'),
('34', 'Diego Garcia', 'io', 'Asia', 'British Indian Ocean Territory'),
('35', 'Bandar Seri Begawan', 'bn', 'Asia', 'Brunei Darussalam'),
('36', 'Sofia', 'bg', 'Europe', 'Bulgaria'),
('37', 'Ouagadougou', 'bf', 'Africa', 'Burkina Faso'),
('38', 'Bujumbura', 'bi', 'Africa', 'Burundi'),
('39', 'Praia', 'cv', 'Africa', 'Cabo Verde'),
('40', 'Phnom Penh', 'kh', 'Asia', 'Cambodia'),
('41', 'Yaoundé', 'cm', 'Africa', 'Cameroon'),
('42', 'Ottawa', 'ca', 'North America', 'Canada'),
('43', '', 'ic', '', 'Canary Islands'),
('44', '', 'es-ct', '', 'Catalonia'),
('45', 'George Town', 'ky', 'North America', 'Cayman Islands'),
('46', 'Bangui', 'cf', 'Africa', 'Central African Republic'),
('47', '', 'cefta', '', 'Central European Free Trade Agreement'),
('48', '', 'ea', '', 'Ceuta & Melilla'),
('49', 'N\'Djamena', 'td', 'Africa', 'Chad'),
('50', 'Santiago', 'cl', 'South America', 'Chile'),
('51', 'Beijing', 'cn', 'Asia', 'China'),
('52', 'Flying Fish Cove', 'cx', 'Asia', 'Christmas Island'),
('53', '', 'cp', '', 'Clipperton Island'),
('54', 'West Island', 'cc', 'Asia', 'Cocos (Keeling) Islands'),
('55', 'Bogotá', 'co', 'South America', 'Colombia'),
('56', 'Moroni', 'km', 'Africa', 'Comoros'),
('57', 'Avarua', 'ck', 'Oceania', 'Cook Islands'),
('58', 'San José', 'cr', 'North America', 'Costa Rica'),
('59', 'Zagreb', 'hr', 'Europe', 'Croatia'),
('60', 'Havana', 'cu', 'North America', 'Cuba'),
('61', 'Willemstad', 'cw', 'South America', 'Curaçao'),
('62', 'Nicosia', 'cy', 'Europe', 'Cyprus'),
('63', 'Prague', 'cz', 'Europe', 'Czech Republic'),
('64', 'Yamoussoukro', 'ci', 'Africa', 'Côte d\'Ivoire'),
('65', 'Kinshasa', 'cd', 'Africa', 'Democratic Republic of the Congo'),
('66', 'Copenhagen', 'dk', 'Europe', 'Denmark'),
('67', '', 'dg', '', 'Diego Garcia'),
('68', 'Djibouti', 'dj', 'Africa', 'Djibouti'),
('69', 'Roseau', 'dm', 'North America', 'Dominica'),
('70', 'Santo Domingo', 'do', 'North America', 'Dominican Republic'),
('71', 'Quito', 'ec', 'South America', 'Ecuador'),
('72', 'Cairo', 'eg', 'Africa', 'Egypt'),
('73', 'San Salvador', 'sv', 'North America', 'El Salvador'),
('74', 'London', 'gb-eng', 'Europe', 'England'),
('75', 'Malabo', 'gq', 'Africa', 'Equatorial Guinea'),
('76', 'Asmara', 'er', 'Africa', 'Eritrea'),
('77', 'Tallinn', 'ee', 'Europe', 'Estonia'),
('78', 'Lobamba, Mbabane', 'sz', 'Africa', 'Eswatini'),
('79', 'Addis Ababa', 'et', 'Africa', 'Ethiopia'),
('80', '', 'eu', '', 'Europe'),
('81', 'Stanley', 'fk', 'South America', 'Falkland Islands'),
('82', 'Tórshavn', 'fo', 'Europe', 'Faroe Islands'),
('83', 'Palikir', 'fm', 'Oceania', 'Federated States of Micronesia'),
('84', 'Suva', 'fj', 'Oceania', 'Fiji'),
('85', 'Helsinki', 'fi', 'Europe', 'Finland'),
('86', 'Paris', 'fr', 'Europe', 'France'),
('87', 'Cayenne', 'gf', 'South America', 'French Guiana'),
('88', 'Papeete', 'pf', 'Oceania', 'French Polynesia'),
('89', 'Saint-Pierre, Réunion', 'tf', 'Africa', 'French Southern Territories'),
('90', 'Libreville', 'ga', 'Africa', 'Gabon'),
('91', '', 'es-ga', '', 'Galicia'),
('92', 'Banjul', 'gm', 'Africa', 'Gambia'),
('93', 'Tbilisi', 'ge', 'Asia', 'Georgia'),
('94', 'Berlin', 'de', 'Europe', 'Germany'),
('95', 'Accra', 'gh', 'Africa', 'Ghana'),
('96', 'Gibraltar', 'gi', 'Europe', 'Gibraltar'),
('97', 'Athens', 'gr', 'Europe', 'Greece'),
('98', 'Nuuk', 'gl', 'North America', 'Greenland'),
('99', 'St. George\'s', 'gd', 'North America', 'Grenada'),
('100', 'Basse-Terre', 'gp', 'North America', 'Guadeloupe'),
('101', 'Hagåtña', 'gu', 'Oceania', 'Guam'),
('102', 'Guatemala City', 'gt', 'North America', 'Guatemala'),
('103', 'Saint Peter Port', 'gg', 'Europe', 'Guernsey'),
('104', 'Conakry', 'gn', 'Africa', 'Guinea'),
('105', 'Bissau', 'gw', 'Africa', 'Guinea-Bissau'),
('106', 'Georgetown', 'gy', 'South America', 'Guyana'),
('107', 'Port-au-Prince', 'ht', 'North America', 'Haiti'),
('108', '', 'hm', '', 'Heard Island and McDonald Islands'),
('109', 'Vatican City', 'va', 'Europe', 'Holy See'),
('110', 'Tegucigalpa', 'hn', 'North America', 'Honduras'),
('111', 'Hong Kong', 'hk', 'Asia', 'Hong Kong'),
('112', 'Budapest', 'hu', 'Europe', 'Hungary'),
('113', 'Reykjavik', 'is', 'Europe', 'Iceland'),
('114', 'New Delhi', 'in', 'Asia', 'India'),
('115', 'Jakarta', 'id', 'Asia', 'Indonesia'),
('116', 'Tehran', 'ir', 'Asia', 'Iran'),
('117', 'Baghdad', 'iq', 'Asia', 'Iraq'),
('118', 'Dublin', 'ie', 'Europe', 'Ireland'),
('119', 'Douglas', 'im', 'Europe', 'Isle of Man'),
('120', 'Jerusalem', 'il', 'Asia', 'Israel'),
('121', 'Rome', 'it', 'Europe', 'Italy'),
('122', 'Kingston', 'jm', 'North America', 'Jamaica'),
('123', 'Tokyo', 'jp', 'Asia', 'Japan'),
('124', 'Saint Helier', 'je', 'Europe', 'Jersey'),
('125', 'Amman', 'jo', 'Asia', 'Jordan'),
('126', 'Astana', 'kz', 'Asia', 'Kazakhstan'),
('127', 'Nairobi', 'ke', 'Africa', 'Kenya'),
('128', 'South Tarawa', 'ki', 'Oceania', 'Kiribati'),
('129', 'Pristina', 'xk', 'Europe', 'Kosovo'),
('130', 'Kuwait City', 'kw', 'Asia', 'Kuwait'),
('131', 'Bishkek', 'kg', 'Asia', 'Kyrgyzstan'),
('132', 'Vientiane', 'la', 'Asia', 'Laos'),
('133', 'Riga', 'lv', 'Europe', 'Latvia'),
('134', 'Beirut', 'lb', 'Asia', 'Lebanon'),
('135', 'Maseru', 'ls', 'Africa', 'Lesotho'),
('136', 'Monrovia', 'lr', 'Africa', 'Liberia'),
('137', 'Tripoli', 'ly', 'Africa', 'Libya'),
('138', 'Vaduz', 'li', 'Europe', 'Liechtenstein'),
('139', 'Vilnius', 'lt', 'Europe', 'Lithuania'),
('140', 'Luxembourg City', 'lu', 'Europe', 'Luxembourg'),
('141', 'Macau', 'mo', 'Asia', 'Macau'),
('142', 'Antananarivo', 'mg', 'Africa', 'Madagascar'),
('143', 'Lilongwe', 'mw', 'Africa', 'Malawi'),
('144', 'Kuala Lumpur', 'my', 'Asia', 'Malaysia'),
('145', 'Malé', 'mv', 'Asia', 'Maldives'),
('146', 'Bamako', 'ml', 'Africa', 'Mali'),
('147', 'Valletta', 'mt', 'Europe', 'Malta'),
('148', 'Majuro', 'mh', 'Oceania', 'Marshall Islands'),
('149', 'Fort-de-France', 'mq', 'North America', 'Martinique'),
('150', 'Nouakchott', 'mr', 'Africa', 'Mauritania'),
('151', 'Port Louis', 'mu', 'Africa', 'Mauritius'),
('152', 'Mamoudzou', 'yt', 'Africa', 'Mayotte'),
('153', 'Mexico City', 'mx', 'North America', 'Mexico'),
('154', 'Chișinău', 'md', 'Europe', 'Moldova'),
('155', 'Monaco', 'mc', 'Europe', 'Monaco'),
('156', 'Ulaanbaatar', 'mn', 'Asia', 'Mongolia'),
('157', 'Podgorica', 'me', 'Europe', 'Montenegro'),
('158', 'Little Bay, Brades, Plymouth', 'ms', 'North America', 'Montserrat'),
('159', 'Rabat', 'ma', 'Africa', 'Morocco'),
('160', 'Maputo', 'mz', 'Africa', 'Mozambique'),
('161', 'Naypyidaw', 'mm', 'Asia', 'Myanmar'),
('162', 'Windhoek', 'na', 'Africa', 'Namibia'),
('163', 'Yaren District', 'nr', 'Oceania', 'Nauru'),
('164', 'Kathmandu', 'np', 'Asia', 'Nepal'),
('165', 'Amsterdam', 'nl', 'Europe', 'Netherlands'),
('166', 'Nouméa', 'nc', 'Oceania', 'New Caledonia'),
('167', 'Wellington', 'nz', 'Oceania', 'New Zealand'),
('168', 'Managua', 'ni', 'North America', 'Nicaragua'),
('169', 'Niamey', 'ne', 'Africa', 'Niger'),
('170', 'Abuja', 'ng', 'Africa', 'Nigeria'),
('171', 'Alofi', 'nu', 'Oceania', 'Niue'),
('172', 'Kingston', 'nf', 'Oceania', 'Norfolk Island'),
('173', 'Pyongyang', 'kp', 'Asia', 'North Korea'),
('174', 'Skopje', 'mk', 'Europe', 'North Macedonia'),
('175', 'Belfast', 'gb-nir', 'Europe', 'Northern Ireland'),
('176', 'Saipan', 'mp', 'Oceania', 'Northern Mariana Islands'),
('177', 'Oslo', 'no', 'Europe', 'Norway'),
('178', 'Muscat', 'om', 'Asia', 'Oman'),
('179', 'Islamabad', 'pk', 'Asia', 'Pakistan'),
('180', 'Ngerulmud', 'pw', 'Oceania', 'Palau'),
('181', 'Panama City', 'pa', 'North America', 'Panama'),
('182', 'Port Moresby', 'pg', 'Oceania', 'Papua New Guinea'),
('183', 'Asunción', 'py', 'South America', 'Paraguay'),
('184', 'Lima', 'pe', 'South America', 'Peru'),
('185', 'Manila', 'ph', 'Asia', 'Philippines'),
('186', 'Adamstown', 'pn', 'Oceania', 'Pitcairn'),
('187', 'Warsaw', 'pl', 'Europe', 'Poland'),
('188', 'Lisbon', 'pt', 'Europe', 'Portugal'),
('189', 'San Juan', 'pr', 'North America', 'Puerto Rico'),
('190', 'Doha', 'qa', 'Asia', 'Qatar'),
('191', 'Brazzaville', 'cg', 'Africa', 'Republic of the Congo'),
('192', 'Bucharest', 'ro', 'Europe', 'Romania'),
('193', 'Moscow', 'ru', 'Europe', 'Russia'),
('194', 'Kigali', 'rw', 'Africa', 'Rwanda'),
('195', 'Saint-Denis', 're', 'Africa', 'Réunion'),
('196', 'Gustavia', 'bl', 'North America', 'Saint Barthélemy'),
('197', 'Jamestown', 'sh', 'Africa', 'Saint Helena, Ascension and Tristan da Cunha'),
('198', 'Basseterre', 'kn', 'North America', 'Saint Kitts and Nevis'),
('199', 'Castries', 'lc', 'North America', 'Saint Lucia'),
('200', 'Marigot', 'mf', 'North America', 'Saint Martin'),
('201', 'Saint-Pierre', 'pm', 'North America', 'Saint Pierre and Miquelon'),
('202', 'Kingstown', 'vc', 'North America', 'Saint Vincent and the Grenadines'),
('203', 'Apia', 'ws', 'Oceania', 'Samoa'),
('204', 'San Marino', 'sm', 'Europe', 'San Marino'),
('205', 'São Tomé', 'st', 'Africa', 'Sao Tome and Principe'),
('206', 'Riyadh', 'sa', 'Asia', 'Saudi Arabia'),
('207', 'Edinburgh', 'gb-sct', 'Europe', 'Scotland'),
('208', 'Dakar', 'sn', 'Africa', 'Senegal'),
('209', 'Belgrade', 'rs', 'Europe', 'Serbia'),
('210', 'Victoria', 'sc', 'Africa', 'Seychelles'),
('211', 'Freetown', 'sl', 'Africa', 'Sierra Leone'),
('212', 'Singapore', 'sg', 'Asia', 'Singapore'),
('213', 'Philipsburg', 'sx', 'North America', 'Sint Maarten'),
('214', 'Bratislava', 'sk', 'Europe', 'Slovakia'),
('215', 'Ljubljana', 'si', 'Europe', 'Slovenia'),
('216', 'Honiara', 'sb', 'Oceania', 'Solomon Islands'),
('217', 'Mogadishu', 'so', 'Africa', 'Somalia'),
('218', 'Pretoria', 'za', 'Africa', 'South Africa'),
('219', 'King Edward Point', 'gs', 'Antarctica', 'South Georgia and the South Sandwich Islands'),
('220', 'Seoul', 'kr', 'Asia', 'South Korea'),
('221', 'Juba', 'ss', 'Africa', 'South Sudan'),
('222', 'Madrid', 'es', 'Europe', 'Spain'),
('223', 'Sri Jayawardenepura Kotte, Colombo', 'lk', 'Asia', 'Sri Lanka'),
('224', 'Ramallah', 'ps', 'Asia', 'State of Palestine'),
('225', 'Khartoum', 'sd', 'Africa', 'Sudan'),
('226', 'Paramaribo', 'sr', 'South America', 'Suriname'),
('227', 'Longyearbyen', 'sj', 'Europe', 'Svalbard and Jan Mayen'),
('228', 'Stockholm', 'se', 'Europe', 'Sweden'),
('229', 'Bern', 'ch', 'Europe', 'Switzerland'),
('230', 'Damascus', 'sy', 'Asia', 'Syria'),
('231', 'Taipei', 'tw', 'Asia', 'Taiwan'),
('232', 'Dushanbe', 'tj', 'Asia', 'Tajikistan'),
('233', 'Dodoma', 'tz', 'Africa', 'Tanzania'),
('234', 'Bangkok', 'th', 'Asia', 'Thailand'),
('235', 'Dili', 'tl', 'Asia', 'Timor-Leste'),
('236', 'Lomé', 'tg', 'Africa', 'Togo'),
('237', 'Nukunonu, Atafu,Tokelau', 'tk', 'Oceania', 'Tokelau'),
('238', 'Nukuʻalofa', 'to', 'Oceania', 'Tonga'),
('239', 'Port of Spain', 'tt', 'South America', 'Trinidad and Tobago'),
('240', '', 'ta', '', 'Tristan da Cunha'),
('241', 'Tunis', 'tn', 'Africa', 'Tunisia'),
('242', 'Ankara', 'tr', 'Asia', 'Turkey'),
('243', 'Ashgabat', 'tm', 'Asia', 'Turkmenistan'),
('244', 'Cockburn Town', 'tc', 'North America', 'Turks and Caicos Islands'),
('245', 'Funafuti', 'tv', 'Oceania', 'Tuvalu'),
('246', 'Kampala', 'ug', 'Africa', 'Uganda'),
('247', 'Kiev', 'ua', 'Europe', 'Ukraine'),
('248', 'Abu Dhabi', 'ae', 'Asia', 'United Arab Emirates'),
('249', 'London', 'gb', 'Europe', 'United Kingdom'),
('250', '', 'un', '', 'United Nations'),
('251', 'Washington, D.C.', 'um', 'North America', 'United States Minor Outlying Islands'),
('252', 'Washington, D.C.', 'us', 'North America', 'United States of America'),
('253', '', 'xx', '', 'Unknown'),
('254', 'Montevideo', 'uy', 'South America', 'Uruguay'),
('255', 'Tashkent', 'uz', 'Asia', 'Uzbekistan'),
('256', 'Port Vila', 'vu', 'Oceania', 'Vanuatu'),
('257', 'Caracas', 've', 'South America', 'Venezuela'),
('258', 'Hanoi', 'vn', 'Asia', 'Vietnam'),
('259', 'Road Town', 'vg', 'North America', 'Virgin Islands (British)'),
('260', 'Charlotte Amalie', 'vi', 'North America', 'Virgin Islands (U.S.)'),
('261', 'Cardiff', 'gb-wls', 'Europe', 'Wales'),
('262', 'Mata-Utu', 'wf', 'Oceania', 'Wallis and Futuna'),
('263', 'Laayoune', 'eh', 'Africa', 'Western Sahara'),
('264', 'Sana\'a', 'ye', 'Asia', 'Yemen'),
('265', 'Lusaka', 'zm', 'Africa', 'Zambia'),
('266', 'Harare', 'zw', 'Africa', 'Zimbabwe');


-- Table structure for table `flutterwave_payments`
DROP TABLE IF EXISTS `flutterwave_payments`;
CREATE TABLE `flutterwave_payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `flutterwave_payment_id` varchar(191) DEFAULT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `payment_status` enum('pending','completed','failed') NOT NULL DEFAULT 'pending',
  `payment_date` timestamp NULL DEFAULT NULL,
  `payment_error_response` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`payment_error_response`)),
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `flutterwave_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `flutterwave_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `front_details`
DROP TABLE IF EXISTS `front_details`;
CREATE TABLE `front_details` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `language_setting_id` bigint(20) unsigned DEFAULT NULL,
  `header_title` varchar(200) DEFAULT NULL,
  `header_description` text DEFAULT NULL,
  `image` varchar(200) DEFAULT NULL,
  `feature_with_image_heading` varchar(191) DEFAULT NULL,
  `review_heading` varchar(191) DEFAULT NULL,
  `feature_with_icon_heading` varchar(191) DEFAULT NULL,
  `comments_heading` varchar(191) DEFAULT NULL,
  `price_heading` varchar(191) DEFAULT NULL,
  `price_description` varchar(191) DEFAULT NULL,
  `faq_heading` varchar(191) DEFAULT NULL,
  `faq_description` text DEFAULT NULL,
  `contact_heading` text DEFAULT NULL,
  `footer_copyright_text` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `front_details_language_setting_id_foreign` (`language_setting_id`),
  CONSTRAINT `front_details_language_setting_id_foreign` FOREIGN KEY (`language_setting_id`) REFERENCES `language_settings` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `front_details`
INSERT INTO `front_details` VALUES
('1', '1', 'Restaurant POS software made simple!', 'Easily manage orders, menus, and tables in one place. Save time, reduce errors, and grow your business faster', NULL, 'Take Control of Your Restaurant', 'What Restaurant Owners Are Saying', 'Powerful Features Built to Elevate Your Restaurant Operations', NULL, 'Simple, Transparent Pricing', 'Get everything you need to manage your restaurant with one affordable plan.', 'Your questions, answered', 'Answers to the most frequently asked questions.', 'Contact', '© 2025 TableTrack. All Rights Reserved.', '2025-09-17 05:36:44', '2025-09-17 05:36:44');


-- Table structure for table `front_faq_settings`
DROP TABLE IF EXISTS `front_faq_settings`;
CREATE TABLE `front_faq_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `language_setting_id` bigint(20) unsigned DEFAULT NULL,
  `question` text DEFAULT NULL,
  `answer` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `front_faq_settings_language_setting_id_foreign` (`language_setting_id`),
  CONSTRAINT `front_faq_settings_language_setting_id_foreign` FOREIGN KEY (`language_setting_id`) REFERENCES `language_settings` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `front_faq_settings`
INSERT INTO `front_faq_settings` VALUES
('1', '1', 'How can I contact customer support 1?', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', NULL, NULL),
('2', '1', 'How can I contact customer support?', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', NULL, NULL),
('3', '1', 'How can I contact customer support?', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', NULL, NULL),
('4', '1', 'How can I contact customer support?', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', NULL, NULL),
('5', '1', 'How can I contact customer support?', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', NULL, NULL),
('6', '1', 'How can I contact customer support?', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', NULL, NULL);


-- Table structure for table `front_features`
DROP TABLE IF EXISTS `front_features`;
CREATE TABLE `front_features` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `language_setting_id` bigint(20) unsigned DEFAULT NULL,
  `title` varchar(191) NOT NULL,
  `description` longtext DEFAULT NULL,
  `image` longtext DEFAULT NULL,
  `icon` longtext DEFAULT NULL,
  `type` enum('image','icon','task','bills','team','apps') NOT NULL DEFAULT 'image',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `front_features_language_setting_id_foreign` (`language_setting_id`),
  CONSTRAINT `front_features_language_setting_id_foreign` FOREIGN KEY (`language_setting_id`) REFERENCES `language_settings` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `front_features`
INSERT INTO `front_features` VALUES
('1', '1', 'Streamline Order Management', 'Never lose track of an order again. All your customer orders—from dine-in to takeout—are organized and easily accessible in one place.\n                                Speed up service and keep your kitchen running smoothly.', NULL, NULL, 'image', NULL, NULL),
('2', '1', 'Optimize Table Reservations', 'Maximize seating efficiency with real-time table tracking and reservations. Reduce wait times and ensure no table sits empty during peak hours, improving customer experience and turnover.', NULL, NULL, 'image', NULL, NULL),
('3', '1', 'Effortless Menu Management', 'Easily add, edit, or remove items from your menu on the go. Highlight specials, update prices, and keep everything in sync across all platforms, so your staff and customers always see the latest offerings.', NULL, NULL, 'image', NULL, NULL),
('4', '1', 'QR Code Menu', 'Contactless Ordering Made Easy', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\"\n                            class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                            <path\n                                d=\"M0 .5A.5.5 0 0 1 .5 0h3a.5.5 0 0 1 0 1H1v2.5a.5.5 0 0 1-1 0zm12 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V1h-2.5a.5.5 0 0 1-.5-.5M.5 12a.5.5 0 0 1 .5.5V15h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5m15 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H15v-2.5a.5.5 0 0 1 .5-.5M4 4h1v1H4z\" />\n                            <path d=\"M7 2H2v5h5zM3 3h3v3H3zm2 8H4v1h1z\" />\n                            <path d=\"M7 9H2v5h5zm-4 1h3v3H3zm8-6h1v1h-1z\" />\n                            <path\n                                d=\"M9 2h5v5H9zm1 1v3h3V3zM8 8v2h1v1H8v1h2v-2h1v2h1v-1h2v-1h-3V8zm2 2H9V9h1zm4 2h-1v1h-2v1h3zm-4 2v-1H8v1z\" />\n                            <path d=\"M12 9h2V8h-2z\" />\n                        </svg>', 'bi-qr-code', 'icon', NULL, NULL),
('5', '1', 'Payment Gateway Integration', 'Fast, Secure, and Flexible Payments using Stripe and Razorpay', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\"\n                        class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                        <path\n                            d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm6.226 5.385c-.584 0-.937.164-.937.593 0 .468.607.674 1.36.93 1.228.415 2.844.963 2.851 2.993C11.5 11.868 9.924 13 7.63 13a7.7 7.7 0 0 1-3.009-.626V9.758c.926.506 2.095.88 3.01.88.617 0 1.058-.165 1.058-.671 0-.518-.658-.755-1.453-1.041C6.026 8.49 4.5 7.94 4.5 6.11 4.5 4.165 5.988 3 8.226 3a7.3 7.3 0 0 1 2.734.505v2.583c-.838-.45-1.896-.703-2.734-.703\" />\n                    </svg>', 'bi-credit-card', 'icon', NULL, NULL),
('6', '1', 'Staff Management', 'Separate login for every staff role with different permissions.', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\"\n                        class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                        <path\n                            d=\"M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1zm-7.978-1L7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002-.014.002zM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0M6.936 9.28a6 6 0 0 0-1.23-.247A7 7 0 0 0 5 9c-4 0-5 3-5 4q0 1 1 1h4.216A2.24 2.24 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816M4.92 10A5.5 5.5 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275ZM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0m3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4\" />\n                    </svg>', 'bi-people', 'icon', NULL, NULL),
('7', '1', 'POS (Point of Sale)', 'Complete POS Integration', '<svg class=\"size-6 transition duration-75 text-skin-base dark:text-skin-base\" fill=\"currentColor\"\n                        viewBox=\"0 -0.5 25 25\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n                        <g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"></g>\n                        <g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></g>\n                        <g id=\"SVGRepo_iconCarrier\">\n                            <path fill-rule=\"evenodd\"\n                                d=\"M16,6 L20,6 C21.1045695,6 22,6.8954305 22,8 L22,16 C22,17.1045695 21.1045695,18 20,18 L16,18 L16,19.9411765 C16,21.0658573 15.1177541,22 14,22 L4,22 C2.88224586,22 2,21.0658573 2,19.9411765 L2,4.05882353 C2,2.93414267 2.88224586,2 4,2 L14,2 C15.1177541,2 16,2.93414267 16,4.05882353 L16,6 Z M20,11 L16,11 L16,16 L20,16 L20,11 Z M14,19.9411765 L14,4.05882353 C14,4.01396021 13.9868154,4 14,4 L4,4 C4.01318464,4 4,4.01396021 4,4.05882353 L4,19.9411765 C4,19.9860398 4.01318464,20 4,20 L14,20 C13.9868154,20 14,19.9860398 14,19.9411765 Z M5,19 L5,17 L7,17 L7,19 L5,19 Z M8,19 L8,17 L10,17 L10,19 L8,19 Z M11,19 L11,17 L13,17 L13,19 L11,19 Z M5,16 L5,14 L7,14 L7,16 L5,16 Z M8,16 L8,14 L10,14 L10,16 L8,16 Z M11,16 L11,14 L13,14 L13,16 L11,16 Z M13,5 L13,13 L5,13 L5,5 L13,5 Z M7,7 L7,11 L11,11 L11,7 L7,7 Z M20,9 L20,8 L16,8 L16,9 L20,9 Z\">\n                            </path>\n                        </g>\n                    </svg>', 'bi-pos', 'icon', NULL, NULL),
('8', '1', 'Custom Floor Plans', 'Design Your Restaurants Layout.', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\"\n                        class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                        <path\n                            d=\"M8.235 1.559a.5.5 0 0 0-.47 0l-7.5 4a.5.5 0 0 0 0 .882L3.188 8 .264 9.559a.5.5 0 0 0 0 .882l7.5 4a.5.5 0 0 0 .47 0l7.5-4a.5.5 0 0 0 0-.882L12.813 8l2.922-1.559a.5.5 0 0 0 0-.882zm3.515 7.008L14.438 10 8 13.433 1.562 10 4.25 8.567l3.515 1.874a.5.5 0 0 0 .47 0zM8 9.433 1.562 6 8 2.567 14.438 6z\" />\n                    </svg>', 'bi-grid-3x3-gap', 'icon', NULL, NULL),
('9', '1', 'Kitchen Order Tickets (KOT)', 'Efficient Kitchen Workflow.', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\"\n                        class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                        <path\n                            d=\"M3 4.5a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5M11.5 4a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1z\" />\n                        <path\n                            d=\"M2.354.646a.5.5 0 0 0-.801.13l-.5 1A.5.5 0 0 0 1 2v13H.5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1H15V2a.5.5 0 0 0-.053-.224l-.5-1a.5.5 0 0 0-.8-.13L13 1.293l-.646-.647a.5.5 0 0 0-.708 0L11 1.293l-.646-.647a.5.5 0 0 0-.708 0L9 1.293 8.354.646a.5.5 0 0 0-.708 0L7 1.293 6.354.646a.5.5 0 0 0-.708 0L5 1.293 4.354.646a.5.5 0 0 0-.708 0L3 1.293zm-.217 1.198.51.51a.5.5 0 0 0 .707 0L4 1.707l.646.647a.5.5 0 0 0 .708 0L6 1.707l.646.647a.5.5 0 0 0 .708 0L8 1.707l.646.647a.5.5 0 0 0 .708 0L10 1.707l.646.647a.5.5 0 0 0 .708 0L12 1.707l.646.647a.5.5 0 0 0 .708 0l.509-.51.137.274V15H2V2.118z\" />\n                    </svg>', 'bi-receipt', 'icon', NULL, NULL),
('10', '1', 'Bill Printing', 'Quick and Accurate Billing.', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\"\n                        class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                        <path d=\"M2.5 8a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n                        <path\n                            d=\"M5 1a2 2 0 0 0-2 2v2H2a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h1v1a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-1V3a2 2 0 0 0-2-2zM4 3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2H4zm1 5a2 2 0 0 0-2 2v1H2a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-1v-1a2 2 0 0 0-2-2zm7 2v3a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1\" />\n                    </svg>', 'bi-printer', 'icon', NULL, NULL),
('11', '1', 'Reports', 'Data-Driven Decisions.', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\" class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                    <path fill-rule=\"evenodd\" d=\"M0 0h1v15h15v1H0zm10 3.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0V4.9l-3.613 4.417a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61L13.445 4H10.5a.5.5 0 0 1-.5-.5\"></path>\n                    </svg>', 'bi-arrow-right-circle-fill', 'icon', NULL, NULL);


-- Table structure for table `front_review_settings`
DROP TABLE IF EXISTS `front_review_settings`;
CREATE TABLE `front_review_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `language_setting_id` bigint(20) unsigned DEFAULT NULL,
  `reviews` text DEFAULT NULL,
  `reviewer_name` varchar(191) DEFAULT NULL,
  `reviewer_designation` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `front_review_settings_language_setting_id_foreign` (`language_setting_id`),
  CONSTRAINT `front_review_settings_language_setting_id_foreign` FOREIGN KEY (`language_setting_id`) REFERENCES `language_settings` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `front_review_settings`
INSERT INTO `front_review_settings` VALUES
('1', '1', '\" It has completely transformed how we operate. Managing orders, tables, and staff all from one platform has reduced our workload and made everything run more smoothly. \"', 'John Martin', 'Owner of Riverbend Bistro', NULL, NULL),
('2', '1', '\" The QR Code menu and payment integration have made a huge difference for us, especially after the pandemic. Customers love the ease, and we’ve seen faster table turnover.\"', 'Emily Thompson', 'Manager at Lakeside Grill', NULL, NULL),
('3', '1', '\" We are able to track every order in real time, keep our menu updated, and quickly manage payments. It is like having an extra set of hands in the restaurant.\"', 'Michael Scott', 'Owner of Downtown Eats', NULL, NULL);


-- Table structure for table `global_currencies`
DROP TABLE IF EXISTS `global_currencies`;
CREATE TABLE `global_currencies` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `currency_name` varchar(191) NOT NULL,
  `currency_symbol` varchar(191) NOT NULL,
  `currency_code` varchar(191) NOT NULL,
  `exchange_rate` decimal(16,2) DEFAULT NULL,
  `usd_price` decimal(16,2) DEFAULT NULL,
  `is_cryptocurrency` enum('yes','no') NOT NULL DEFAULT 'no',
  `currency_position` enum('left','right','left_with_space','right_with_space') NOT NULL DEFAULT 'left',
  `no_of_decimal` int(10) unsigned NOT NULL DEFAULT 2,
  `thousand_separator` varchar(191) DEFAULT NULL,
  `decimal_separator` varchar(191) DEFAULT NULL,
  `status` enum('enable','disable') NOT NULL DEFAULT 'enable',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `global_currencies`
INSERT INTO `global_currencies` VALUES
('1', 'US Dollars', '$', 'USD', NULL, NULL, 'no', 'left', '2', ',', '.', 'enable', '2025-09-17 05:36:40', '2025-09-17 06:12:50', NULL),
('2', 'Indian Rupee', '₹', 'INR', NULL, NULL, 'no', 'left', '2', ',', '.', 'enable', '2025-09-17 05:36:40', '2025-09-20 14:32:54', NULL),
('3', 'Pounds', '£', 'GBP', NULL, NULL, 'no', 'left', '2', ',', '.', 'enable', '2025-09-17 05:36:40', '2025-09-17 05:36:40', NULL),
('4', 'Euros', '€', 'EUR', NULL, NULL, 'no', 'left', '2', ',', '.', 'enable', '2025-09-17 05:36:40', '2025-09-17 05:36:40', NULL),
('5', 'Canadian Dollar', '$', 'CAD', NULL, NULL, 'no', 'left', '2', ',', '.', 'enable', '2025-09-17 06:12:38', '2025-09-17 06:12:38', NULL);


-- Table structure for table `global_invoices`
DROP TABLE IF EXISTS `global_invoices`;
CREATE TABLE `global_invoices` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `currency_id` bigint(20) unsigned DEFAULT NULL,
  `package_id` bigint(20) unsigned DEFAULT NULL,
  `global_subscription_id` bigint(20) unsigned DEFAULT NULL,
  `offline_method_id` bigint(20) unsigned DEFAULT NULL,
  `signature` varchar(191) DEFAULT NULL,
  `token` varchar(191) DEFAULT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `reference_id` varchar(191) DEFAULT NULL,
  `event_id` varchar(191) DEFAULT NULL,
  `package_type` varchar(191) DEFAULT NULL,
  `sub_total` int(11) DEFAULT NULL,
  `total` int(11) DEFAULT NULL,
  `billing_frequency` varchar(191) DEFAULT NULL,
  `billing_interval` varchar(191) DEFAULT NULL,
  `recurring` enum('yes','no') DEFAULT NULL,
  `plan_id` varchar(191) DEFAULT NULL,
  `subscription_id` varchar(191) DEFAULT NULL,
  `invoice_id` varchar(191) DEFAULT NULL,
  `amount` decimal(16,2) DEFAULT NULL,
  `stripe_invoice_number` varchar(191) DEFAULT NULL,
  `pay_date` datetime DEFAULT NULL,
  `next_pay_date` datetime DEFAULT NULL,
  `gateway_name` varchar(191) DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `m_payment_id` varchar(191) DEFAULT NULL,
  `pf_payment_id` varchar(191) DEFAULT NULL,
  `payfast_plan` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `global_invoices_restaurant_id_foreign` (`restaurant_id`),
  KEY `global_invoices_currency_id_foreign` (`currency_id`),
  KEY `global_invoices_package_id_foreign` (`package_id`),
  KEY `global_invoices_global_subscription_id_foreign` (`global_subscription_id`),
  KEY `global_invoices_offline_method_id_foreign` (`offline_method_id`),
  CONSTRAINT `global_invoices_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `global_currencies` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `global_invoices_global_subscription_id_foreign` FOREIGN KEY (`global_subscription_id`) REFERENCES `global_subscriptions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `global_invoices_offline_method_id_foreign` FOREIGN KEY (`offline_method_id`) REFERENCES `offline_payment_methods` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `global_invoices_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `global_invoices_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `global_invoices`
INSERT INTO `global_invoices` VALUES
('1', '1', '1', '5', '1', NULL, NULL, NULL, 'JLGL2SB6OS57QNL', NULL, NULL, 'trial', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-17 05:36:43', '2025-10-17 05:36:43', 'offline', 'active', '2025-09-17 05:36:43', '2025-09-17 05:36:43', NULL, NULL, NULL),
('2', '2', '1', '5', '2', NULL, NULL, NULL, 'ZDQJNFUSENGXF9R', NULL, NULL, 'trial', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-17 10:02:45', '2025-10-17 10:02:45', 'offline', 'active', '2025-09-17 10:02:45', '2025-09-17 10:02:45', NULL, NULL, NULL),
('3', '2', '1', '3', '3', NULL, NULL, NULL, 'SBNYAYGDZZUKXUW', NULL, NULL, 'lifetime', NULL, '199', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-20 00:00:00', '2026-05-15 00:00:00', 'offline', NULL, '2025-09-20 12:20:44', '2025-09-20 12:20:44', NULL, NULL, NULL),
('4', '3', '1', '5', '4', NULL, NULL, NULL, '63ZULAHH9MKTEMM', NULL, NULL, 'trial', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-20 12:56:44', '2025-10-20 12:56:44', 'offline', 'active', '2025-09-20 12:56:44', '2025-09-20 12:56:44', NULL, NULL, NULL),
('5', '4', '1', '5', '5', NULL, NULL, NULL, 'SE38QYIOHPNUNI2', NULL, NULL, 'trial', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:00:09', '2025-11-06 15:00:09', 'offline', 'active', '2025-10-07 15:00:09', '2025-10-07 15:00:09', NULL, NULL, NULL),
('8', '4', '1', '3', '8', NULL, NULL, NULL, '4P9UI7IOHCSMABH', NULL, NULL, 'lifetime', NULL, '199', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 00:00:00', NULL, 'offline', NULL, '2025-10-07 15:14:48', '2025-10-07 15:14:48', NULL, NULL, NULL);


-- Table structure for table `global_settings`
DROP TABLE IF EXISTS `global_settings`;
CREATE TABLE `global_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `purchase_code` varchar(80) DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `last_license_verified_at` timestamp NULL DEFAULT NULL,
  `email` varchar(191) DEFAULT NULL,
  `privacy_policy_link` varchar(191) DEFAULT NULL,
  `show_privacy_consent_checkbox` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `logo` varchar(191) DEFAULT NULL,
  `theme_hex` varchar(191) DEFAULT NULL,
  `theme_rgb` varchar(191) DEFAULT NULL,
  `locale` varchar(191) NOT NULL DEFAULT 'en',
  `license_type` varchar(191) DEFAULT NULL,
  `hide_cron_job` tinyint(1) NOT NULL DEFAULT 0,
  `last_cron_run` timestamp NULL DEFAULT NULL,
  `system_update` tinyint(1) NOT NULL DEFAULT 1,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `timezone` varchar(191) DEFAULT 'Asia/Kolkata',
  `disable_landing_site` tinyint(1) NOT NULL DEFAULT 0,
  `landing_type` varchar(191) NOT NULL DEFAULT 'dynamic',
  `landing_site_type` enum('theme','custom') NOT NULL DEFAULT 'theme',
  `landing_site_url` varchar(191) DEFAULT NULL,
  `installed_url` tinytext DEFAULT NULL,
  `requires_approval_after_signup` tinyint(1) NOT NULL DEFAULT 0,
  `facebook_link` varchar(255) DEFAULT NULL,
  `instagram_link` varchar(255) DEFAULT NULL,
  `twitter_link` varchar(255) DEFAULT NULL,
  `yelp_link` varchar(255) DEFAULT NULL,
  `default_currency_id` bigint(20) unsigned DEFAULT NULL,
  `show_logo_text` tinyint(1) NOT NULL DEFAULT 1,
  `meta_title` varchar(191) DEFAULT NULL,
  `meta_keyword` text DEFAULT NULL,
  `meta_description` longtext DEFAULT NULL,
  `upload_fav_icon_android_chrome_192` varchar(191) DEFAULT NULL,
  `upload_fav_icon_android_chrome_512` varchar(191) DEFAULT NULL,
  `upload_fav_icon_apple_touch_icon` varchar(191) DEFAULT NULL,
  `upload_favicon_16` varchar(191) DEFAULT NULL,
  `upload_favicon_32` varchar(191) DEFAULT NULL,
  `favicon` varchar(191) DEFAULT NULL,
  `hash` varchar(191) DEFAULT NULL,
  `webmanifest` varchar(191) DEFAULT NULL,
  `is_pwa_install_alert_show` varchar(191) NOT NULL DEFAULT '0',
  `google_map_api_key` varchar(191) DEFAULT NULL,
  `session_driver` enum('file','database') NOT NULL DEFAULT 'database',
  `enable_stripe` tinyint(1) NOT NULL DEFAULT 1,
  `enable_razorpay` tinyint(1) NOT NULL DEFAULT 1,
  `enable_flutterwave` tinyint(1) NOT NULL DEFAULT 1,
  `enable_payfast` tinyint(1) NOT NULL DEFAULT 1,
  `enable_paypal` tinyint(1) NOT NULL DEFAULT 1,
  `enable_paystack` tinyint(1) NOT NULL DEFAULT 1,
  `enable_xendit` tinyint(1) NOT NULL DEFAULT 1,
  `enable_paddle` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `global_settings_default_currency_id_foreign` (`default_currency_id`),
  CONSTRAINT `global_settings_default_currency_id_foreign` FOREIGN KEY (`default_currency_id`) REFERENCES `global_currencies` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `global_settings`
INSERT INTO `global_settings` VALUES
('1', '351d2f0d-a1e4-4e9f-a43c-1d1ab71fcb83', '2026-04-16 03:07:13', '2025-10-15 14:10:13', NULL, 'https://ewiidine.ca/', '1', '2025-09-17 05:36:43', '2025-10-15 14:26:30', 'EwiiDine', NULL, '#4F46E5', '79, 70, 229', 'en', 'Regular License', '1', '2025-10-15 14:11:02', '1', '2025-10-15 12:07:13', 'Asia/Kolkata', '0', 'dynamic', 'custom', 'https://ewiidine.com', 'https://ewiidine.ca', '0', 'https://www.facebook.com/', 'https://www.instagram.com/', 'https://www.twitter.com/', NULL, '5', '1', NULL, NULL, NULL, 'android-chrome-192x192.png', 'android-chrome-512x512.png', 'apple-touch-icon.png', 'favicon-16x16.png', 'favicon-32x32.png', 'favicon.ico', 'ce56715187588fe3f6eb9c47b3fc6991', NULL, '1', 'AIzaSyCGqeim4fmIzELy26WvSJwFDs3kjROTjUI', 'database', '1', '1', '1', '1', '1', '1', '1', '1');


-- Table structure for table `global_subscriptions`
DROP TABLE IF EXISTS `global_subscriptions`;
CREATE TABLE `global_subscriptions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `package_id` bigint(20) unsigned DEFAULT NULL,
  `currency_id` bigint(20) unsigned DEFAULT NULL,
  `package_type` varchar(191) DEFAULT NULL,
  `plan_type` varchar(191) DEFAULT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `name` varchar(191) DEFAULT NULL,
  `user_id` varchar(191) DEFAULT NULL,
  `quantity` varchar(191) DEFAULT NULL,
  `token` varchar(191) DEFAULT NULL,
  `razorpay_id` varchar(191) DEFAULT NULL,
  `razorpay_plan` varchar(191) DEFAULT NULL,
  `stripe_id` varchar(191) DEFAULT NULL,
  `stripe_status` varchar(191) DEFAULT NULL,
  `stripe_price` varchar(191) DEFAULT NULL,
  `gateway_name` varchar(191) DEFAULT NULL,
  `trial_ends_at` varchar(191) DEFAULT NULL,
  `subscription_status` enum('active','inactive') DEFAULT NULL,
  `ends_at` datetime DEFAULT NULL,
  `subscribed_on_date` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `subscription_id` varchar(191) DEFAULT NULL,
  `customer_id` varchar(191) DEFAULT NULL,
  `flutterwave_id` varchar(191) DEFAULT NULL,
  `flutterwave_payment_ref` varchar(191) DEFAULT NULL,
  `flutterwave_status` varchar(191) DEFAULT NULL,
  `flutterwave_customer_id` varchar(191) DEFAULT NULL,
  `payfast_plan` varchar(191) DEFAULT NULL,
  `payfast_status` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `global_subscriptions_restaurant_id_foreign` (`restaurant_id`),
  KEY `global_subscriptions_package_id_foreign` (`package_id`),
  KEY `global_subscriptions_currency_id_foreign` (`currency_id`),
  CONSTRAINT `global_subscriptions_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `global_currencies` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `global_subscriptions_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `global_subscriptions_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `global_subscriptions`
INSERT INTO `global_subscriptions` VALUES
('1', '1', '5', '1', 'trial', NULL, 'JLGL2SB6OS57QNL', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', '2025-10-17 05:36:43', 'active', '2025-10-17 05:36:43', '2025-09-17 05:36:43', '2025-09-17 05:36:43', '2025-09-17 05:36:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('2', '2', '5', '1', 'trial', NULL, 'ZDQJNFUSENGXF9R', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', '2025-10-17 10:02:45', 'inactive', '2025-10-17 10:02:45', '2025-09-17 10:02:45', '2025-09-17 10:02:45', '2025-09-20 12:20:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('3', '2', '3', '1', 'lifetime', NULL, 'SBNYAYGDZZUKXUW', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', NULL, 'active', NULL, '2025-09-20 00:00:00', '2025-09-20 12:20:44', '2025-09-20 12:20:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('4', '3', '5', '1', 'trial', NULL, '63ZULAHH9MKTEMM', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', '2025-10-20 12:56:44', 'active', '2025-10-20 12:56:44', '2025-09-20 12:56:44', '2025-09-20 12:56:44', '2025-09-20 12:56:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('5', '4', '5', '1', 'trial', NULL, 'SE38QYIOHPNUNI2', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', '2025-11-06 15:00:09', 'inactive', '2025-11-06 15:00:09', '2025-10-07 15:00:09', '2025-10-07 15:00:09', '2025-10-07 15:14:48', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('8', '4', '3', '1', 'lifetime', NULL, '4P9UI7IOHCSMABH', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', NULL, 'active', NULL, '2025-10-07 00:00:00', '2025-10-07 15:14:48', '2025-10-07 15:14:48', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);


-- Table structure for table `inventory_global_settings`
DROP TABLE IF EXISTS `inventory_global_settings`;
CREATE TABLE `inventory_global_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `license_type` varchar(20) DEFAULT NULL,
  `purchase_code` varchar(191) DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `inventory_global_settings`
INSERT INTO `inventory_global_settings` VALUES
('1', NULL, 'd', NULL, NULL, '1', '2025-09-17 05:48:09', '2025-09-17 05:49:12');


-- Table structure for table `inventory_item_categories`
DROP TABLE IF EXISTS `inventory_item_categories`;
CREATE TABLE `inventory_item_categories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `inventory_item_categories_branch_id_foreign` (`branch_id`),
  CONSTRAINT `inventory_item_categories_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `inventory_item_categories`
INSERT INTO `inventory_item_categories` VALUES
('1', '1', 'Meat & Poultry', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('2', '1', 'Seafood', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('3', '1', 'Dairy & Eggs', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('4', '1', 'Fresh Produce', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('5', '1', 'Herbs & Spices', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('6', '1', 'Dry Goods', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('7', '1', 'Canned Goods', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('8', '1', 'Beverages', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('9', '1', 'Condiments & Sauces', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('10', '1', 'Baking Supplies', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('11', '1', 'Oils & Vinegars', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('12', '1', 'Frozen Foods', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('13', '1', 'Cleaning Supplies', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('14', '1', 'Kitchen Equipment', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('15', '1', 'Disposables', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('16', '2', 'Meat & Poultry', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('17', '2', 'Seafood', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('18', '2', 'Dairy & Eggs', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('19', '2', 'Fresh Produce', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('20', '2', 'Herbs & Spices', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('21', '2', 'Dry Goods', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('22', '2', 'Canned Goods', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('23', '2', 'Beverages', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('24', '2', 'Condiments & Sauces', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('25', '2', 'Baking Supplies', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('26', '2', 'Oils & Vinegars', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('27', '2', 'Frozen Foods', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('28', '2', 'Cleaning Supplies', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('29', '2', 'Kitchen Equipment', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('30', '2', 'Disposables', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('31', '3', 'Meat & Poultry', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('32', '3', 'Seafood', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('33', '3', 'Dairy & Eggs', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('34', '3', 'Fresh Produce', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('35', '3', 'Herbs & Spices', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('36', '3', 'Dry Goods', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('37', '3', 'Canned Goods', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('38', '3', 'Beverages', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('39', '3', 'Condiments & Sauces', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('40', '3', 'Baking Supplies', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('41', '3', 'Oils & Vinegars', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('42', '3', 'Frozen Foods', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('43', '3', 'Cleaning Supplies', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('44', '3', 'Kitchen Equipment', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('45', '3', 'Disposables', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('46', '4', 'Meat & Poultry', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('47', '4', 'Seafood', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('48', '4', 'Dairy & Eggs', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('49', '4', 'Fresh Produce', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('50', '4', 'Herbs & Spices', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('51', '4', 'Dry Goods', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('52', '4', 'Canned Goods', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('53', '4', 'Beverages', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('54', '4', 'Condiments & Sauces', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('55', '4', 'Baking Supplies', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('56', '4', 'Oils & Vinegars', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('57', '4', 'Frozen Foods', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('58', '4', 'Cleaning Supplies', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('59', '4', 'Kitchen Equipment', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('60', '4', 'Disposables', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('61', '5', 'Meat & Poultry', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('62', '5', 'Seafood', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('63', '5', 'Dairy & Eggs', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('64', '5', 'Fresh Produce', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('65', '5', 'Herbs & Spices', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('66', '5', 'Dry Goods', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('67', '5', 'Canned Goods', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('68', '5', 'Beverages', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('69', '5', 'Condiments & Sauces', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('70', '5', 'Baking Supplies', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('71', '5', 'Oils & Vinegars', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('72', '5', 'Frozen Foods', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('73', '5', 'Cleaning Supplies', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('74', '5', 'Kitchen Equipment', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('75', '5', 'Disposables', '2025-10-07 15:00:09', '2025-10-07 15:00:09');


-- Table structure for table `inventory_items`
DROP TABLE IF EXISTS `inventory_items`;
CREATE TABLE `inventory_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `name` varchar(191) NOT NULL,
  `inventory_item_category_id` bigint(20) unsigned NOT NULL,
  `unit_id` bigint(20) unsigned NOT NULL,
  `threshold_quantity` decimal(16,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `preferred_supplier_id` bigint(20) unsigned DEFAULT NULL,
  `reorder_quantity` decimal(16,2) NOT NULL DEFAULT 0.00,
  `unit_purchase_price` decimal(16,2) NOT NULL DEFAULT 0.00,
  PRIMARY KEY (`id`),
  KEY `inventory_items_branch_id_foreign` (`branch_id`),
  KEY `inventory_items_inventory_item_category_id_foreign` (`inventory_item_category_id`),
  KEY `inventory_items_unit_id_foreign` (`unit_id`),
  KEY `inventory_items_preferred_supplier_id_foreign` (`preferred_supplier_id`),
  CONSTRAINT `inventory_items_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `inventory_items_inventory_item_category_id_foreign` FOREIGN KEY (`inventory_item_category_id`) REFERENCES `inventory_item_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `inventory_items_preferred_supplier_id_foreign` FOREIGN KEY (`preferred_supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE SET NULL,
  CONSTRAINT `inventory_items_unit_id_foreign` FOREIGN KEY (`unit_id`) REFERENCES `units` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `inventory_movements`
DROP TABLE IF EXISTS `inventory_movements`;
CREATE TABLE `inventory_movements` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `inventory_item_id` bigint(20) unsigned NOT NULL,
  `quantity` decimal(16,2) NOT NULL DEFAULT 0.00,
  `transaction_type` enum('in','out','waste','transfer') NOT NULL DEFAULT 'in',
  `waste_reason` enum('expiry','spoilage','customer_complaint','over_preparation','other') DEFAULT NULL,
  `added_by` bigint(20) unsigned DEFAULT NULL,
  `supplier_id` bigint(20) unsigned DEFAULT NULL,
  `transfer_branch_id` bigint(20) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `unit_purchase_price` decimal(16,2) NOT NULL DEFAULT 0.00,
  `expiration_date` date DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `inventory_movements_branch_id_foreign` (`branch_id`),
  KEY `inventory_movements_inventory_item_id_foreign` (`inventory_item_id`),
  KEY `inventory_movements_added_by_foreign` (`added_by`),
  KEY `inventory_movements_supplier_id_foreign` (`supplier_id`),
  KEY `inventory_movements_transfer_branch_id_foreign` (`transfer_branch_id`),
  CONSTRAINT `inventory_movements_added_by_foreign` FOREIGN KEY (`added_by`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `inventory_movements_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `inventory_movements_inventory_item_id_foreign` FOREIGN KEY (`inventory_item_id`) REFERENCES `inventory_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `inventory_movements_supplier_id_foreign` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `inventory_movements_transfer_branch_id_foreign` FOREIGN KEY (`transfer_branch_id`) REFERENCES `branches` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `inventory_settings`
DROP TABLE IF EXISTS `inventory_settings`;
CREATE TABLE `inventory_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned NOT NULL,
  `allow_auto_purchase` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `inventory_settings_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `inventory_settings_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `inventory_settings`
INSERT INTO `inventory_settings` VALUES
('1', '1', '0', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('2', '1', '0', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('3', '2', '0', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('4', '3', '0', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('5', '4', '0', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('7', '1', '0', '2025-10-15 12:17:24', '2025-10-15 12:17:24'),
('8', '2', '0', '2025-10-15 12:17:24', '2025-10-15 12:17:24'),
('9', '3', '0', '2025-10-15 12:17:24', '2025-10-15 12:17:24'),
('10', '4', '0', '2025-10-15 12:17:24', '2025-10-15 12:17:24');


-- Table structure for table `inventory_stocks`
DROP TABLE IF EXISTS `inventory_stocks`;
CREATE TABLE `inventory_stocks` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `inventory_item_id` bigint(20) unsigned NOT NULL,
  `quantity` decimal(16,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `inventory_stocks_branch_id_foreign` (`branch_id`),
  KEY `inventory_stocks_inventory_item_id_foreign` (`inventory_item_id`),
  CONSTRAINT `inventory_stocks_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `inventory_stocks_inventory_item_id_foreign` FOREIGN KEY (`inventory_item_id`) REFERENCES `inventory_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `item_categories`
DROP TABLE IF EXISTS `item_categories`;
CREATE TABLE `item_categories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `category_name` text DEFAULT NULL,
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `item_categories_branch_id_foreign` (`branch_id`),
  CONSTRAINT `item_categories_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `item_categories`
INSERT INTO `item_categories` VALUES
('1', '1', '{\"en\":\"Indian Veg Curries\"}', '0', '2025-09-17 06:04:57', '2025-09-17 06:04:57'),
('2', '1', '{\"en\":\"Indian Non-Veg Curries\"}', '0', '2025-09-17 06:04:57', '2025-09-17 06:04:57'),
('3', '1', '{\"en\":\"South Indian\"}', '0', '2025-09-17 06:04:57', '2025-09-17 06:04:57'),
('4', '1', '{\"en\":\"Biryani & Rice\"}', '0', '2025-09-17 06:04:57', '2025-09-17 06:04:57'),
('5', '1', '{\"en\":\"Indian Breads\"}', '0', '2025-09-17 06:04:57', '2025-09-17 06:04:57'),
('6', '1', '{\"en\":\"Chaat & Street Food\"}', '0', '2025-09-17 06:04:57', '2025-09-17 06:04:57'),
('7', '1', '{\"en\":\"Tandoor & Kebabs\"}', '0', '2025-09-17 06:04:58', '2025-09-17 06:04:58'),
('8', '1', '{\"en\":\"Indo-Chinese\"}', '0', '2025-09-17 06:04:58', '2025-09-17 06:04:58'),
('9', '1', '{\"en\":\"Continental & Pastas\"}', '0', '2025-09-17 06:04:58', '2025-09-17 06:04:58'),
('10', '1', '{\"en\":\"Pizzas\"}', '0', '2025-09-17 06:04:58', '2025-09-17 06:04:58'),
('11', '1', '{\"en\":\"Burgers & Sandwiches\"}', '0', '2025-09-17 06:04:58', '2025-09-17 06:04:58'),
('12', '1', '{\"en\":\"Desserts\"}', '0', '2025-09-17 06:04:58', '2025-09-17 06:04:58'),
('13', '1', '{\"en\":\"Beverages\"}', '0', '2025-09-17 06:04:58', '2025-09-17 06:04:58'),
('14', '3', '{\"en\":\"Indian Veg Curries\"}', '0', '2025-09-19 20:04:20', '2025-09-19 20:04:20'),
('15', '3', '{\"en\":\"Indian Non-Veg Curries\"}', '0', '2025-09-19 20:04:20', '2025-09-19 20:04:20'),
('16', '3', '{\"en\":\"South Indian\"}', '0', '2025-09-19 20:04:20', '2025-09-19 20:04:20'),
('17', '3', '{\"en\":\"Biryani & Rice\"}', '0', '2025-09-19 20:04:20', '2025-09-19 20:04:20'),
('18', '3', '{\"en\":\"Indian Breads\"}', '0', '2025-09-19 20:04:20', '2025-09-19 20:04:20'),
('19', '3', '{\"en\":\"Chaat & Street Food\"}', '0', '2025-09-19 20:04:20', '2025-09-19 20:04:20'),
('20', '3', '{\"en\":\"Tandoor & Kebabs\"}', '0', '2025-09-19 20:04:21', '2025-09-19 20:04:21'),
('21', '3', '{\"en\":\"Indo-Chinese\"}', '0', '2025-09-19 20:04:21', '2025-09-19 20:04:21'),
('22', '3', '{\"en\":\"Continental & Pastas\"}', '0', '2025-09-19 20:04:21', '2025-09-19 20:04:21'),
('23', '3', '{\"en\":\"Pizzas\"}', '0', '2025-09-19 20:04:21', '2025-09-19 20:04:21'),
('24', '3', '{\"en\":\"Burgers & Sandwiches\"}', '0', '2025-09-19 20:04:21', '2025-09-19 20:04:21'),
('25', '3', '{\"en\":\"Desserts\"}', '0', '2025-09-19 20:04:21', '2025-09-19 20:04:21'),
('26', '3', '{\"en\":\"Beverages\"}', '0', '2025-09-19 20:04:21', '2025-09-19 20:04:21'),
('27', '4', '{\"en\":\"Pizza\"}', '0', '2025-09-20 12:59:15', '2025-09-20 12:59:15'),
('29', '5', '{\"en\":\"South Indian\"}', '0', '2025-10-08 08:40:25', '2025-10-08 08:40:25'),
('30', '5', '{\"en\":\"North Indian\"}', '0', '2025-10-08 08:40:56', '2025-10-08 08:41:09'),
('31', '5', '{\"en\":\"Street Food\"}', '0', '2025-10-08 08:41:33', '2025-10-08 08:41:33'),
('32', '5', '{\"en\":\"Snacks & Starters\"}', '0', '2025-10-08 08:41:39', '2025-10-08 08:41:39'),
('33', '5', '{\"en\":\"Desserts & Sweets\"}', '0', '2025-10-08 08:41:48', '2025-10-08 08:41:48');


-- Table structure for table `item_modifiers`
DROP TABLE IF EXISTS `item_modifiers`;
CREATE TABLE `item_modifiers` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `menu_item_id` bigint(20) unsigned DEFAULT NULL,
  `menu_item_variation_id` bigint(20) unsigned DEFAULT NULL,
  `modifier_group_id` bigint(20) unsigned DEFAULT NULL,
  `is_required` tinyint(1) NOT NULL DEFAULT 0,
  `allow_multiple_selection` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `item_modifiers_menu_item_id_foreign` (`menu_item_id`),
  KEY `item_modifiers_modifier_group_id_foreign` (`modifier_group_id`),
  KEY `item_modifiers_menu_item_variation_id_foreign` (`menu_item_variation_id`),
  CONSTRAINT `item_modifiers_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `item_modifiers_menu_item_variation_id_foreign` FOREIGN KEY (`menu_item_variation_id`) REFERENCES `menu_item_variations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `item_modifiers_modifier_group_id_foreign` FOREIGN KEY (`modifier_group_id`) REFERENCES `modifier_groups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `job_batches`
DROP TABLE IF EXISTS `job_batches`;
CREATE TABLE `job_batches` (
  `id` varchar(191) NOT NULL,
  `name` varchar(191) NOT NULL,
  `total_jobs` int(11) NOT NULL,
  `pending_jobs` int(11) NOT NULL,
  `failed_jobs` int(11) NOT NULL,
  `failed_job_ids` longtext NOT NULL,
  `options` mediumtext DEFAULT NULL,
  `cancelled_at` int(11) DEFAULT NULL,
  `created_at` int(11) NOT NULL,
  `finished_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `jobs`
DROP TABLE IF EXISTS `jobs`;
CREATE TABLE `jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `queue` varchar(191) NOT NULL,
  `payload` longtext NOT NULL,
  `attempts` tinyint(3) unsigned NOT NULL,
  `reserved_at` int(10) unsigned DEFAULT NULL,
  `available_at` int(10) unsigned NOT NULL,
  `created_at` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `jobs_queue_index` (`queue`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `kiosk_ads`
DROP TABLE IF EXISTS `kiosk_ads`;
CREATE TABLE `kiosk_ads` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `heading` varchar(191) NOT NULL,
  `description` varchar(191) NOT NULL,
  `image` varchar(191) NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `kiosk_global_settings`
DROP TABLE IF EXISTS `kiosk_global_settings`;
CREATE TABLE `kiosk_global_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `license_type` varchar(20) DEFAULT NULL,
  `purchase_code` varchar(191) DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kiosk_global_settings`
INSERT INTO `kiosk_global_settings` VALUES
('1', NULL, '65100125-205d-420e-b03c-0faa1e6f02b9', NULL, '2026-04-16 03:07:13', '1', '2025-09-28 12:08:47', '2025-10-15 12:16:47');


-- Table structure for table `kiosks`
DROP TABLE IF EXISTS `kiosks`;
CREATE TABLE `kiosks` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `code` varchar(64) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `last_seen_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `kiosks_code_unique` (`code`),
  KEY `kiosks_branch_id_foreign` (`branch_id`),
  CONSTRAINT `kiosks_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kiosks`
INSERT INTO `kiosks` VALUES
('1', '1', '775441', 'East Ryann', '1', NULL, '2025-10-15 12:16:46', '2025-10-15 12:16:46'),
('2', '2', '893272', 'Port Maudiemouth', '1', NULL, '2025-10-15 12:16:46', '2025-10-15 12:16:46'),
('3', '3', '108513', 'Kosi Road', '1', NULL, '2025-10-15 12:16:46', '2025-10-15 12:16:46'),
('4', '4', '200574', 'Montreal Branch', '1', NULL, '2025-10-15 12:16:46', '2025-10-15 12:16:46'),
('5', '5', '922825', 'MESS ONE', '1', NULL, '2025-10-15 12:16:46', '2025-10-15 12:16:46');


-- Table structure for table `kitchen_global_settings`
DROP TABLE IF EXISTS `kitchen_global_settings`;
CREATE TABLE `kitchen_global_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `license_type` varchar(20) DEFAULT NULL,
  `purchase_code` varchar(191) DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kitchen_global_settings`
INSERT INTO `kitchen_global_settings` VALUES
('1', NULL, 'k', NULL, NULL, '1', '2025-09-17 05:48:21', '2025-09-17 05:49:25');


-- Table structure for table `kot_cancel_reasons`
DROP TABLE IF EXISTS `kot_cancel_reasons`;
CREATE TABLE `kot_cancel_reasons` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `reason` varchar(191) NOT NULL,
  `cancel_order` tinyint(1) NOT NULL DEFAULT 0,
  `cancel_kot` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kot_cancel_reasons_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `kot_cancel_reasons_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kot_cancel_reasons`
INSERT INTO `kot_cancel_reasons` VALUES
('1', '1', 'Customer changed their mind', '1', '0', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('2', '1', 'Customer requested to cancel', '1', '0', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('3', '1', 'Payment issues', '1', '0', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('4', '1', 'Customer no longer wants the order', '1', '0', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('5', '1', 'Ingredient not available', '0', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('6', '1', 'Preparation time too long', '0', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('7', '1', 'Quality issue with ingredients', '0', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('8', '1', 'System error/Technical issue', '1', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('9', '1', 'Restaurant closing early', '1', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('10', '1', 'Other', '1', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44');


-- Table structure for table `kot_item_modifier_options`
DROP TABLE IF EXISTS `kot_item_modifier_options`;
CREATE TABLE `kot_item_modifier_options` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `kot_item_id` bigint(20) unsigned NOT NULL,
  `modifier_option_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kot_item_modifier_options_kot_item_id_foreign` (`kot_item_id`),
  KEY `kot_item_modifier_options_modifier_option_id_foreign` (`modifier_option_id`),
  CONSTRAINT `kot_item_modifier_options_kot_item_id_foreign` FOREIGN KEY (`kot_item_id`) REFERENCES `kot_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `kot_item_modifier_options_modifier_option_id_foreign` FOREIGN KEY (`modifier_option_id`) REFERENCES `modifier_options` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `kot_items`
DROP TABLE IF EXISTS `kot_items`;
CREATE TABLE `kot_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `kot_id` bigint(20) unsigned NOT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `menu_item_id` bigint(20) unsigned NOT NULL,
  `menu_item_variation_id` bigint(20) unsigned DEFAULT NULL,
  `note` text DEFAULT NULL,
  `quantity` int(11) NOT NULL,
  `status` enum('pending','cooking','ready') DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kot_items_kot_id_foreign` (`kot_id`),
  KEY `kot_items_menu_item_id_foreign` (`menu_item_id`),
  KEY `kot_items_menu_item_variation_id_foreign` (`menu_item_variation_id`),
  CONSTRAINT `kot_items_kot_id_foreign` FOREIGN KEY (`kot_id`) REFERENCES `kots` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `kot_items_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE,
  CONSTRAINT `kot_items_menu_item_variation_id_foreign` FOREIGN KEY (`menu_item_variation_id`) REFERENCES `menu_item_variations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kot_items`
INSERT INTO `kot_items` VALUES
('1', '1', 'TXN_68ce9d21bd2a93.28356548_231480', '251', NULL, '', '1', NULL, '2025-09-20 12:25:05', '2025-09-20 12:25:05'),
('2', '1', 'TXN_68ce9d21bd2a93.28356548_231480', '252', NULL, '', '1', NULL, '2025-09-20 12:25:05', '2025-09-20 12:25:05'),
('5', '4', 'TXN_68e62861d3eb76.37324333_776395', '503', '2', '', '1', NULL, '2025-10-08 09:01:21', '2025-10-08 09:01:21'),
('6', '4', 'TXN_68e62861d3eb76.37324333_776395', '504', '6', '', '1', NULL, '2025-10-08 09:01:21', '2025-10-08 09:01:21'),
('7', '4', 'TXN_68e62861d3eb76.37324333_776395', '506', '10', '', '1', NULL, '2025-10-08 09:01:21', '2025-10-08 09:01:21'),
('8', '5', 'TXN_68e63e3e517e69.31196617_301189', '504', '4', '', '1', NULL, '2025-10-08 10:34:38', '2025-10-08 10:34:38'),
('9', '6', NULL, '507', NULL, '', '1', NULL, '2025-10-15 12:33:29', '2025-10-15 12:33:29'),
('10', '7', 'KIOSK_TXN_68ef9521a16ec0.32691058', '503', NULL, NULL, '1', NULL, '2025-10-15 12:35:45', '2025-10-15 12:35:45'),
('11', '7', 'KIOSK_TXN_68ef9521a16ec0.32691058', '504', NULL, NULL, '2', NULL, '2025-10-15 12:35:45', '2025-10-15 12:35:45'),
('12', '8', 'KIOSK_TXN_68ef95b8481505.85338088', '503', '3', NULL, '2', NULL, '2025-10-15 12:38:16', '2025-10-15 12:38:16'),
('13', '8', 'KIOSK_TXN_68ef95b8481505.85338088', '503', '2', NULL, '2', NULL, '2025-10-15 12:38:16', '2025-10-15 12:38:16'),
('14', '9', NULL, '504', '4', NULL, '1', NULL, '2025-10-15 12:40:33', '2025-10-15 12:40:33');


-- Table structure for table `kot_places`
DROP TABLE IF EXISTS `kot_places`;
CREATE TABLE `kot_places` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `printer_id` bigint(20) unsigned DEFAULT NULL,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `type` varchar(191) DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kot_places_branch_id_foreign` (`branch_id`),
  KEY `kot_places_printer_id_foreign` (`printer_id`),
  CONSTRAINT `kot_places_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `kot_places_printer_id_foreign` FOREIGN KEY (`printer_id`) REFERENCES `printers` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kot_places`
INSERT INTO `kot_places` VALUES
('1', '1', '1', 'Default Kitchen', 'food', '1', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('2', '2', '2', 'Default Kitchen', 'food', '1', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('3', '3', '3', 'Default Kitchen', 'food', '1', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('4', '4', '4', 'Default Kitchen', 'food', '1', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('5', '5', '5', 'Default Kitchen', 'food', '1', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09');


-- Table structure for table `kot_settings`
DROP TABLE IF EXISTS `kot_settings`;
CREATE TABLE `kot_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `default_status` enum('pending','cooking') NOT NULL DEFAULT 'pending',
  `enable_item_level_status` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kot_settings_branch_id_foreign` (`branch_id`),
  CONSTRAINT `kot_settings_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kot_settings`
INSERT INTO `kot_settings` VALUES
('1', '1', 'pending', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('2', '1', 'pending', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('3', '2', 'pending', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('4', '2', 'pending', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('5', '3', 'pending', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('6', '4', 'pending', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('7', '5', 'pending', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09');


-- Table structure for table `kots`
DROP TABLE IF EXISTS `kots`;
CREATE TABLE `kots` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `kitchen_place_id` bigint(20) unsigned DEFAULT NULL,
  `kot_number` varchar(191) NOT NULL,
  `token_number` int(10) unsigned DEFAULT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `order_type_id` bigint(20) unsigned DEFAULT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `note` text DEFAULT NULL,
  `status` enum('pending_confirmation','in_kitchen','food_ready','served','cancelled') NOT NULL DEFAULT 'in_kitchen',
  `cancel_reason_id` bigint(20) unsigned DEFAULT NULL,
  `cancel_reason_text` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kots_order_id_foreign` (`order_id`),
  KEY `kots_branch_id_foreign` (`branch_id`),
  KEY `kots_cancel_reason_id_foreign` (`cancel_reason_id`),
  KEY `kots_kitchen_place_id_foreign` (`kitchen_place_id`),
  KEY `kots_order_type_id_foreign` (`order_type_id`),
  CONSTRAINT `kots_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `kots_cancel_reason_id_foreign` FOREIGN KEY (`cancel_reason_id`) REFERENCES `kot_cancel_reasons` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `kots_kitchen_place_id_foreign` FOREIGN KEY (`kitchen_place_id`) REFERENCES `kot_places` (`id`) ON DELETE SET NULL,
  CONSTRAINT `kots_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `kots_order_type_id_foreign` FOREIGN KEY (`order_type_id`) REFERENCES `order_types` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kots`
INSERT INTO `kots` VALUES
('1', '3', NULL, '2', NULL, '1', NULL, 'TXN_68ce9d21bd2a93.28356548_231480', NULL, 'in_kitchen', NULL, NULL, '2025-09-20 12:25:05', '2025-09-20 12:25:36'),
('2', '5', NULL, '2', NULL, '3', NULL, 'TXN_68e52e1bed0eb4.43546266_272353', NULL, 'in_kitchen', NULL, NULL, '2025-10-07 15:13:31', '2025-10-07 15:40:27'),
('3', '5', NULL, '4', NULL, '3', NULL, 'TXN_68e530fc5934d8.69290630_182249', NULL, 'in_kitchen', NULL, NULL, '2025-10-07 15:25:48', '2025-10-07 15:40:27'),
('4', '5', NULL, '6', NULL, '4', NULL, 'TXN_68e62861d3eb76.37324333_776395', NULL, 'pending_confirmation', NULL, NULL, '2025-10-08 09:01:21', '2025-10-08 09:01:21'),
('5', '5', NULL, '8', NULL, '5', NULL, 'TXN_68e63e3e517e69.31196617_301189', NULL, 'pending_confirmation', NULL, NULL, '2025-10-08 10:34:38', '2025-10-08 10:34:38'),
('6', '5', '5', '9', NULL, '7', '13', NULL, NULL, 'pending_confirmation', NULL, NULL, '2025-10-15 12:33:28', '2025-10-15 12:33:28'),
('7', '5', NULL, '11', NULL, '8', NULL, 'KIOSK_TXN_68ef9521a16ec0.32691058', NULL, 'pending_confirmation', NULL, NULL, '2025-10-15 12:35:45', '2025-10-15 12:35:45'),
('8', '5', NULL, '13', NULL, '9', NULL, 'KIOSK_TXN_68ef95b8481505.85338088', NULL, 'pending_confirmation', NULL, NULL, '2025-10-15 12:38:16', '2025-10-15 12:38:16'),
('9', '5', '5', '14', '1', '10', '13', NULL, NULL, 'pending_confirmation', NULL, NULL, '2025-10-15 12:40:33', '2025-10-15 12:40:33');


-- Table structure for table `language_pack_settings`
DROP TABLE IF EXISTS `language_pack_settings`;
CREATE TABLE `language_pack_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `purchase_code` varchar(191) DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `license_type` varchar(20) DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `language_pack_settings`
INSERT INTO `language_pack_settings` VALUES
('1', '65100125-205d-420e-b03c-0faa1e6f02b9', '2026-04-16 03:07:13', NULL, NULL, '1', '2025-09-17 05:48:26', '2025-10-15 12:17:11');


-- Table structure for table `language_settings`
DROP TABLE IF EXISTS `language_settings`;
CREATE TABLE `language_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `language_code` varchar(191) NOT NULL,
  `language_name` varchar(191) NOT NULL,
  `flag_code` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `is_rtl` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `language_settings`
INSERT INTO `language_settings` VALUES
('1', 'en', 'English', 'gb', '1', '0', NULL, '2025-09-17 06:11:19'),
('2', 'ar', 'Arabic', 'sa', '0', '1', NULL, '2025-09-17 06:11:19'),
('3', 'de', 'German', 'de', '0', '0', NULL, '2025-09-17 06:11:19'),
('4', 'es', 'Spanish', 'es', '0', '0', NULL, '2025-09-17 06:11:19'),
('5', 'et', 'Estonian', 'et', '0', '0', NULL, '2025-09-17 06:11:19'),
('6', 'fa', 'Farsi', 'ir', '0', '1', NULL, '2025-09-17 06:11:19'),
('7', 'fr', 'French', 'fr', '1', '0', NULL, '2025-09-17 06:11:19'),
('8', 'el', 'Greek', 'gr', '0', '0', NULL, '2025-10-15 11:58:30'),
('9', 'it', 'Italian', 'it', '0', '0', NULL, '2025-09-17 06:11:19'),
('10', 'nl', 'Dutch', 'nl', '0', '0', NULL, '2025-09-17 06:11:19'),
('11', 'pl', 'Polish', 'pl', '0', '0', NULL, '2025-09-17 06:11:19'),
('12', 'pt', 'Portuguese', 'pt', '0', '0', NULL, '2025-09-17 06:11:19'),
('13', 'pt-br', 'Portuguese (Brazil)', 'br', '0', '0', NULL, '2025-09-17 06:11:19'),
('14', 'ro', 'Romanian', 'ro', '0', '0', NULL, '2025-09-17 06:11:19'),
('15', 'ru', 'Russian', 'ru', '0', '0', NULL, '2025-09-17 06:11:19'),
('16', 'tr', 'Turkish', 'tr', '0', '0', NULL, '2025-09-17 06:11:19'),
('17', 'zh-CN', 'Chinese (S)', 'cn', '0', '0', NULL, '2025-09-17 06:11:19'),
('18', 'zh-TW', 'Chinese (T)', 'cn', '0', '0', NULL, '2025-09-17 06:11:19');


-- Table structure for table `ltm_translations`
DROP TABLE IF EXISTS `ltm_translations`;
CREATE TABLE `ltm_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` int(11) NOT NULL DEFAULT 0,
  `locale` varchar(191) NOT NULL,
  `group` varchar(191) NOT NULL,
  `key` text NOT NULL,
  `value` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3027 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

-- Dumping data for table `ltm_translations`
INSERT INTO `ltm_translations` VALUES
('1', '1', 'eng', 'app', 'close', 'Close', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('2', '1', 'eng', 'app', 'cancel', 'Cancel', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('3', '1', 'eng', 'app', 'save', 'Save', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('4', '1', 'eng', 'app', 'saved', 'Saved', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('5', '1', 'eng', 'app', 'saving', 'Saving...', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('6', '1', 'eng', 'app', 'saveTax', 'Save Tax', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('7', '1', 'eng', 'app', 'saveAndNew', 'Save and Add New', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('8', '1', 'eng', 'app', 'view', 'View', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('9', '1', 'eng', 'app', 'verify', 'Verify', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('10', '1', 'eng', 'app', 'accept', 'Accept', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('11', '1', 'eng', 'app', 'decline', 'Decline', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('12', '1', 'eng', 'app', 'update', 'Update', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('13', '1', 'eng', 'app', 'updating', 'Updating...', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('14', '1', 'eng', 'app', 'delete', 'Delete', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('15', '1', 'eng', 'app', 'deleteUser', 'Delete User', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('16', '1', 'eng', 'app', 'action', 'Action', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('17', '1', 'eng', 'app', 'submit', 'Submit', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('18', '1', 'eng', 'app', 'pending', 'Pending', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('19', '1', 'eng', 'app', 'approved', 'Approved', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('20', '1', 'eng', 'app', 'rejected', 'Rejected', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('21', '1', 'eng', 'app', 'verified', 'Verified', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('22', '1', 'eng', 'app', 'showing', 'Showing', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('23', '1', 'eng', 'app', 'to', 'To', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('24', '1', 'eng', 'app', 'of', 'of', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('25', '1', 'eng', 'app', 'results', 'results', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('26', '1', 'eng', 'app', 'clearFilter', 'Clear Filters', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('27', '1', 'eng', 'app', 'hideFilter', 'Hide Filters', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('28', '1', 'eng', 'app', 'showFilter', 'Show Filters', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('29', '1', 'eng', 'app', 'active', 'Active', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('30', '1', 'eng', 'app', 'inactive', 'Inactive', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('31', '1', 'eng', 'app', 'status', 'Status', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('32', '1', 'eng', 'app', 'showAll', 'Show All', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('33', '1', 'eng', 'app', 'clear', 'Clear', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('34', '1', 'eng', 'app', 'error', 'Error', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('35', '1', 'eng', 'app', 'print', 'PRINT', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('36', '1', 'eng', 'app', 'dateTime', 'Date & Time', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('37', '1', 'eng', 'app', 'change', 'Change', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('38', '1', 'eng', 'app', 'changePassword', 'Change Password', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('39', '1', 'eng', 'app', 'add', 'Add', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('40', '1', 'eng', 'app', 'menu', 'Menu', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('41', '1', 'eng', 'app', 'createAccount', 'Create a Account', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('42', '1', 'eng', 'app', 'email', 'Enter your email', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('43', '1', 'eng', 'app', 'name', 'Name', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('44', '1', 'eng', 'app', 'description', 'Description', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('45', '1', 'eng', 'app', 'login', 'Login', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('46', '1', 'eng', 'app', 'continue', 'Continue', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('47', '1', 'eng', 'app', 'verificationCode', 'Enter verification code', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('48', '1', 'eng', 'app', 'next', 'Next', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('49', '1', 'eng', 'app', 'resendVerificatonCode', 'Resend Verificaton Code', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('50', '1', 'eng', 'app', 'logout', 'Logout', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('51', '1', 'eng', 'app', 'export', 'Export', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('52', '1', 'eng', 'app', 'logo', 'Logo', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('53', '1', 'eng', 'app', 'download', 'Download', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('54', '1', 'eng', 'app', 'dateRange', 'Date Range', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('55', '1', 'eng', 'app', 'select', 'Select', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('56', '1', 'eng', 'app', 'selectStartDate', 'Select Start Date', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('57', '1', 'eng', 'app', 'selectEndDate', 'Select End Date', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('58', '1', 'eng', 'app', 'customDateRange', 'Custom Date Range', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('59', '1', 'eng', 'app', 'today', 'Today', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('60', '1', 'eng', 'app', 'yesterday', 'Yesterday', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('61', '1', 'eng', 'app', 'currentWeek', 'Current Week', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('62', '1', 'eng', 'app', 'lastWeek', 'Last Week', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('63', '1', 'eng', 'app', 'nextWeek', 'Next Week', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('64', '1', 'eng', 'app', 'last7Days', 'Last 7 Days', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('65', '1', 'eng', 'app', 'currentMonth', 'Current Month', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('66', '1', 'eng', 'app', 'lastMonth', 'Last Month', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('67', '1', 'eng', 'app', 'currentYear', 'Current Year', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('68', '1', 'eng', 'app', 'lastYear', 'Last Year', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('69', '1', 'eng', 'app', 'date', 'Date', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('70', '1', 'eng', 'app', 'time', 'Time', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('71', '1', 'eng', 'app', 'rightReserved', 'All rights reserved.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('72', '1', 'eng', 'app', 'loading', 'Loading...', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('73', '1', 'eng', 'app', 'profileInfo', 'Profile Information', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('74', '1', 'eng', 'app', 'fullName', 'Your Full Name', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('75', '1', 'eng', 'app', 'role', 'Role', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('76', '1', 'eng', 'app', 'permission', 'Permission', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('77', '1', 'eng', 'app', 'user', 'User', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('78', '1', 'eng', 'app', 'minutes', 'Minutes', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('79', '1', 'eng', 'app', 'reserveNow', 'Reserve Now', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('80', '1', 'eng', 'app', 'specialRequest', 'Any special request?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('81', '1', 'eng', 'app', 'yes', 'Yes', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('82', '1', 'eng', 'app', 'no', 'No', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('83', '1', 'eng', 'app', 'hello', 'Hello', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('84', '1', 'eng', 'app', 'regards', 'Regards', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('85', '1', 'eng', 'app', 'thanks', 'Thanks', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('86', '1', 'eng', 'app', 'addMore', 'Add +', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('87', '1', 'eng', 'app', 'addNew', 'Add New', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('88', '1', 'eng', 'app', 'allRightsReserved', 'All Rights Reserved.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('89', '1', 'eng', 'app', 'test', 'TEST', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('90', '1', 'eng', 'app', 'live', 'LIVE', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('91', '1', 'eng', 'app', 'id', 'ID', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('92', '1', 'eng', 'app', 'reset', 'Reset', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('93', '1', 'eng', 'app', 'paidVia', 'Paid via', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('94', '1', 'eng', 'app', 'back', 'Back', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('95', '1', 'eng', 'app', 'generateCredentials', 'Generate Credentials', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('96', '1', 'eng', 'app', 'Monday', 'Monday', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('97', '1', 'eng', 'app', 'Tuesday', 'Tuesday', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('98', '1', 'eng', 'app', 'Wednesday', 'Wednesday', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('99', '1', 'eng', 'app', 'Thursday', 'Thursday', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('100', '1', 'eng', 'app', 'Friday', 'Friday', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('101', '1', 'eng', 'app', 'Saturday', 'Saturday', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('102', '1', 'eng', 'app', 'Sunday', 'Sunday', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('103', '1', 'eng', 'app', 'approx', 'Approx', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('104', '1', 'eng', 'app', 'visitLink', 'Visit Link', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('105', '1', 'eng', 'app', 'callWaiterConfirmation', 'Do you want to notify a waiter?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('106', '1', 'eng', 'app', 'callWaiterNotification', 'Waiter has been notified!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('107', '1', 'eng', 'app', 'callWaiter', 'Call Waiter', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('108', '1', 'eng', 'app', 'stopImpersonation', 'Stop Impersonation', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('109', '1', 'eng', 'app', 'impersonate', 'Impersonate', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('110', '1', 'eng', 'app', 'approvalStatus', 'Approval Status', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('111', '1', 'eng', 'app', 'approve', 'Approve', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('112', '1', 'eng', 'app', 'reject', 'Reject', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('113', '1', 'eng', 'app', 'example', 'Example', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('114', '1', 'eng', 'app', 'fileNotUploaded', 'File not uploaded', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('115', '1', 'eng', 'app', 'moduleVersion', 'Version', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('116', '1', 'eng', 'app', 'moduleUpdateMessage', 'New update available for :name module. Please update to version :version', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('117', '1', 'eng', 'app', 'newModuleUpdateMessage', 'New update available for <strong>:name</strong> module.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('118', '1', 'eng', 'app', 'purchaseCode', 'Purchase Code', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('119', '1', 'eng', 'app', 'moduleSwitchMessage', 'Activate or deactivate :name module', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('120', '1', 'eng', 'app', 'updateModule', 'Update Module', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('121', '1', 'eng', 'app', 'notify', 'Notify', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('122', '1', 'eng', 'app', 'moduleNotifySwitchMessage', 'This will hide/show new update message on dashboard for :name module', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('123', '1', 'eng', 'app', 'verifyEnvato', 'Verify Purchase Code', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('124', '1', 'eng', 'app', 'findPurchaseCode', 'Click this link to find your purchase code.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('125', '1', 'eng', 'app', 'moduleSettingsInstall', 'Install/Update Module', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('126', '1', 'eng', 'app', 'dropFileToUpload', 'Drop file to upload', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('127', '1', 'eng', 'app', 'uploadDate', 'Upload Date', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('128', '1', 'eng', 'app', 'rememberMe', 'Remember me', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('129', '1', 'eng', 'app', 'forgotPassword', 'Forgot your password?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('130', '1', 'eng', 'app', 'password', 'Password', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('131', '1', 'eng', 'app', 'forgotPasswordMessage', 'Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('132', '1', 'eng', 'app', 'sendPasswordResetLink', 'Send Password Reset Link', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('133', '1', 'eng', 'app', 'enable', 'Enable', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('134', '1', 'eng', 'app', 'professional', 'Professional', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('135', '1', 'eng', 'app', 'pastel', 'Pastel', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('136', '1', 'eng', 'app', 'warm', 'Warm', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('137', '1', 'eng', 'app', 'backToLogin', 'Back to Login', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('138', '1', 'eng', 'app', 'uploadFavIconAndroidhCrome192', 'Upload Favicon for Android Chrome (192x192)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('139', '1', 'eng', 'app', 'uploadFavIconAndroidhCrome512', 'Upload Favicon for Android Chrome (512x512)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('140', '1', 'eng', 'app', 'uploadFavIconAppleTouchIcon', 'Upload Favicon for Apple Touch Icon', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('141', '1', 'eng', 'app', 'uploadFavicon16', 'Upload Favicon (16x16)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('142', '1', 'eng', 'app', 'uploadFavicon32', 'Upload Favicon (32x32)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('143', '1', 'eng', 'app', 'favicon', 'Upload Favicon', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('144', '1', 'eng', 'app', 'addon', 'Addon', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('145', '1', 'eng', 'app', 'list', 'List', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('146', '1', 'eng', 'app', 'grid', 'Grid', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('147', '1', 'eng', 'app', 'layout', 'Layout', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('148', '1', 'eng', 'app', 'offlineMessage', 'You are currently offline.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('149', '1', 'eng', 'app', 'loadPage', 'We couldn\'t load the next page on this connection. Please try again.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('150', '1', 'eng', 'app', 'RetryConnection', 'Retry Connection', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('151', '1', 'eng', 'app', 'import', 'Import', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('152', '1', 'eng', 'app', 'downloadSample', 'Download Sample File', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('153', '1', 'eng', 'app', 'noResults', 'No results found', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('154', '1', 'eng', 'app', 'optional', 'Optional', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('155', '1', 'eng', 'app', 'other', 'Other', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('156', '1', 'eng', 'app', 'disable', 'Disable', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('157', '1', 'eng', 'app', 'selectLanguage', 'Select Language', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('158', '1', 'eng', 'app', 'upload', 'Upload', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('159', '1', 'eng', 'app', 'selectIcon', 'Select Icon', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('160', '1', 'eng', 'app', 'searchIcon', 'Search Icon', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('161', '1', 'eng', 'app', 'impersonateTooltip', 'Impersonate to this restaurant - Login as the restaurant owner to view and manage their account. This allows administrators to troubleshoot issues, provide support, and make changes on behalf of the restaurant without requiring their credentials.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('162', '1', 'eng', 'app', 'autoRefresh', 'Auto Refresh', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('163', '1', 'eng', 'app', 'seconds', 'Seconds', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('164', '1', 'eng', 'app', 'minute', 'Minute', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('165', '1', 'eng', 'app', 'uploadedNow', 'Uploaded Now', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('166', '1', 'eng', 'app', 'uploadedAgo', 'Uploaded :time', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('167', '1', 'eng', 'app', 'clickToInstall', 'Click to Install', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('168', '1', 'eng', 'app', 'removeFile', 'Remove File', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('169', '1', 'eng', 'app', 'search', 'Search', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('170', '1', 'eng', 'app', 'header', 'Header', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('171', '1', 'eng', 'app', 'footer', 'Footer', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('172', '1', 'eng', 'app', 'position', 'Position', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('173', '1', 'eng', 'app', 'noDescription', 'No description available', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('174', '1', 'eng', 'app', 'noRecordsFound', 'No records found', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('175', '1', 'eng', 'app', 'edit', 'Edit', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('176', '1', 'eng', 'app', 'activate', 'Activate', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('177', '1', 'eng', 'app', 'deactivate', 'Deactivate', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('178', '1', 'eng', 'app', 'reportByWaiter', 'Report By Waiter', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('179', '1', 'eng', 'app', 'realTime', 'Real Time Update', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('180', '1', 'eng', 'app', 'printer', 'Printer', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('181', '1', 'eng', 'app', 'createdAt', 'Created At', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('182', '1', 'eng', 'app', 'printedAt', 'Printed At', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('183', '1', 'eng', 'app', 'actions', 'Actions', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('184', '1', 'eng', 'app', 'viewDetails', 'View Details', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('185', '1', 'eng', 'app', 'searchPrintJobs', 'Search print jobs...', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('186', '1', 'eng', 'app', 'allStatuses', 'All Statuses', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('187', '1', 'eng', 'app', 'printing', 'Printing', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('188', '1', 'eng', 'app', 'done', 'Done', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('189', '1', 'eng', 'app', 'failed', 'Failed', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('190', '1', 'eng', 'app', 'allPrinters', 'All Printers', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('191', '1', 'eng', 'app', 'noPrintJobsFound', 'No print jobs found', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('192', '1', 'eng', 'app', 'serialNumber', 'Serial Number', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('193', '1', 'eng', 'app', 'create', 'Create', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('194', '1', 'eng', 'app', 'enter', 'Enter', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('195', '1', 'eng', 'app', 'displayName', 'Display Name', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('196', '1', 'eng', 'app', 'existingRole', 'existing role', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('197', '1', 'eng', 'app', 'copyFrom', 'Copy from', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('198', '1', 'eng', 'app', 'dontCopyPermissions', 'Don\'t copy permissions', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('199', '1', 'eng', 'app', 'responsePrinter', 'Response Printer', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('200', '1', 'eng', 'app', 'manage', 'Manage', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('201', '1', 'eng', 'app', 'warning', 'Warning', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('202', '1', 'eng', 'app', 'roleDeleteWarning', 'Are you sure you want to delete this role? All users with this role will be reassigned to the selected role.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('203', '1', 'eng', 'app', 'selectNewRoleForUsers', 'Please select which role you want to assign to users who currently have this role.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('204', '1', 'eng', 'app', 'reassignUsersTo', 'Reassign users to', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('205', '1', 'eng', 'app', 'selectRole', 'Select Role', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('206', '1', 'eng', 'app', 'protectedRole', 'Protected Role', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('207', '1', 'eng', 'app', 'required', 'Required', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('208', '1', 'eng', 'app', 'from', 'from', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('209', '1', 'eng', 'app', 'or', 'or', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('210', '1', 'eng', 'app', 'files', 'files', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('211', '1', 'eng', 'app', 'autoCreated', 'auto-created', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('212', '1', 'eng', 'app', 'if', 'if', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('213', '1', 'eng', 'app', 'missing', 'missing', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('214', '1', 'eng', 'app', 'needTemplate', 'Need a template', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('215', '1', 'eng', 'app', 'downloadSampleCsv', 'Download our sample CSV file with example data and proper formatting.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('216', '1', 'eng', 'app', 'overallProgress', 'Overall Progress', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('217', '1', 'eng', 'app', 'currentStage', 'Current Stage', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('218', '1', 'eng', 'app', 'importSuccessful', 'Your menu items have been imported successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('219', '1', 'eng', 'app', 'skipped', 'Skipped', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('220', '1', 'eng', 'app', 'importError', 'There was an error processing your file.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('221', '1', 'eng', 'app', 'errorDetails', 'Error Details', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('222', '1', 'eng', 'app', 'mustBe', 'must be', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('223', '1', 'eng', 'app', 'file', 'file', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('224', '1', 'eng', 'app', 'size', 'size', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('225', '1', 'eng', 'app', 'mustNotExceed', 'must not exceed', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('226', '1', 'eng', 'app', 'fileSelected', 'File Selected', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('227', '1', 'eng', 'app', 'selectFile', 'Select File', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('228', '1', 'eng', 'app', 'completeAllSteps', 'Complete all steps', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('229', '1', 'eng', 'app', 'complete', 'Complete', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('230', '1', 'eng', 'app', 'ignore', 'Ignore', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('231', '1', 'eng', 'app', 'rows', 'rows', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('232', '1', 'eng', 'app', 'shown', 'shown', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('233', '1', 'eng', 'app', 'added', 'added', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('234', '1', 'eng', 'app', 'pleaseCompleteAllSteps', 'Please complete all steps before proceeding.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('235', '1', 'eng', 'app', 'errorParsingFile', 'Error parsing file', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('236', '1', 'eng', 'app', 'invalidStage', 'Invalid stage for this action.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('237', '1', 'eng', 'app', 'requiredFieldNotMapped', 'Required field not mapped', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('238', '1', 'eng', 'app', 'open', 'Open', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('239', '1', 'eng', 'app', 'closed', 'Closed', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('240', '1', 'eng', 'app', 'pending_approval', 'Pending Approval', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('241', '1', 'eng', 'app', 'cash_in', 'Cash In', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('242', '1', 'eng', 'app', 'cash_out', 'Cash Out', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('243', '1', 'eng', 'app', 'safe_drop', 'Safe Drop', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('244', '1', 'eng', 'app', 'cash_sale', 'Cash Sale', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('245', '1', 'eng', 'app', 'change_given', 'Change Given', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('246', '1', 'eng', 'app', 'refund', 'Refund', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('247', '1', 'eng', 'app', 'via_pos', 'POS', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('248', '1', 'eng', 'app', 'via_shop', 'Shop', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('249', '1', 'eng', 'app', 'via_kiosk', 'Kiosk', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('250', '1', 'eng', 'auth', 'failed', 'These credentials do not match our records.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('251', '1', 'eng', 'auth', 'password', 'The provided password is incorrect.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('252', '1', 'eng', 'auth', 'throttle', 'Too many login attempts. Please try again in :seconds seconds.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('253', '1', 'eng', 'auth', 'areYouNew', 'Are you new here?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('254', '1', 'eng', 'auth', 'createAccount', 'Create an account', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('255', '1', 'eng', 'auth', 'createAccountSignup', 'Create your :appName account', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('256', '1', 'eng', 'auth', 'goHome', 'Go To Home', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('257', '1', 'eng', 'auth', 'alreadyRegisteredLoginHere', 'Already registered? Login here', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('258', '1', 'eng', 'auth', 'signup', 'Signup', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('259', '1', 'eng', 'auth', 'whoops', 'Whoops! Something went wrong.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('260', '1', 'eng', 'auth', 'resendOtp', 'Resend OTP', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('261', '1', 'eng', 'auth', 'backToLogin', 'Back to Login', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('262', '1', 'eng', 'auth', 'loginViaOneTimePassword', 'Login via One Time Password', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('263', '1', 'eng', 'auth', 'sendOtp', 'Send OTP', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('264', '1', 'eng', 'auth', 'weveSentA6DigitCodeTo', 'We\'ve sent a 6-digit code to', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('265', '1', 'eng', 'auth', 'enter6DigitCode', 'Enter 6-digit code', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('266', '1', 'eng', 'auth', 'thisCodeWillExpireIn', 'This code will expire in', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('267', '1', 'eng', 'auth', 'minutes', 'minutes', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('268', '1', 'eng', 'auth', 'ifYouDidNotRequestThisLoginCode', 'If you did not request this login code, please ignore this email and ensure your account is secure.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('269', '1', 'eng', 'auth', 'bestRegards', 'Thank you', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('270', '1', 'eng', 'auth', 'verifyOtp', 'Verify OTP', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('271', '1', 'eng', 'auth', 'loginVerificationCode', 'Login Verification Code', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('272', '1', 'eng', 'auth', 'youHaveRequestedToLogin', 'You have requested to login to your account. Please use the following verification code:', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('273', '1', 'eng', 'auth', 'team', 'Team', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('274', '1', 'eng', 'auth', 'newOtpSentSuccessfully', 'New OTP sent successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('275', '1', 'eng', 'auth', 'failedToResendOtp', 'Failed to resend OTP. Please try again.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('276', '1', 'eng', 'auth', 'sending', 'Resend OTP successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('277', '1', 'eng', 'email', 'reservation.reservationConfirmation', 'Reservation Confirmation ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('278', '1', 'eng', 'email', 'reservation.subject', 'New Reservation Received: ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('279', '1', 'eng', 'email', 'reservation.text1', 'A new reservation has been made.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('280', '1', 'eng', 'email', 'reservation.text2', 'Reservation Details:', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('281', '1', 'eng', 'email', 'reservation.text3', 'Please prepare accordingly.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('282', '1', 'eng', 'email', 'reservation.text4', 'Your reservation has been submitted successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('283', '1', 'eng', 'email', 'reservation.action', 'View Reservation', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('284', '1', 'eng', 'email', 'newOrder.subject', 'New Order Received', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('285', '1', 'eng', 'email', 'newOrder.text1', 'A new order has been placed. ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('286', '1', 'eng', 'email', 'newOrder.text2', 'Order Details:', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('287', '1', 'eng', 'email', 'newOrder.text3', 'Order Items: ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('288', '1', 'eng', 'email', 'newOrder.action', 'View Order', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('289', '1', 'eng', 'email', 'newOrder.text4', 'Please prepare the order accordingly.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('290', '1', 'eng', 'email', 'sendOrderBill.subject', 'We Appreciate Your Order! Receipt #:order_number from :site_name', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('291', '1', 'eng', 'email', 'sendOrderBill.order', 'Order', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('292', '1', 'eng', 'email', 'sendOrderBill.dear', 'Dear', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('293', '1', 'eng', 'email', 'sendOrderBill.thankYouForDining', 'Thank you for dining with us at', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('294', '1', 'eng', 'email', 'sendOrderBill.excitedToServe', 'It was our pleasure to serve you!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('295', '1', 'eng', 'email', 'sendOrderBill.orderSummary', 'Order Summary:', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('296', '1', 'eng', 'email', 'sendOrderBill.itemName', 'Item Name', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('297', '1', 'eng', 'email', 'sendOrderBill.quantity', 'Quantity', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('298', '1', 'eng', 'email', 'sendOrderBill.price', 'Price', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('299', '1', 'eng', 'email', 'sendOrderBill.subtotal', 'Subtotal', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('300', '1', 'eng', 'email', 'sendOrderBill.total', 'Total', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('301', '1', 'eng', 'email', 'sendOrderBill.satisfactionMessage', 'We hope you enjoy your meal! If you have any questions or feedback, please do not hesitate to contact us.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('302', '1', 'eng', 'email', 'sendOrderBill.status', 'Status', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('303', '1', 'eng', 'email', 'sendOrderBill.branch', 'Branch', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('304', '1', 'eng', 'email', 'sendOrderBill.orderType', 'Order Type', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('305', '1', 'eng', 'email', 'sendOrderBill.downloadReceipt', 'Download Receipt PDF', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('306', '1', 'eng', 'email', 'staffWelcome.subject', 'Welcome to ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('307', '1', 'eng', 'email', 'staffWelcome.text1', 'Your account is ready to go.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('308', '1', 'eng', 'email', 'staffWelcome.text2', 'Login Email: ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('309', '1', 'eng', 'email', 'staffWelcome.text3', 'Password: ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('310', '1', 'eng', 'email', 'staffWelcome.action', 'Click Here To Login', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('311', '1', 'eng', 'email', 'emailVerification.subject', 'Email Verification Code', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('312', '1', 'eng', 'email', 'emailVerification.text1', 'Your email verification code is: ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('313', '1', 'eng', 'email', 'trialLicenseExpPre.subject', 'License Expiration Notice', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('314', '1', 'eng', 'email', 'trialLicenseExpPre.greeting', 'Hello :name!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('315', '1', 'eng', 'email', 'trialLicenseExpPre.line1', 'Your trial license is about to expire on **:date**.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('316', '1', 'eng', 'email', 'trialLicenseExpPre.line2', 'Please take the necessary actions to renew it.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('317', '1', 'eng', 'email', 'trialLicenseExpPre.action', 'Go to Dashboard', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('318', '1', 'eng', 'email', 'trialLicenseExpPre.line3', 'Thank you for using our application!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('319', '1', 'eng', 'email', 'trialLicenseExp.subject', 'Your Trial License Has Expired', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('320', '1', 'eng', 'email', 'trialLicenseExp.greeting', 'Hello :name!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('321', '1', 'eng', 'email', 'trialLicenseExp.line1', 'We wanted to let you know that your trial license has expired.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('322', '1', 'eng', 'email', 'trialLicenseExp.line2', 'Restaurant Name: :restaurant_name', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('323', '1', 'eng', 'email', 'trialLicenseExp.action', 'Go to Dashboard', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('324', '1', 'eng', 'email', 'subscriptionExpire.subject', 'Subscription Expiration Notice', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('325', '1', 'eng', 'email', 'subscriptionExpire.greeting', 'Hello :name!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('326', '1', 'eng', 'email', 'subscriptionExpire.line1', 'We are writing to inform you that your subscription for :restaurant_name has expired.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('327', '1', 'eng', 'email', 'subscriptionExpire.line2', 'The subscription expired on :date.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('328', '1', 'eng', 'email', 'subscriptionExpire.action', 'Renew Subscription', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('329', '1', 'eng', 'email', 'subscriptionExpire.line3', 'Thank you for using our application!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('330', '1', 'eng', 'email', 'restaurantUpdatedPlan.subject', 'Restaurant Plan Updated Successfully', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('331', '1', 'eng', 'email', 'restaurantUpdatedPlan.greeting', 'Hello :name!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('332', '1', 'eng', 'email', 'restaurantUpdatedPlan.line1', 'A restaurant plan has been successfully updated.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('333', '1', 'eng', 'email', 'restaurantUpdatedPlan.line2', 'Here are the updated plan details:', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('334', '1', 'eng', 'email', 'restaurantUpdatedPlan.action', 'View Dashboard', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('335', '1', 'eng', 'email', 'restaurantUpdatedPlan.line4', 'Thank you for using our service!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('336', '1', 'eng', 'email', 'offlineRequestReview.subject', 'Request for Modification of Package - :site_name', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('337', '1', 'eng', 'email', 'offlineRequestReview.greeting', 'Hello, :name!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('338', '1', 'eng', 'email', 'offlineRequestReview.line1', 'A request for an offline payment to change the package has been made.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('339', '1', 'eng', 'email', 'offlineRequestReview.line2', 'Restaurant name: **:restaurant_name**', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('340', '1', 'eng', 'email', 'offlineRequestReview.line3', 'Package name: **:package_name**', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('341', '1', 'eng', 'email', 'offlineRequestReview.line4', 'Package type: **:package_type**', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('342', '1', 'eng', 'email', 'offlineRequestReview.line5', 'Please review the request and take the necessary action.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('343', '1', 'eng', 'email', 'offlineRequestReview.line6', 'Thank you for using our application!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('344', '1', 'eng', 'email', 'welcomeRestaurant.subject', 'Welcome to :site_name! Let\'s Start Simplifying Your Restaurant Operations! 🍽️', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('345', '1', 'eng', 'email', 'welcomeRestaurant.greeting', 'Hello, :name!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('346', '1', 'eng', 'email', 'welcomeRestaurant.line1', 'Congratulations and welcome to :site_name! We\'re thrilled to have your restaurant join our platform.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('347', '1', 'eng', 'email', 'welcomeRestaurant.line2', 'What\'s next?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('348', '1', 'eng', 'email', 'welcomeRestaurant.line3', 'Set Up Your Menu: Add your menu items, categories, and pricing with ease', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('349', '1', 'eng', 'email', 'welcomeRestaurant.line4', 'Create Your Profile: Share your restaurant\'s story, mission, and unique offerings', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('350', '1', 'eng', 'email', 'welcomeRestaurant.line5', 'Connect with Customers: Use our social media integration to boost your online presence', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('351', '1', 'eng', 'email', 'welcomeRestaurant.line6', 'Get Started Now: Start using :site_name today to streamline your operations and grow your business!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('352', '1', 'eng', 'email', 'welcomeRestaurant.line7', 'Thank you for choosing :site_name! We\'re excited to be part of your success story.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('353', '1', 'eng', 'email', 'welcomeRestaurant.line8', 'Your login email is: :email', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('354', '1', 'eng', 'email', 'welcomeRestaurant.line9', 'Your password is: :password', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('355', '1', 'eng', 'email', 'welcomeRestaurant.line10', 'Your login URL is: :login_url', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('356', '1', 'eng', 'email', 'newRestaurantSignup.subject', 'New Restaurant Signup on :site_name! 🎉', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('357', '1', 'eng', 'email', 'newRestaurantSignup.line1', 'We\'re excited to inform you that a new restaurant has just signed up for :site_name! 🎉', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('358', '1', 'eng', 'email', 'newRestaurantSignup.line2', 'Restaurant Name: :restaurant_name', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('359', '1', 'eng', 'email', 'testNotification.subject', 'SMTP Test Email', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('360', '1', 'eng', 'email', 'testNotification.greeting', 'Hello!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('361', '1', 'eng', 'email', 'testNotification.line1', 'This is a test email to verify your SMTP settings.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('362', '1', 'eng', 'email', 'testNotification.line2', 'If you received this email, your SMTP settings are configured correctly.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('363', '1', 'eng', 'email', 'testNotification.line3', 'Thank you for using our application!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('364', '1', 'eng', 'errors', '325.title', 'Restaurant Not Found', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('365', '1', 'eng', 'errors', '325.message', 'We couldn\'t find a restaurant associated with this URL. The restaurant may have been removed or the URL might be incorrect.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('366', '1', 'eng', 'errors', '325.suggestion', 'Please check the URL and try again, or use one of the options below to find what you\'re looking for.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('367', '1', 'eng', 'errors', '325.create_account', 'Create New Restaurant Account', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('368', '1', 'eng', 'errors', '325.find_url', 'Find Your Restaurant URL', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('369', '1', 'eng', 'errors', '325.need_help', 'Need help? Contact our support team', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('370', '1', 'eng', 'landing', 'getStarted', 'Get Started', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('371', '1', 'eng', 'landing', 'features', 'Features', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('372', '1', 'eng', 'landing', 'pricing', 'Pricing', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('373', '1', 'eng', 'landing', 'faq', 'FAQs', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('374', '1', 'eng', 'landing', 'heroTitle', 'Restaurant POS software made simple!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('375', '1', 'eng', 'landing', 'heroSubTitle', 'Easily manage orders, menus, and tables in one place. Save time, reduce errors, and grow your business faster', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('376', '1', 'eng', 'landing', 'getStartedFree', 'Get Started for Free', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('377', '1', 'eng', 'landing', 'featureSection1', 'Take Control of Your Restaurant', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('378', '1', 'eng', 'landing', 'featureTitle1', 'Streamline Order Management', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('379', '1', 'eng', 'landing', 'featureDescription1', 'Never lose track of an order again. All your customer orders—from dine-in to takeout—are organized and easily accessible in one place. Speed up service and keep your kitchen running smoothly.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('380', '1', 'eng', 'landing', 'featureTitle2', 'Optimize Table Reservations', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('381', '1', 'eng', 'landing', 'featureDescription2', 'Maximize seating efficiency with real-time table tracking and reservations. Reduce wait times and ensure no table sits empty during peak hours, improving customer experience and turnover.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('382', '1', 'eng', 'landing', 'featureTitle3', 'Effortless Menu Management', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('383', '1', 'eng', 'landing', 'featureDescription3', 'Easily add, edit, or remove items from your menu on the go. Highlight specials, update prices, and keep everything in sync across all platforms, so your staff and customers always see the latest offerings.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('384', '1', 'eng', 'landing', 'featureSection2', 'Powerful Features Built to Elevate Your Restaurant Operations', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('385', '1', 'eng', 'landing', 'iconFeature1', 'QR Code Menu', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('386', '1', 'eng', 'landing', 'iconFeatureDesc1', 'Contactless Ordering Made Easy', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('387', '1', 'eng', 'landing', 'iconFeature2', 'Payment Gateway Integration', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('388', '1', 'eng', 'landing', 'iconFeatureDesc2', 'Fast, Secure, and Flexible Payments using Stripe and Razorpay', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('389', '1', 'eng', 'landing', 'iconFeature3', 'Staff Management', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('390', '1', 'eng', 'landing', 'iconFeatureDesc3', 'Separate login for every staff role with different permissions.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('391', '1', 'eng', 'landing', 'iconFeature4', 'POS (Point of Sale)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('392', '1', 'eng', 'landing', 'iconFeatureDesc4', 'Complete POS Integration', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('393', '1', 'eng', 'landing', 'iconFeature5', 'Custom Floor Plans', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('394', '1', 'eng', 'landing', 'iconFeatureDesc5', 'Design Your Restaurant\'s Layout', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('395', '1', 'eng', 'landing', 'iconFeature6', 'Kitchen Order Tickets (KOT)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('396', '1', 'eng', 'landing', 'iconFeatureDesc6', 'Efficient Kitchen Workflow', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('397', '1', 'eng', 'landing', 'iconFeature7', 'Bill Printing', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('398', '1', 'eng', 'landing', 'iconFeatureDesc7', 'Quick and Accurate Billing', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('399', '1', 'eng', 'landing', 'iconFeature8', 'Reports', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('400', '1', 'eng', 'landing', 'iconFeatureDesc8', 'Data-Driven Decisions', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('401', '1', 'eng', 'landing', 'testimonialSection1', 'What Restaurant Owners Are Saying', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('402', '1', 'eng', 'landing', 'testimonial1', 'It has completely transformed how we operate. Managing orders, tables, and staff all from one platform has reduced our workload and made everything run more smoothly.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('403', '1', 'eng', 'landing', 'testimonialName1', 'John Martin', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('404', '1', 'eng', 'landing', 'testimonialDesignation1', 'Owner of Riverbend Bistro', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('405', '1', 'eng', 'landing', 'testimonial2', 'The QR Code menu and payment integration have made a huge difference for us, especially after the pandemic. Customers love the ease, and we’ve seen faster table turnover.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('406', '1', 'eng', 'landing', 'testimonialName2', 'Emily Thompson', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('407', '1', 'eng', 'landing', 'testimonialDesignation2', 'Manager at Lakeside Grill', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('408', '1', 'eng', 'landing', 'testimonial3', 'We\'re able to track every order in real time, keep our menu updated, and quickly manage payments. It\'s like having an extra set of hands in the restaurant.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('409', '1', 'eng', 'landing', 'testimonialName3', 'Michael Scott', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('410', '1', 'eng', 'landing', 'testimonialDesignation3', 'Owner of Downtown Eats', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('411', '1', 'eng', 'landing', 'pricingTitle1', 'Simple, Transparent Pricing', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('412', '1', 'eng', 'landing', 'pricingSubTitle1', 'Get everything you need to manage your restaurant with one affordable plan.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('413', '1', 'eng', 'landing', 'pricingHeading', 'All-in-One Plan', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('414', '1', 'eng', 'landing', 'pricingFeature1', 'Unlimited Orders & Reservations', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('415', '1', 'eng', 'landing', 'pricingFeature2', 'Menu Management', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('416', '1', 'eng', 'landing', 'pricingFeature3', 'QR Code Menu', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('417', '1', 'eng', 'landing', 'pricingFeature4', 'Payment Gateway Integration', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('418', '1', 'eng', 'landing', 'pricingFeature5', 'POS System', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('419', '1', 'eng', 'landing', 'pricingFeature6', 'Custom Floor Plans', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('420', '1', 'eng', 'landing', 'pricingFeature7', 'Staff Management', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('421', '1', 'eng', 'landing', 'pricingFeature8', 'Kitchen Order Tickets (KOT)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('422', '1', 'eng', 'landing', 'pricingFeature9', 'Reports & Analytics', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('423', '1', 'eng', 'landing', 'pricingFeature10', 'Customer Support', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('424', '1', 'eng', 'landing', 'pricingFeature11', 'Multiple Branches', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('425', '1', 'eng', 'landing', 'pricingFeature12', 'Export to Excel', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('426', '1', 'eng', 'landing', 'pricingFeature13', 'Add Business Logo & Theme', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('427', '1', 'eng', 'landing', 'pricingFeature14', 'Table Reservations', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('428', '1', 'eng', 'landing', 'pricingFeature15', 'Payment Gateway Integration', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('429', '1', 'eng', 'landing', 'faqTitle1', 'Your questions, answered', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('430', '1', 'eng', 'landing', 'faqSubTitle1', 'Answers to the most frequently asked questions.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('431', '1', 'eng', 'landing', 'faqQues1', 'How can I contact customer support 1?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('432', '1', 'eng', 'landing', 'faqAns1', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('433', '1', 'eng', 'landing', 'faqQues2', 'How can I contact customer support?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('434', '1', 'eng', 'landing', 'faqAns2', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('435', '1', 'eng', 'landing', 'faqQues3', 'How can I contact customer support?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('436', '1', 'eng', 'landing', 'faqAns3', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('437', '1', 'eng', 'landing', 'faqQues4', 'How can I contact customer support?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('438', '1', 'eng', 'landing', 'faqAns4', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('439', '1', 'eng', 'landing', 'faqQues5', 'How can I contact customer support?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('440', '1', 'eng', 'landing', 'faqAns5', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('441', '1', 'eng', 'landing', 'faqQues6', 'How can I contact customer support?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('442', '1', 'eng', 'landing', 'faqAns6', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('443', '1', 'eng', 'landing', 'contactTitle', 'Contact', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('444', '1', 'eng', 'landing', 'addressTitle', 'Our address', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('445', '1', 'eng', 'landing', 'contactCompany', 'Bond Hobbs Inc', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('446', '1', 'eng', 'landing', 'contactAddress', '957 Jamie Station, Lamontborough, SD 27319-9459', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('447', '1', 'eng', 'landing', 'emailTitle', 'Our Email', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('448', '1', 'eng', 'landing', 'contactEmail', 'support@example.com', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('449', '1', 'eng', 'landing', 'rightsReserved', 'All Rights Reserved.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('450', '1', 'eng', 'landing', 'startTrial', 'Start :days Days Trial', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('451', '1', 'eng', 'landing', 'callTitle', 'Call Us', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('452', '1', 'eng', 'menu', 'dashboard', 'Dashboard', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('453', '1', 'eng', 'menu', 'menu', 'Menu', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('454', '1', 'eng', 'menu', 'menus', 'Menus', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('455', '1', 'eng', 'menu', 'menuItem', 'Menu Items', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('456', '1', 'eng', 'menu', 'profile', 'Profile', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('457', '1', 'eng', 'menu', 'itemCategories', 'Item Categories', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('458', '1', 'eng', 'menu', 'table', 'Table', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('459', '1', 'eng', 'menu', 'areas', 'Areas', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('460', '1', 'eng', 'menu', 'tables', 'Tables', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('461', '1', 'eng', 'menu', 'orders', 'Orders', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('462', '1', 'eng', 'menu', 'pos', 'POS', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('463', '1', 'eng', 'menu', 'kot', 'KOT', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('464', '1', 'eng', 'menu', 'myAccount', 'My Account', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('465', '1', 'eng', 'menu', 'myOrders', 'My Orders', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('466', '1', 'eng', 'menu', 'customers', 'Customers', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('467', '1', 'eng', 'menu', 'newOrder', 'New Order', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('468', '1', 'eng', 'menu', 'payments', 'Payments', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('469', '1', 'eng', 'menu', 'billing', 'Billing', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('470', '1', 'eng', 'menu', 'duePayments', 'Due Payments', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('471', '1', 'eng', 'menu', 'qrCodes', 'QR Codes', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('472', '1', 'eng', 'menu', 'reports', 'Reports', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('473', '1', 'eng', 'menu', 'itemReport', 'Item Report', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('474', '1', 'eng', 'menu', 'categoryReport', 'Category Report', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('475', '1', 'eng', 'menu', 'salesReport', 'Sales Report', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('476', '1', 'eng', 'menu', 'settings', 'Settings', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('477', '1', 'eng', 'menu', 'signOut', 'Sign Out', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('478', '1', 'eng', 'menu', 'appUpdate', 'App Update', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('479', '1', 'eng', 'menu', 'home', 'Home', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('480', '1', 'eng', 'menu', 'about', 'About', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('481', '1', 'eng', 'menu', 'contact', 'Contact', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('482', '1', 'eng', 'menu', 'staff', 'Staff', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('483', '1', 'eng', 'menu', 'bookTable', 'Book a Table', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('484', '1', 'eng', 'menu', 'myBookings', 'My Bookings', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('485', '1', 'eng', 'menu', 'reservations', 'Reservations', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('486', '1', 'eng', 'menu', 'customerSite', 'Customer Site', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('487', '1', 'eng', 'menu', 'packages', 'Packages', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('488', '1', 'eng', 'menu', 'offlineRequest', 'Offline Request', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('489', '1', 'eng', 'menu', 'users', 'Users', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('490', '1', 'eng', 'menu', 'deliveryExecutive', 'Delivery Executive', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('491', '1', 'eng', 'menu', 'landingSites', 'Landing Site', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('492', '1', 'eng', 'menu', 'waiterRequest', 'Waiter Requests', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('493', '1', 'eng', 'menu', 'itemModifiers', 'Item Modifiers', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('494', '1', 'eng', 'menu', 'modifierGroups', 'Modifier Groups', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('495', '1', 'eng', 'menu', 'goBackToCustomModules', 'Go Back to Custom Modules', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('496', '1', 'eng', 'menu', 'expenses', 'Expenses', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('497', '1', 'eng', 'menu', 'vendor', 'Vendor', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('498', '1', 'eng', 'menu', 'expenseReports', 'Expense Reports', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('499', '1', 'eng', 'menu', 'expensesCategory', 'Expense Categories', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('500', '1', 'eng', 'menu', 'openMainMenu', 'Open Main Menu', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('501', '1', 'eng', 'menu', 'myAddresses', 'My Addresses', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('502', '1', 'eng', 'menu', 'superadminPaymentSetting', 'Payment Settings', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('503', '1', 'eng', 'menu', 'adminPaymentSetting', 'Restaurant Payment Settings', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('504', '1', 'eng', 'menu', 'customerDisplay', 'Customer Display', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('505', '1', 'eng', 'messages', 'menuAdded', 'Menu added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('506', '1', 'eng', 'messages', 'noMenuAdded', 'No menu added!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('507', '1', 'eng', 'messages', 'menuUpdated', 'Menu updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('508', '1', 'eng', 'messages', 'menuDeleted', 'Menu deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('509', '1', 'eng', 'messages', 'categoryAdded', 'Item category added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('510', '1', 'eng', 'messages', 'categoryUpdated', 'Item category updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('511', '1', 'eng', 'messages', 'menuItemAdded', 'Menu item added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('512', '1', 'eng', 'messages', 'menuItemUpdated', 'Menu item updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('513', '1', 'eng', 'messages', 'menuItemDeleted', 'Menu item deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('514', '1', 'eng', 'messages', 'orderItemDeleted', 'Order item deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('515', '1', 'eng', 'messages', 'menuItemCategoryDeleted', 'Menu item category deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('516', '1', 'eng', 'messages', 'itemVariationDeleted', 'Item variation deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('517', '1', 'eng', 'messages', 'noItemAdded', 'No record found', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('518', '1', 'eng', 'messages', 'noItemCategoryAdded', 'No item category added', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('519', '1', 'eng', 'messages', 'noAreaAdded', 'No area is added.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('520', '1', 'eng', 'messages', 'areaAdded', 'Area added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('521', '1', 'eng', 'messages', 'areaUpdated', 'Area updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('522', '1', 'eng', 'messages', 'areaDeleted', 'Area deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('523', '1', 'eng', 'messages', 'noTableadded', 'No table is added.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('524', '1', 'eng', 'messages', 'tableAdded', 'Table added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('525', '1', 'eng', 'messages', 'tableUpdated', 'Table updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('526', '1', 'eng', 'messages', 'tableDeleted', 'Table deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('527', '1', 'eng', 'messages', 'setTableNo', 'You need to set the table number', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('528', '1', 'eng', 'messages', 'enterPax', 'Enter the no of Pax.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('529', '1', 'eng', 'messages', 'selectWaiter', 'Select the waiter who took the order.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('530', '1', 'eng', 'messages', 'orderItemRequired', 'You need to add items to the order.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('531', '1', 'eng', 'messages', 'orderSaved', 'Order placed successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('532', '1', 'eng', 'messages', 'kotGenerated', 'KOT Generated Successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('533', '1', 'eng', 'messages', 'billedSuccess', 'Order Billed Successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('534', '1', 'eng', 'messages', 'addCustomerDetails', 'Add customer details.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('535', '1', 'eng', 'messages', 'thankYouVisit', 'Thank you for your visit!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('536', '1', 'eng', 'messages', 'emailVerificationCode', 'Email verification code.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('537', '1', 'eng', 'messages', 'invalidVerificationCode', 'Invalid verification code.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('538', '1', 'eng', 'messages', 'verificationCodeSent', 'Verification Code Sent', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('539', '1', 'eng', 'messages', 'customerDeleted', 'Customer deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('540', '1', 'eng', 'messages', 'noCustomerFound', 'No Customer Found', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('541', '1', 'eng', 'messages', 'settingsUpdated', 'Settings updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('542', '1', 'eng', 'messages', 'orderPlacedSuccess', 'Order placed successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('543', '1', 'eng', 'messages', 'orderCanceled', 'Order canceled successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('544', '1', 'eng', 'messages', 'noPaymentFound', 'No Payment Found', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('545', '1', 'eng', 'messages', 'waitingTodayOrder', ' Waiting for today\'s first order &#x23F3;', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('546', '1', 'eng', 'messages', 'updateAlert', 'Do not click update now button if the application is customized. Your changes will be lost.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('547', '1', 'eng', 'messages', 'updateBackupNotice', 'Take a backup of files and database before updating.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('548', '1', 'eng', 'messages', 'frontHeroHeading', 'Ready to Satisfy Your Cravings? Place Your Order Now!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('549', '1', 'eng', 'messages', 'profileUpdated', 'Profile Updated Successfully', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('550', '1', 'eng', 'messages', 'cartEmpty', 'Your cart is empty 🙁', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('551', '1', 'eng', 'messages', 'memberAdded', 'Member added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('552', '1', 'eng', 'messages', 'cannotEditOwnRole', 'You cannot change own role.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('553', '1', 'eng', 'messages', 'memberUpdated', 'Member updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('554', '1', 'eng', 'messages', 'memberDeleted', 'Member deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('555', '1', 'eng', 'messages', 'currencyDeleted', 'Currency deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('556', '1', 'eng', 'messages', 'noCurrencyFound', 'No currency found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('557', '1', 'eng', 'messages', 'noPhoneCodesFound', 'No phone codes found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('558', '1', 'eng', 'messages', 'cannotDeleteDefaultCurrency', 'Cannot Delete Default Currency.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('559', '1', 'eng', 'messages', 'taxApplicableInfo', 'All taxes will be applicable on creating order.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('560', '1', 'eng', 'messages', 'taxDeleted', 'Tax deleted successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('561', '1', 'eng', 'messages', 'chooseEndTimeLater', 'Choose and end time later than the start time.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('562', '1', 'eng', 'messages', 'frontReservationHeading', 'Book a Table and Savor the Experience.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('563', '1', 'eng', 'messages', 'selectBookingDetail', 'Select your booking details', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('564', '1', 'eng', 'messages', 'selectTimeSlot', 'Select Time Slot', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('565', '1', 'eng', 'messages', 'loginForReservation', 'Login to make reservation', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('566', '1', 'eng', 'messages', 'reservationConfirmed', 'Your reservation is confirmed.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('567', '1', 'eng', 'messages', 'noTimeSlot', 'No time slot available. Choose a different date or meal time.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('568', '1', 'eng', 'messages', 'noTableReserved', 'No table is reserved.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('569', '1', 'eng', 'messages', 'smtpError', 'Your SMTP details are not correct. Please update to the correct one.<br><br>Proper SMTP configuration is essential for sending emails such as order confirmations, password resets, and notifications to customers and staff. Without correct SMTP settings, your restaurant management system cannot communicate via email.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('570', '1', 'eng', 'messages', 'newOrderReceived', 'New Order Received.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('571', '1', 'eng', 'messages', 'cannotDeleteCurrentBranch', 'Cannot delete current branch.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('572', '1', 'eng', 'messages', 'branchAdded', 'New branch added.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('573', '1', 'eng', 'messages', 'branchDeleted', 'Branch deleted successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('574', '1', 'eng', 'messages', 'branchUpdated', 'Branch updated successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('575', '1', 'eng', 'messages', 'licenseUpgraded', 'License upgraded successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('576', '1', 'eng', 'messages', 'noRestaurantFound', 'No restaurant found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('577', '1', 'eng', 'messages', 'restaurantUpdated', 'Restaurant updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('578', '1', 'eng', 'messages', 'invalidStripePlan', 'Invalid Stripe Plan.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('579', '1', 'eng', 'messages', 'packageUpdated', 'Package updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('580', '1', 'eng', 'messages', 'noPackageFound', 'No package found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('581', '1', 'eng', 'messages', 'alreadyRequestPending', 'You have already raised a request.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('582', '1', 'eng', 'messages', 'packageAdded', 'Package added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('583', '1', 'eng', 'messages', 'packageDeleted', 'Package deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('584', '1', 'eng', 'messages', 'smtpRecommendation', 'Recommendation for SMTP ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('585', '1', 'eng', 'messages', 'noMemberFound', 'No member found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('586', '1', 'eng', 'messages', 'noInvoiceFound', 'No invoice found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('587', '1', 'eng', 'messages', 'loadingData', 'Loading Data...', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('588', '1', 'eng', 'messages', 'gatewayNotAdded', 'Payment gateway credentials not added by superadmin', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('589', '1', 'eng', 'messages', 'smtpSuccess', 'Your SMTP details are correct', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('590', '1', 'eng', 'messages', 'packageRequired', 'Package ID is required.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('591', '1', 'eng', 'messages', 'packageNotFound', 'Package not found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('592', '1', 'eng', 'messages', 'trialExpireOnRequired', 'Trial expiration date is required.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('593', '1', 'eng', 'messages', 'amountNumeric', 'The amount must be a number.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('594', '1', 'eng', 'messages', 'payDateRequired', 'Payment date is required.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('595', '1', 'eng', 'messages', 'nextPayDateRequired', 'Next payment date is required.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('596', '1', 'eng', 'messages', 'noOfflinePaymentMethodFound', 'No offline payment method found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('597', '1', 'eng', 'messages', 'amountRequired', 'Amount is required.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('598', '1', 'eng', 'messages', 'licenceExpireRequired', 'License expiration date is required.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('599', '1', 'eng', 'messages', 'offlinePaymentMethodAdded', 'Offline payment method added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('600', '1', 'eng', 'messages', 'offlinePaymentMethodUpdated', 'Offline payment method updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('601', '1', 'eng', 'messages', 'noOfflinePaymentRequestFound', 'No offline payment request found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('602', '1', 'eng', 'messages', 'offlinePaymentMethodDeleted', 'Offline payment method deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('603', '1', 'eng', 'messages', 'reservationsDisabled', 'Reservations are currently disabled.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('604', '1', 'eng', 'messages', 'customerReservationsDisabled', 'Customer reservations are currently disabled.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('605', '1', 'eng', 'messages', 'minimumPartySizeRequired', 'Minimum reservation is for :size people.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('606', '1', 'eng', 'messages', 'minimumRequired', 'Min :size', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('607', '1', 'eng', 'messages', 'disabledWhenMainReservationsOff', 'Disabled when main reservations are off', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('608', '1', 'eng', 'messages', 'phoneCodeDetected', 'Phone code :code detected based on your location', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('609', '1', 'eng', 'messages', 'offlinePaymentVerified', 'Offline payment verified successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('610', '1', 'eng', 'messages', 'OfflinePlanChangeDeclined', 'Offline plan change request declined successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('611', '1', 'eng', 'messages', 'planUpgraded', 'Plan upgraded successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('612', '1', 'eng', 'messages', 'noPlanIdFound', 'No plan id found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('613', '1', 'eng', 'messages', 'requestSubmittedSuccessfully', 'Request submitted successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('614', '1', 'eng', 'messages', 'startShoppingNow', 'Add items to your cart!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('615', '1', 'eng', 'messages', 'smtpSecureEnabled', 'For Gmail SMTP configuration, please follow the following link ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('616', '1', 'eng', 'messages', 'testEmailSuccess', 'Email sent successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('617', '1', 'eng', 'messages', 'testEmailError', 'Failed to send test email: :message', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('618', '1', 'eng', 'messages', 'waiterRequestCompleted', 'Request completed successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('619', '1', 'eng', 'messages', 'welcomeToUpgrade', 'Please upgrade your license to access premium features and enhance your restaurant management experience.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('620', '1', 'eng', 'messages', 'upgradeRequired', 'Upgrade Required.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('621', '1', 'eng', 'messages', 'noAdminFound', 'No Admin Found', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('622', '1', 'eng', 'messages', 'statusUpdated', 'Status updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('623', '1', 'eng', 'messages', 'invalidRequest', 'Invalid Request', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('624', '1', 'eng', 'messages', 'packageIsUsed', 'Package is used by some restaurants. First change the package for those restaurants.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('625', '1', 'eng', 'messages', 'currencyCannotBeDeleted', 'Currency cannot be deleted', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('626', '1', 'eng', 'messages', 'currencyIsUsedInPackages', 'Currency is used in some packages. First change the currency for those packages or delete the packages with this currency.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('627', '1', 'eng', 'messages', 'languageUpdated', 'Language updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('628', '1', 'eng', 'messages', 'fileUploaded', 'File uploaded successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('629', '1', 'eng', 'messages', 'noFilesAvailable', 'No files available', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('630', '1', 'eng', 'messages', 'noFilesAvailableDescription', 'There are no files to display at the moment.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('631', '1', 'eng', 'messages', 'transferProgress', 'Transfer Progress', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('632', '1', 'eng', 'messages', 'discountPercentError', 'The discount percentage cannot exceed 100%.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('633', '1', 'eng', 'messages', 'branchLimitReached', 'Branch limit reached, can\'t add more with the current package.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('634', '1', 'eng', 'messages', 'ModifierGroupAdded', 'Modifier Group added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('635', '1', 'eng', 'messages', 'noModifierGroupFound', 'No modifier group found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('636', '1', 'eng', 'messages', 'itemModifierGroupAdded', 'Item Modifier Group added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('637', '1', 'eng', 'messages', 'itemModifierGroupUpdated', 'Item Modifier Group updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('638', '1', 'eng', 'messages', 'itemModifierGroupDeleted', 'Item Modifier Group deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('639', '1', 'eng', 'messages', 'noItemModifierFound', 'No item modifier found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('640', '1', 'eng', 'messages', 'ModifierGroupUpdated', 'Modifier Group updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('641', '1', 'eng', 'messages', 'cronIsNotRunning', 'It appears that your cron job has not run in the last 48 hours. Please check to ensure that it is properly configured. This message will automatically disappear once the cron job is functioning correctly again', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('642', '1', 'eng', 'messages', 'cronIsNotRunningOnboarding', 'Please check to ensure that it is properly configured. This message will automatically disappear once the cron job is functioning correctly again', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('643', '1', 'eng', 'messages', 'cronJobSetting', 'Cron Job Setting', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('644', '1', 'eng', 'messages', 'cronJobSettingDescription', 'Click here to view the cron job setting.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('645', '1', 'eng', 'messages', 'downloadFilefromCodecanyon', 'Download the zip file from codecanyon and upload it here. Only .zip file type is allowed for uploading.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('646', '1', 'eng', 'messages', 'sweetAlertTitle', 'Are you sure?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('647', '1', 'eng', 'messages', 'removeFileText', 'You will not be able to recover the deleted file!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('648', '1', 'eng', 'messages', 'confirmDelete', 'Yes, delete it!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('649', '1', 'eng', 'messages', 'deleteSuccess', 'Deleted successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('650', '1', 'eng', 'messages', 'installingUpdateMessage', 'Installing...Please wait (This may take a few minutes.)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('651', '1', 'eng', 'messages', 'installedUpdateMessage', 'Installed successfully. Reload the page to see the changes.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('652', '1', 'eng', 'messages', 'customModuleInstalled', 'Module installed successfully. You will be redirected to the custom module page. Activate the module to use it.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('653', '1', 'eng', 'messages', 'noRecordFound', 'No record found', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('654', '1', 'eng', 'messages', 'orderDeleted', 'Order deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('655', '1', 'eng', 'messages', 'CartAddPermissionDenied', 'Permission denied. Please contact the restaurant.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('656', '1', 'eng', 'messages', 'noExpensesAdded', 'No Expenses Found', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('657', '1', 'eng', 'messages', 'expenseAdded', 'Expenses Added ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('658', '1', 'eng', 'messages', 'expenseUpdated', 'Expenses Updated ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('659', '1', 'eng', 'messages', 'showHidePurchaseCode', 'Show/Hide Purchase Code', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('660', '1', 'eng', 'messages', 'changePurchaseCode', 'Change Purchase Code', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('661', '1', 'eng', 'messages', 'restaurantDeleted', 'Restaurant deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('662', '1', 'eng', 'messages', 'deliveryExecutiveAssigned', 'Delivery executive assigned!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('663', '1', 'eng', 'messages', 'selectDeliveryExecutive', 'Please select a delivery executive.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('664', '1', 'eng', 'messages', 'vendorUpdated', 'Vendor Updated', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('665', '1', 'eng', 'messages', 'expenseDeleted', 'Expense Deleted', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('666', '1', 'eng', 'messages', 'vendorDeleted', 'Vendor Deleted', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('667', '1', 'eng', 'messages', 'noVendorsAdded', 'No Vendors Found', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('668', '1', 'eng', 'messages', 'moduleSettingsInstall', 'Install new modules to enhance your application\'s functionality', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('669', '1', 'eng', 'messages', 'chargeDeleted', 'Charge deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('670', '1', 'eng', 'messages', 'addonDescription', 'This is an additional module that can be purchased separately.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('671', '1', 'eng', 'messages', 'noChargeFound', 'No charge found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('672', '1', 'eng', 'messages', 'paymentQrCodeRequired', 'Payment QR Code is required.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('673', '1', 'eng', 'messages', 'noSubscriptionFound', 'No subscription found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('674', '1', 'eng', 'messages', 'subscriptionCancelled', 'Subscription cancelled successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('675', '1', 'eng', 'messages', 'subscriptionUpdated', 'Subscription updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('676', '1', 'eng', 'messages', 'customerAdded', 'Customer added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('677', '1', 'eng', 'messages', 'customerAlreadyExists', 'Customer with email :email already exists.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('678', '1', 'eng', 'messages', 'customerImported', 'Customers imported successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('679', '1', 'eng', 'messages', 'customerImportStarted', 'Customer import started successfully! The import is being processed in the background.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('680', '1', 'eng', 'messages', 'noFeatures', 'No additional features found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('681', '1', 'eng', 'messages', 'paymentGatewayNotConfigured', 'Payment gateway not configured.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('682', '1', 'eng', 'messages', 'tipRemovedSuccessfully', 'Tip removed successfully', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('683', '1', 'eng', 'messages', 'tipUpdatedSuccessfully', 'Tip updated successfully', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('684', '1', 'eng', 'messages', 'tipAddedSuccessfully', 'Tip added successfully', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('685', '1', 'eng', 'messages', 'paymentDoneSuccessfully', 'Payment done successfully', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('686', '1', 'eng', 'messages', 'paymentFailed', 'Payment failed, please try again', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('687', '1', 'eng', 'messages', 'invalidPaymentMethod', 'Invalid payment method', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('688', '1', 'eng', 'messages', 'expenseCategoryDeleted', 'Expense category deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('689', '1', 'eng', 'messages', 'expenseCategoryAdded', 'Expense category added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('690', '1', 'eng', 'messages', 'expenseCategoryUpdated', 'Expense category updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('691', '1', 'eng', 'messages', 'installAppInstruction', 'To install this web app on your phone: tap  ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('692', '1', 'eng', 'messages', 'addToHomeScreen', 'and then Add to Home Screen', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('693', '1', 'eng', 'messages', 'confrmDeleteDyanamicMenu', 'Are you sure you want to delete this Custom Menu', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('694', '1', 'eng', 'messages', 'noCustomMenu', 'No Custom Menu Found', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('695', '1', 'eng', 'messages', 'menuUpdate', 'Menu updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('696', '1', 'eng', 'messages', 'orderNotFound', 'Order not found', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('697', '1', 'eng', 'messages', 'notHavePermission', 'Access denied. Please reload page and try again.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('698', '1', 'eng', 'messages', 'troubleClickingButton', 'If you\'re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser:', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('699', '1', 'eng', 'messages', 'resetPassword', 'Reset Password', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('700', '1', 'eng', 'messages', 'accountRecoveryAuthMessage', 'Please confirm access to your account by entering the authentication code provided by your authenticator application.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('701', '1', 'eng', 'messages', 'accountRecoveryCode', 'Please confirm access to your account by entering one of your emergency recovery codes.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('702', '1', 'eng', 'messages', 'invalidFlutterwavePlan', 'Invalid Flutterwave plan ID.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('703', '1', 'eng', 'messages', 'flutterwavePlanNotFound', 'Flutterwave plan not found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('704', '1', 'eng', 'messages', 'FlutterwavePaymentError', 'Flutterwave payment error: :message', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('705', '1', 'eng', 'messages', 'transactionReferenceMissing', 'Transaction reference is missing.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('706', '1', 'eng', 'messages', 'invalidTransactionReference', 'Invalid transaction reference.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('707', '1', 'eng', 'messages', 'paymentVerificationFailed', 'Payment verification failed.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('708', '1', 'eng', 'messages', 'cannotUseSelfDomain', 'You cannot use your own domain as the landing site URL.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('709', '1', 'eng', 'messages', 'charactersShowingPerLine', 'How many characters showing per line in your paper, eg: in 80mm characters per line is 46', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('710', '1', 'eng', 'messages', 'printerIPAddress', 'You may get Printer IP address from test print paper as per printer setting', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('711', '1', 'eng', 'messages', 'printerPortAddress', 'In maximum case the Printer Port Address is 9100 but in case it is different please do a test print from your printer after turning it on, you will get the Printer Port Address in that test print paper', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('712', '1', 'eng', 'messages', 'printerAdded', 'Printer added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('713', '1', 'eng', 'messages', 'printerUpdated', 'Printer updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('714', '1', 'eng', 'messages', 'printerDeleted', 'Printer deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('715', '1', 'eng', 'messages', 'featureDeleted', 'Feature deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('716', '1', 'eng', 'messages', 'reviewDeleted', 'Review deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('717', '1', 'eng', 'messages', 'faqAdd', 'FAQ Add successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('718', '1', 'eng', 'messages', 'faqUpdated', 'FAQ updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('719', '1', 'eng', 'messages', 'faqDeleted', 'FAQ deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('720', '1', 'eng', 'messages', 'contactSetting', 'Contact setting updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('721', '1', 'eng', 'messages', 'headerSetting', 'Heading updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('722', '1', 'eng', 'messages', 'waiterUpdated', 'Waiter Updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('723', '1', 'eng', 'messages', 'errorWantToCreateNewKot', 'To add an item, please create a new KOT by clicking the \"New KOT\" button.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('724', '1', 'eng', 'messages', 'noPrinterAdded', 'No printer added yet', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('725', '1', 'eng', 'messages', 'kotConflict', 'The selected KOTs are already assigned to another printer. Please choose different KOTs.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('726', '1', 'eng', 'messages', 'orderConflict', 'The selected orders are already assigned to another printer. Please choose different orders.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('727', '1', 'eng', 'messages', 'invalidCoordinates', 'Invalid coordinates provided.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('728', '1', 'eng', 'messages', 'deliverySettingInvalid', 'Delivery settings are invalid. Please contact the branch.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('729', '1', 'eng', 'messages', 'outOfDeliveryRange', 'The delivery address is out of the delivery range.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('730', '1', 'eng', 'messages', 'loginRequired', 'Login required, Please login to continue.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('731', '1', 'eng', 'messages', 'addressUpdated', 'Address updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('732', '1', 'eng', 'messages', 'addressAdded', 'Address added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('733', '1', 'eng', 'messages', 'addressDeleted', 'Address deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('734', '1', 'eng', 'messages', 'noBranchCoordinates', 'Delivery settings require branch coordinates. Please update your branch location first.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('735', '1', 'eng', 'messages', 'noReservationsFound', 'No reservations found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('736', '1', 'eng', 'messages', 'paymentError', 'Payment failed. Please try again.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('737', '1', 'eng', 'messages', 'errorOccurred', 'An error occurred. Please try again later.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('738', '1', 'eng', 'messages', 'subscriptionStatusUpdate', 'Subscription status updated in our system. Please log in to your PayFast account to complete the cancellation.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('739', '1', 'eng', 'messages', 'noActiveKotPrinterConfigured', 'No active KOT printer configured.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('740', '1', 'eng', 'messages', 'defaultPrinterExists', 'Default printer already exists.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('741', '1', 'eng', 'messages', 'printerNotConnected', ' Printer Not Connected', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('742', '1', 'eng', 'messages', 'sessionDriverTooltip', 'This option controls the session \"driver\" that will be used on requests. Database driver gives you more control. * Changing the driver will make you logout.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('743', '1', 'eng', 'messages', 'atLeastTwoStatusesRequired', 'At least two statuses are required.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('744', '1', 'eng', 'messages', 'paymentGatewaySettingsUpdated', 'Payment gateway settings updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('745', '1', 'eng', 'messages', 'cannotDeleteDefaultPrinter', 'You Cannot Delete Default Printer', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('746', '1', 'eng', 'messages', 'printerStatusUpdated', 'Printer status updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('747', '1', 'eng', 'messages', 'cannotUpdateDefaultPrinterStatus', 'You cannot update the status of the default printer.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('748', '1', 'eng', 'messages', 'noBranchFound', 'No branch found. Please create a branch first.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('749', '1', 'eng', 'messages', 'planNotFound', 'Plan not found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('750', '1', 'eng', 'messages', 'reasonDeleted', 'Reason deleted successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('751', '1', 'eng', 'messages', 'reasonUpdated', 'Reason updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('752', '1', 'eng', 'messages', 'reasonAdded', 'Reason added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('753', '1', 'eng', 'messages', 'cloneCategoriesRequired', 'Clone categories are required.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('754', '1', 'eng', 'messages', 'cloneMenuRequired', 'Clone menu is required.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('755', '1', 'eng', 'messages', 'cloneMenuItemRequired', 'Clone menu item is required.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('756', '1', 'eng', 'messages', 'noParkingManagementFound', 'No parking management found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('757', '1', 'eng', 'messages', 'branchKeyReset', 'Branch key reset successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('758', '1', 'eng', 'messages', 'roleCreatedSuccessfully', 'Role created successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('759', '1', 'eng', 'messages', 'copyPermissionsFrom', 'Copy permissions from role (optional)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('760', '1', 'eng', 'messages', 'protectedRole', 'Default role can not be deleted.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('761', '1', 'eng', 'messages', 'roleCannotBeUpdated', 'This role cannot be updated.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('762', '1', 'eng', 'messages', 'roleNotFound', 'Role not found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('763', '1', 'eng', 'messages', 'roleUpdatedSuccessfully', 'Role updated successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('764', '1', 'eng', 'messages', 'errorUpdatingRole', 'Error updating role: ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('765', '1', 'eng', 'messages', 'errorCreatingRole', 'Error creating role: ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('766', '1', 'eng', 'messages', 'roleCannotBeDeleted', 'This role cannot be deleted.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('767', '1', 'eng', 'messages', 'roleDeletedAndUsersReassigned', 'Role deleted and users reassigned successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('768', '1', 'eng', 'messages', 'errorDeletingRole', 'Error deleting role: ', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('769', '1', 'eng', 'messages', 'orderTypeDeleted', 'Order type deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('770', '1', 'eng', 'messages', 'modifierGroupAlreadyAssociatedWithVariation', 'This modifier group is already associated with selected variation.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('771', '1', 'eng', 'messages', 'userDeleted', 'User deleted successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('772', '1', 'eng', 'messages', 'userRoleUpdated', 'User role updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('773', '1', 'eng', 'messages', 'noUserFound', 'No user found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('774', '1', 'eng', 'messages', 'areYouSureDeleteUser', 'Are you sure you want to delete this user?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('775', '1', 'eng', 'messages', 'cannotDeleteOwnAccount', 'You cannot delete your own account.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('776', '1', 'eng', 'messages', 'superadminUserAdded', 'Superadmin user added successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('777', '1', 'eng', 'messages', 'superadminUserUpdated', 'Superadmin user updated successfully!', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('778', '1', 'eng', 'messages', 'noUserFoundWithThisEmailAddress', 'No user found with this email address.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('779', '1', 'eng', 'messages', 'otpSentToYourEmailAddress', 'OTP sent to your email address.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('780', '1', 'eng', 'messages', 'invalidOrExpiredOtp', 'Invalid or expired OTP.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('781', '1', 'eng', 'messages', 'userNotFound', 'User not found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('782', '1', 'eng', 'messages', 'otpResentSuccessfully', 'OTP resent successfully.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('783', '1', 'eng', 'messages', 'otpSentToYourPhoneNumber', 'OTP sent to your email address and phone number: :phone', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('784', '1', 'eng', 'messages', 'invalidLicenseDate', 'Invalid license date. Please check your purchase code.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('785', '1', 'eng', 'messages', 'cancelFailed', 'Cancelation failed', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('786', '1', 'eng', 'messages', 'paymentSuccess', 'Payment successful', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('787', '1', 'eng', 'messages', 'tableLockedByUser', 'This table is currently being handled by :user. Please try again later.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('788', '1', 'eng', 'messages', 'tableHandledByUser', 'Table :table is currently being handled by :user. Please select a different table.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('789', '1', 'eng', 'messages', 'tableLocked', 'Table :table is currently being handled by you.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('790', '1', 'eng', 'messages', 'tableLockFailed', 'Could not lock table. Try again or choose another table.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('791', '1', 'eng', 'messages', 'tableNotFound', 'Table not found.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('792', '1', 'eng', 'messages', 'tableUnlockedSuccess', 'Table :table unlocked.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('793', '1', 'eng', 'messages', 'tableUnlockFailed', 'Could not unlock table.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('794', '1', 'eng', 'modules', 'menu.addMenu', 'Add Menu', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('795', '1', 'eng', 'modules', 'menu.menuName', 'Menu Name', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('796', '1', 'eng', 'modules', 'menu.allMenus', 'Menus', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('797', '1', 'eng', 'modules', 'menu.chooseMenu', 'Choose Menu', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('798', '1', 'eng', 'modules', 'menu.allMenuItems', 'Menu Items', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('799', '1', 'eng', 'modules', 'menu.menuNameHelp', 'Enter the menu name below to create a new menu.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('800', '1', 'eng', 'modules', 'menu.item', 'Item(s)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('801', '1', 'eng', 'modules', 'menu.addMenuItem', 'Add Menu Item', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('802', '1', 'eng', 'modules', 'menu.editMenuItem', 'Edit Menu Item', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('803', '1', 'eng', 'modules', 'menu.itemCategory', 'Item Category', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('804', '1', 'eng', 'modules', 'menu.addItemCategory', 'Add Item Category', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('805', '1', 'eng', 'modules', 'menu.typeVeg', 'Veg', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('806', '1', 'eng', 'modules', 'menu.addItem', 'Add Item', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('807', '1', 'eng', 'modules', 'menu.typeNonVeg', 'Non Veg', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('808', '1', 'eng', 'modules', 'menu.typeEgg', 'Egg', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('809', '1', 'eng', 'modules', 'menu.typeDrink', 'Drink', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('810', '1', 'eng', 'modules', 'menu.typeOther', 'Other', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('811', '1', 'eng', 'modules', 'menu.veg', 'Veg', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('812', '1', 'eng', 'modules', 'menu.non-veg', 'Non Veg', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('813', '1', 'eng', 'modules', 'menu.egg', 'Contains Egg', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('814', '1', 'eng', 'modules', 'menu.itemImage', 'Item Image', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('815', '1', 'eng', 'modules', 'menu.hasVariations', 'Has Variations', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('816', '1', 'eng', 'modules', 'menu.variationName', 'Variation Name', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('817', '1', 'eng', 'modules', 'menu.addVariations', 'Add Variations', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('818', '1', 'eng', 'modules', 'menu.menuItemHelp', 'Fill in the details below to add a new menu item.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('819', '1', 'eng', 'modules', 'menu.itemName', 'Item Name', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('820', '1', 'eng', 'modules', 'menu.itemDescription', 'Item Description', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('821', '1', 'eng', 'modules', 'menu.categoryName', 'Item Category Name', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('822', '1', 'eng', 'modules', 'menu.setPrice', 'Price', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('823', '1', 'eng', 'modules', 'menu.showVariations', 'Show Variations', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('824', '1', 'eng', 'modules', 'menu.itemVariations', 'Item Variations', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('825', '1', 'eng', 'modules', 'menu.deleteMenuItem', 'Delete Menu Item', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('826', '1', 'eng', 'modules', 'menu.deleteItemCategory', 'Delete Item Category', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('827', '1', 'eng', 'modules', 'menu.deleteVariant', 'Delete Variant', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('828', '1', 'eng', 'modules', 'menu.deleteMenu', 'Delete Menu', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('829', '1', 'eng', 'modules', 'menu.deleteVariantMessage', 'Are you sure you want to delete the item variant?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('830', '1', 'eng', 'modules', 'menu.deleteMenuItemMessage', 'Are you sure you want to delete the menu item?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('831', '1', 'eng', 'modules', 'menu.deleteMenuMessage', 'Are you sure you want to delete the menu?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('832', '1', 'eng', 'modules', 'menu.deleteCategoryMessage', 'Are you sure you want to delete the item category?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('833', '1', 'eng', 'modules', 'menu.filterType', 'Filter by Type', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('834', '1', 'eng', 'modules', 'menu.filterCategory', 'Filter by Category', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('835', '1', 'eng', 'modules', 'menu.itemType', 'Item Type', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('836', '1', 'eng', 'modules', 'menu.preparationTime', 'Preparation Time', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('837', '1', 'eng', 'modules', 'menu.minutes', 'Minutes', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('838', '1', 'eng', 'modules', 'menu.browseMenu', 'Browse Menu', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('839', '1', 'eng', 'modules', 'menu.isAvailable', 'Is Available', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('840', '1', 'eng', 'modules', 'menu.filterAvailability', 'Filter by Availability', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('841', '1', 'eng', 'modules', 'menu.itemAvailability', 'Item Availability', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('842', '1', 'eng', 'modules', 'menu.available', 'Available', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('843', '1', 'eng', 'modules', 'menu.notAvailable', 'Not Available', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('844', '1', 'eng', 'modules', 'menu.drink', 'Drink', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('845', '1', 'eng', 'modules', 'menu.addCustomer', 'Add Customer', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('846', '1', 'eng', 'modules', 'menu.translations', 'Translations', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('847', '1', 'eng', 'modules', 'menu.notTranslated', 'Not Translated', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('848', '1', 'eng', 'modules', 'menu.selectLanguage', 'Select Language', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('849', '1', 'eng', 'modules', 'menu.showMore', 'Show More', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('850', '1', 'eng', 'modules', 'menu.showLess', 'Show Less', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('851', '1', 'eng', 'modules', 'menu.kitchenType', 'Kitchen Type', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('852', '1', 'eng', 'modules', 'menu.SelectKitchenType', 'Select Kitchen Type', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('853', '1', 'eng', 'modules', 'menu.showOnCustomerSite', 'Show on Customer Site', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('854', '1', 'eng', 'modules', 'menu.sortManager', 'Menu Organizer', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('855', '1', 'eng', 'modules', 'menu.sortMenuItems', 'Organize Menu Items', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('856', '1', 'eng', 'modules', 'menu.sortManagerInfoMessage', 'Drag and drop to organize menus, items and categories. Click a menu or category to filter and focus your item list.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('857', '1', 'eng', 'modules', 'menu.taxInclusiveInfo', 'Price includes :percent% tax (:tax) on base amount :base.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('858', '1', 'eng', 'modules', 'menu.taxExclusiveInfo', 'Price excludes :percent% tax (:tax) on base amount :base.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('859', '1', 'eng', 'modules', 'menu.taxBreakdown', 'Tax Breakdown', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('860', '1', 'eng', 'modules', 'menu.fromActualBreakdown', 'From Actual Breakdown', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('861', '1', 'eng', 'modules', 'menu.basePrice', 'Base Price', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('862', '1', 'eng', 'modules', 'menu.tax', 'Tax', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('863', '1', 'eng', 'modules', 'menu.total', 'Total', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('864', '1', 'eng', 'modules', 'menu.priceIncludesTax', 'This price includes tax (tax inclusive pricing)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('865', '1', 'eng', 'modules', 'menu.taxAddedToPrice', 'Tax will be added to this price (tax exclusive pricing)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('866', '1', 'eng', 'modules', 'menu.selectTaxes', 'Select Applicable Taxes', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('867', '1', 'eng', 'modules', 'menu.inStock', 'In Stock', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('868', '1', 'eng', 'modules', 'menu.typeHalal', 'Halal', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('869', '1', 'eng', 'modules', 'menu.bulkUpload', 'Bulk Upload', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('870', '1', 'eng', 'modules', 'menu.bulkUploadMenuItems', 'Bulk Upload Menu Items', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('871', '1', 'eng', 'modules', 'menu.uploadFile', 'Upload File', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('872', '1', 'eng', 'modules', 'menu.dragDropFile', 'Drag and drop your CSV or Excel file here, or click to browse', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('873', '1', 'eng', 'modules', 'menu.chooseFile', 'Choose file', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('874', '1', 'eng', 'modules', 'menu.selectKitchen', 'Select Kitchen', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('875', '1', 'eng', 'modules', 'menu.selectKitchenDescription', 'Choose which kitchen these menu items will be assigned to:', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('876', '1', 'eng', 'modules', 'menu.kitchenSelected', 'Kitchen Selected:', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('877', '1', 'eng', 'modules', 'menu.startImport', 'Start Import', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('878', '1', 'eng', 'modules', 'menu.startNewUpload', 'Start New Upload', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('879', '1', 'eng', 'modules', 'menu.importInProgress', 'Import in Progress', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('880', '1', 'eng', 'modules', 'menu.validatingFile', 'Validating file...', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('881', '1', 'eng', 'modules', 'menu.processingData', 'Processing data...', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('882', '1', 'eng', 'modules', 'menu.countingRows', 'Counting rows', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('883', '1', 'eng', 'modules', 'menu.processingRow', 'Processing row', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('884', '1', 'eng', 'modules', 'menu.importingData', 'Importing data', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('885', '1', 'eng', 'modules', 'menu.finalizingImport', 'Finalizing import', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('886', '1', 'eng', 'modules', 'menu.importCompleted', 'Import Completed', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('887', '1', 'eng', 'modules', 'menu.importFailed', 'Import Failed', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('888', '1', 'eng', 'modules', 'menu.importSummary', 'Import Summary', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('889', '1', 'eng', 'modules', 'menu.totalRecords', 'Total Records', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('890', '1', 'eng', 'modules', 'menu.successfulImports', 'Successful Imports', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('891', '1', 'eng', 'modules', 'menu.failedImports', 'Failed Imports', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('892', '1', 'eng', 'modules', 'menu.autoCreated', 'Auto-Created', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('893', '1', 'eng', 'modules', 'menu.categoriesCreated', 'Categories Created', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('894', '1', 'eng', 'modules', 'menu.menusCreated', 'Menus Created', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('895', '1', 'eng', 'modules', 'menu.importErrors', 'Import Errors', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('896', '1', 'eng', 'modules', 'menu.downloadSampleFile', 'Download Sample File', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('897', '1', 'eng', 'modules', 'menu.requiredColumns', 'Required Columns', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('898', '1', 'eng', 'modules', 'menu.requiredColumnsDescription', 'Your CSV file must include these columns:', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('899', '1', 'eng', 'modules', 'menu.availableInSystem', 'Available in Your System', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('900', '1', 'eng', 'modules', 'menu.availableInSystemDescription', 'Use these exact names in your CSV file, or create new ones - they will be auto-created if missing.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('901', '1', 'eng', 'modules', 'menu.categories', 'Categories', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('902', '1', 'eng', 'modules', 'menu.menus', 'Menus', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('903', '1', 'eng', 'modules', 'menu.kitchens', 'Kitchens', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('904', '1', 'eng', 'modules', 'menu.importInstructions', 'Import Instructions', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('905', '1', 'eng', 'modules', 'menu.importInstructionsDescription', 'Follow these steps to bulk import your menu items:', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('906', '1', 'eng', 'modules', 'menu.step1', 'Step 1: Download the sample file to see the required format', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('907', '1', 'eng', 'modules', 'menu.step2', 'Step 2: Fill in your menu item data using the sample as a guide', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('908', '1', 'eng', 'modules', 'menu.step3', 'Step 3: Upload your completed file and select a kitchen', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('909', '1', 'eng', 'modules', 'menu.step4', 'Step 4: Click \"Start Import\" to begin the process', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('910', '1', 'eng', 'modules', 'menu.tryAgain', 'Try Again', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('911', '1', 'eng', 'modules', 'menu.done', 'Done', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('912', '1', 'eng', 'modules', 'menu.close', 'Close', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('913', '1', 'eng', 'modules', 'menu.backToMenuItems', 'Back to Menu Items', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('914', '1', 'eng', 'modules', 'menu.csvPreview', 'CSV Preview', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('915', '1', 'eng', 'modules', 'menu.reviewAndMapColumns', 'Review your data and map CSV columns to database fields', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('916', '1', 'eng', 'modules', 'menu.columnMapping', 'Column Mapping', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('917', '1', 'eng', 'modules', 'menu.dataPreview', 'Data Preview', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('918', '1', 'eng', 'modules', 'menu.type', 'Type', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('919', '1', 'eng', 'modules', 'table.allAreas', 'All Areas', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('920', '1', 'eng', 'modules', 'table.addArea', 'Add Area', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('921', '1', 'eng', 'modules', 'table.editArea', 'Edit Area', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('922', '1', 'eng', 'modules', 'table.areaName', 'Area Name', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('923', '1', 'eng', 'modules', 'table.noOfTables', 'No Of Tables', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('924', '1', 'eng', 'modules', 'table.deleteArea', 'Delete Area', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('925', '1', 'eng', 'modules', 'table.deleteAreaMessage', 'Are you sure you want to delete the area?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('926', '1', 'eng', 'modules', 'table.seats', 'Seat(s)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('927', '1', 'eng', 'modules', 'table.addTable', 'Add Table', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('928', '1', 'eng', 'modules', 'table.editTable', 'Edit Table', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('929', '1', 'eng', 'modules', 'table.tableView', 'Table View', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('930', '1', 'eng', 'modules', 'table.tableCode', 'Table Code', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('931', '1', 'eng', 'modules', 'table.chooseArea', 'Choose Area', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('932', '1', 'eng', 'modules', 'table.seatingCapacity', 'Seating Capacity', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('933', '1', 'eng', 'modules', 'table.table', 'Table', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('934', '1', 'eng', 'modules', 'table.available', 'Available', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('935', '1', 'eng', 'modules', 'table.running', 'Running', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('936', '1', 'eng', 'modules', 'table.reserved', 'Reserved', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('937', '1', 'eng', 'modules', 'table.filterAvailable', 'Filter by Availability', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('938', '1', 'eng', 'modules', 'table.availableTables', 'Available Tables', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('939', '1', 'eng', 'modules', 'table.deleteTable', 'Delete Table?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('940', '1', 'eng', 'modules', 'table.deleteTableMessage', 'Are you sure you want to delete the table?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('941', '1', 'eng', 'modules', 'table.selectTable', 'Select Table', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('942', '1', 'eng', 'modules', 'table.tableAvailability', 'Table Availability', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('943', '1', 'eng', 'modules', 'table.generateQrCode', 'Generate QR Code', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('944', '1', 'eng', 'modules', 'table.tableLockManager', 'Table Lock Manager', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('945', '1', 'eng', 'modules', 'table.totalLocked', 'Total Locked', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('946', '1', 'eng', 'modules', 'table.expiredLocks', 'Expired Locks', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('947', '1', 'eng', 'modules', 'table.lockTimeout', 'Lock Timeout', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('948', '1', 'eng', 'modules', 'table.cleanupExpiredLocks', 'Cleanup Expired Locks', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('949', '1', 'eng', 'modules', 'table.currentlyLockedTables', 'Currently Locked Tables', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('950', '1', 'eng', 'modules', 'table.noLockedTables', 'No tables are currently locked', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('951', '1', 'eng', 'modules', 'table.lockedBy', 'Locked by', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('952', '1', 'eng', 'modules', 'table.lockedAt', 'Locked at', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('953', '1', 'eng', 'modules', 'table.area', 'Area', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('954', '1', 'eng', 'modules', 'table.forceUnlock', 'Force Unlock', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('955', '1', 'eng', 'modules', 'table.confirmForceUnlock', 'Are you sure you want to force unlock this table?', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('956', '1', 'eng', 'modules', 'table.locked', 'Locked', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('957', '1', 'eng', 'modules', 'table.lockedByYou', 'Locked by You', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('958', '1', 'eng', 'modules', 'table.tableLocked', 'Table Locked', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('959', '1', 'eng', 'modules', 'table.tableUnlocked', 'Table Unlocked', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('960', '1', 'eng', 'modules', 'table.lockExpired', 'Lock Expired', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('961', '1', 'eng', 'modules', 'table.lockTooltip', 'Hover for details', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('962', '1', 'eng', 'modules', 'table.realTimeUpdates', 'Real-time Updates', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('963', '1', 'eng', 'modules', 'table.refreshInterval', 'Refresh Interval', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('964', '1', 'eng', 'modules', 'table.refresh', 'Refresh', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('965', '1', 'eng', 'modules', 'order.date', 'Date', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('966', '1', 'eng', 'modules', 'order.dateParts', 'Date Parts', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('967', '1', 'eng', 'modules', 'order.showYear', 'Show Year', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('968', '1', 'eng', 'modules', 'order.showMonth', 'Show Month', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('969', '1', 'eng', 'modules', 'order.showDay', 'Show Day', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('970', '1', 'eng', 'modules', 'order.showTime', 'Show Time', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('971', '1', 'eng', 'modules', 'order.custom', 'Custom', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('972', '1', 'eng', 'modules', 'order.qty', 'Qty', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('973', '1', 'eng', 'modules', 'order.price', 'Price', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('974', '1', 'eng', 'modules', 'order.amount', 'Amount', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('975', '1', 'eng', 'modules', 'order.balanceReturn', 'Balance Returned', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('976', '1', 'eng', 'modules', 'order.noOfPax', 'Pax', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('977', '1', 'eng', 'modules', 'order.selectWaiter', 'Select Waiter', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('978', '1', 'eng', 'modules', 'order.selectDeliveryExecutive', 'Select Delivery Executive', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('979', '1', 'eng', 'modules', 'order.totalItem', 'Item(s)', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('980', '1', 'eng', 'modules', 'order.subTotal', 'Sub Total', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('981', '1', 'eng', 'modules', 'order.total', 'Total', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('982', '1', 'eng', 'modules', 'order.totalOrder', 'Total Orders', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('983', '1', 'eng', 'modules', 'order.orderNumber', 'Order', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('984', '1', 'eng', 'modules', 'order.prefixType', 'Prefix Type', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('985', '1', 'eng', 'modules', 'order.customPrefix', 'Custom Prefix', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('986', '1', 'eng', 'modules', 'order.resetDaily', 'Reset Sequence Daily', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('987', '1', 'eng', 'modules', 'order.resetDailyHelp', 'If enabled, the order number sequence will reset every day.', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('988', '1', 'eng', 'modules', 'order.separator', 'Separator', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('989', '1', 'eng', 'modules', 'order.digits', 'Number Digits', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('990', '1', 'eng', 'modules', 'order.preview', 'Preview', '2025-10-15 14:29:34', '2025-10-15 14:29:34'),
('991', '1', 'eng', 'modules', 'order.previewHelp', 'This is a live preview of how your next order ID will be generated.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('992', '1', 'eng', 'modules', 'order.select', 'Select', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('993', '1', 'eng', 'modules', 'order.setTable', 'Assign Table', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('994', '1', 'eng', 'modules', 'order.changeTable', 'Change Table', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('995', '1', 'eng', 'modules', 'order.kot', 'KOT', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('996', '1', 'eng', 'modules', 'order.kotAndPrint', 'KOT & Print', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('997', '1', 'eng', 'modules', 'order.print_kot', 'Print KOT', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('998', '1', 'eng', 'modules', 'order.newKot', 'New KOT', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('999', '1', 'eng', 'modules', 'order.bill', 'BILL', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1000', '1', 'eng', 'modules', 'order.draft', 'Waiting KOT', '2025-10-15 14:29:35', '2025-10-15 14:29:35');

INSERT INTO `ltm_translations` VALUES
('1001', '1', 'eng', 'modules', 'order.billed', 'Billed', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1002', '1', 'eng', 'modules', 'order.paid', 'Paid', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1003', '1', 'eng', 'modules', 'order.payment_due', 'Payment Due', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1004', '1', 'eng', 'modules', 'order.canceled', 'Canceled', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1005', '1', 'eng', 'modules', 'order.infodraft', 'Not sent to Kitchen', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1006', '1', 'eng', 'modules', 'order.infokot', 'Cooking Now', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1007', '1', 'eng', 'modules', 'order.infobilled', 'Waiting for Payment', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1008', '1', 'eng', 'modules', 'order.infopaid', 'Payment Done', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1009', '1', 'eng', 'modules', 'order.infopayment_due', 'Payment is Pending', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1010', '1', 'eng', 'modules', 'order.infocanceled', 'Order Canceled', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1011', '1', 'eng', 'modules', 'order.addCustomerDetails', 'Add Customer Details', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1012', '1', 'eng', 'modules', 'order.addPayment', 'Add Payment', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1013', '1', 'eng', 'modules', 'order.addItems', 'Add Items', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1014', '1', 'eng', 'modules', 'order.waiter', 'Waiter', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1015', '1', 'eng', 'modules', 'order.in_kitchen', 'In Kitchen', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1016', '1', 'eng', 'modules', 'order.start_cooking', 'Start Cooking', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1017', '1', 'eng', 'modules', 'order.food_ready', 'Food is Ready', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1018', '1', 'eng', 'modules', 'order.pending_confirmation', 'Pending Confirmation', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1019', '1', 'eng', 'modules', 'order.served', 'Food is Served', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1020', '1', 'eng', 'modules', 'order.addNote', 'Add Note', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1021', '1', 'eng', 'modules', 'order.orderNote', 'Order Note', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1022', '1', 'eng', 'modules', 'order.cancelKot', 'Cancel KOT', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1023', '1', 'eng', 'modules', 'order.cancelKotMessage', 'This will cancel the KOT.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1024', '1', 'eng', 'modules', 'order.showOrder', 'Show Order', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1025', '1', 'eng', 'modules', 'order.cash', 'Cash', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1026', '1', 'eng', 'modules', 'order.card', 'Card', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1027', '1', 'eng', 'modules', 'order.upi', 'UPI', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1028', '1', 'eng', 'modules', 'order.due', 'Due', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1029', '1', 'eng', 'modules', 'order.other', 'Other', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1030', '1', 'eng', 'modules', 'order.payViaCash', 'Pay via Cash', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1031', '1', 'eng', 'modules', 'order.payViacard', 'Pay via Card', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1032', '1', 'eng', 'modules', 'order.payViaupi', 'Pay via UPI', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1033', '1', 'eng', 'modules', 'order.returnAmount', 'Amount to be returned', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1034', '1', 'eng', 'modules', 'order.payableAmount', 'Payable Amount', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1035', '1', 'eng', 'modules', 'order.dueAmount', 'Due Amount', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1036', '1', 'eng', 'modules', 'order.paymentMethod', 'Payment Method', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1037', '1', 'eng', 'modules', 'order.method', 'Method', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1038', '1', 'eng', 'modules', 'order.taxes', 'Taxes', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1039', '1', 'eng', 'modules', 'order.viewCart', 'View Cart', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1040', '1', 'eng', 'modules', 'order.placeOrder', 'Place Order', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1041', '1', 'eng', 'modules', 'order.myOrders', 'My Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1042', '1', 'eng', 'modules', 'order.includeTax', 'Includes Taxes', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1043', '1', 'eng', 'modules', 'order.payNow', 'Pay Now', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1044', '1', 'eng', 'modules', 'order.payLater', 'Pay Later', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1045', '1', 'eng', 'modules', 'order.payViaQr', 'Pay via QR Code', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1046', '1', 'eng', 'modules', 'order.chooseGateway', 'Choose payment gateway', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1047', '1', 'eng', 'modules', 'order.razorpay', 'Razorpay', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1048', '1', 'eng', 'modules', 'order.stripe', 'Stripe', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1049', '1', 'eng', 'modules', 'order.offline', 'Offline', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1050', '1', 'eng', 'modules', 'order.flutterwave', 'Flutterwave', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1051', '1', 'eng', 'modules', 'order.xendit', 'Xendit', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1052', '1', 'eng', 'modules', 'order.transactionId', 'Transaction ID', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1053', '1', 'eng', 'modules', 'order.cancelOrder', 'Cancel Order', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1054', '1', 'eng', 'modules', 'order.cancelOrderMessage', 'This will cancel the order and delete any associated payments. Are you sure you want to proceed?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1055', '1', 'eng', 'modules', 'order.activeOrder', 'Active Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1056', '1', 'eng', 'modules', 'order.todayOrder', 'Today\'s Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1057', '1', 'eng', 'modules', 'order.dine_in', 'Dine In', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1058', '1', 'eng', 'modules', 'order.delivery', 'Delivery', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1059', '1', 'eng', 'modules', 'order.pickup', 'Pickup', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1060', '1', 'eng', 'modules', 'order.pickupAt', 'Pickup At', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1061', '1', 'eng', 'modules', 'order.out_for_delivery', 'Out For Delivery', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1062', '1', 'eng', 'modules', 'order.infoout_for_delivery', 'Order is out for delivery', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1063', '1', 'eng', 'modules', 'order.delivered', 'Delivered', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1064', '1', 'eng', 'modules', 'order.infodelivered', 'Order is Delivered', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1065', '1', 'eng', 'modules', 'order.newOrder', 'New Order', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1066', '1', 'eng', 'modules', 'order.splitBill', 'Split Bill', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1067', '1', 'eng', 'modules', 'order.fullPayment', 'Full Payment', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1068', '1', 'eng', 'modules', 'order.splitByItems', 'Split by Items', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1069', '1', 'eng', 'modules', 'order.availableItems', 'Available Items', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1070', '1', 'eng', 'modules', 'order.clickToAdd', 'Click item to add to split', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1071', '1', 'eng', 'modules', 'order.itemsInSplit', 'Items in Split', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1072', '1', 'eng', 'modules', 'order.noItemsInSplit', 'No items added to this split yet', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1073', '1', 'eng', 'modules', 'order.newSplit', 'New Split', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1074', '1', 'eng', 'modules', 'order.changeMethod', 'Change Method', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1075', '1', 'eng', 'modules', 'order.equalSplit', 'Equal Split', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1076', '1', 'eng', 'modules', 'order.splitEqually', 'Split equally', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1077', '1', 'eng', 'modules', 'order.customSplit', 'Custom Split', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1078', '1', 'eng', 'modules', 'order.splitByAmount', 'Split by amount', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1079', '1', 'eng', 'modules', 'order.splitByDishes', 'Split by dishes', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1080', '1', 'eng', 'modules', 'order.base', 'Base', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1081', '1', 'eng', 'modules', 'order.tax', 'Tax', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1082', '1', 'eng', 'modules', 'order.payment', 'Payment', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1083', '1', 'eng', 'modules', 'order.orderHash', 'Order #', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1084', '1', 'eng', 'modules', 'order.totalBill', 'Total Bill', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1085', '1', 'eng', 'modules', 'order.amountPaid', 'Amount Paid', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1086', '1', 'eng', 'modules', 'order.splitAmount', 'Split Amount', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1087', '1', 'eng', 'modules', 'order.remaining', 'Remaining', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1088', '1', 'eng', 'modules', 'order.quantity', 'Quantity', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1089', '1', 'eng', 'modules', 'order.remove', 'Remove', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1090', '1', 'eng', 'modules', 'order.completePayment', 'Complete Payment', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1091', '1', 'eng', 'modules', 'order.createBillAndPrintReceipt', 'Bill & Print', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1092', '1', 'eng', 'modules', 'order.billAndPayment', 'Bill & Payment', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1093', '1', 'eng', 'modules', 'order.discount', 'Discount', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1094', '1', 'eng', 'modules', 'order.addDiscount', 'Add Discount', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1095', '1', 'eng', 'modules', 'order.discountType', 'Discount Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1096', '1', 'eng', 'modules', 'order.fixed', 'Fixed', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1097', '1', 'eng', 'modules', 'order.percent', 'Percent', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1098', '1', 'eng', 'modules', 'order.discountValue', 'Discount Value', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1099', '1', 'eng', 'modules', 'order.enterDiscountValue', 'Enter Discount Value', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1100', '1', 'eng', 'modules', 'order.calculatedDiscount', 'Calculated Discount', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1101', '1', 'eng', 'modules', 'order.noOrderType', 'Orders Disabled', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1102', '1', 'eng', 'modules', 'order.enableOrderType', 'You need to enable orders in settings to start taking orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1103', '1', 'eng', 'modules', 'order.enableOrderTypeButton', 'Enable Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1104', '1', 'eng', 'modules', 'order.deleteOrder', 'Delete Order', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1105', '1', 'eng', 'modules', 'order.deleteOrderMessage', 'Are you sure you want to delete the order?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1106', '1', 'eng', 'modules', 'order.deleteOrderItem', 'Delete Order Item', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1107', '1', 'eng', 'modules', 'order.deleteOrderItemMessage', 'Are you sure you want to delete this item from the order?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1108', '1', 'eng', 'modules', 'order.deliveryExecutive', 'Delivery Executive', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1109', '1', 'eng', 'modules', 'order.selectOrderTypes', 'Select Order Types', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1110', '1', 'eng', 'modules', 'order.extraCharges', 'Charges', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1111', '1', 'eng', 'modules', 'order.orderItems', 'Order Items', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1112', '1', 'eng', 'modules', 'order.priceDetails', 'Price Details', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1113', '1', 'eng', 'modules', 'order.paymentInformation', 'Payment Information', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1114', '1', 'eng', 'modules', 'order.paymentPending', 'Payment Pending', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1115', '1', 'eng', 'modules', 'order.itemPaymentStatus', 'Item Payment Status', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1116', '1', 'eng', 'modules', 'order.addTip', 'Add Tip', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1117', '1', 'eng', 'modules', 'order.tipAdded', 'Tip Added', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1118', '1', 'eng', 'modules', 'order.tip', 'Tip', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1119', '1', 'eng', 'modules', 'order.totalExcludingTip', '(Excluding Tip)', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1120', '1', 'eng', 'modules', 'order.tipAmount', 'Tip Amount', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1121', '1', 'eng', 'modules', 'order.tipNote', 'Tip Note', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1122', '1', 'eng', 'modules', 'order.currentTotal', 'Current Total', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1123', '1', 'eng', 'modules', 'order.newTotal', 'New Total', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1124', '1', 'eng', 'modules', 'order.suggestedTip', 'Suggested Tip', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1125', '1', 'eng', 'modules', 'order.customAmount', 'Custom Amount', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1126', '1', 'eng', 'modules', 'order.continueOrder', 'Continue Ordering', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1127', '1', 'eng', 'modules', 'order.orderStatus', 'Set Order Status', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1128', '1', 'eng', 'modules', 'order.infoready', 'Food is Ready', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1129', '1', 'eng', 'modules', 'order.infodefault', 'Unknown Status', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1130', '1', 'eng', 'modules', 'order.selectStatus', 'Select Status', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1131', '1', 'eng', 'modules', 'order.Order Placed', 'Order Placed', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1132', '1', 'eng', 'modules', 'order.Order Confirmed', 'Order Confirmed', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1133', '1', 'eng', 'modules', 'order.Order Preparing', 'Order Preparing', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1134', '1', 'eng', 'modules', 'order.Order is Ready for Pickup', 'Order is Ready for Pickup', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1135', '1', 'eng', 'modules', 'order.Order is Out for Delivery', 'Order is Out for Delivery', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1136', '1', 'eng', 'modules', 'order.Order Served', 'Order Served', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1137', '1', 'eng', 'modules', 'order.Delivered', 'Delivered', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1138', '1', 'eng', 'modules', 'order.moveTo', 'Move to', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1139', '1', 'eng', 'modules', 'order.info_placed', 'Order Placed', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1140', '1', 'eng', 'modules', 'order.info_confirmed', 'Order Confirmed', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1141', '1', 'eng', 'modules', 'order.info_preparing', 'Order Preparing', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1142', '1', 'eng', 'modules', 'order.info_ready_for_pickup', 'Order is Ready for Pickup', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1143', '1', 'eng', 'modules', 'order.info_out_for_delivery', 'Order is Out for Delivery', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1144', '1', 'eng', 'modules', 'order.info_served', 'Order Served', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1145', '1', 'eng', 'modules', 'order.info_delivered', 'Delivered', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1146', '1', 'eng', 'modules', 'order.info_cancelled', 'Order Cancelled', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1147', '1', 'eng', 'modules', 'order.orderCancelledMessage', 'This Order is cancelled and cannot be modified', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1148', '1', 'eng', 'modules', 'order.others', 'Others', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1149', '1', 'eng', 'modules', 'order.pending_verification', 'Payment Verification', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1150', '1', 'eng', 'modules', 'order.pendingPaymentVerification', 'Payment Verification Pending', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1151', '1', 'eng', 'modules', 'order.confirmPayment', 'Confirm Payment', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1152', '1', 'eng', 'modules', 'order.reportUnpaid', 'Report Unpaid', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1153', '1', 'eng', 'modules', 'order.viewOnMap', 'View on Map', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1154', '1', 'eng', 'modules', 'order.estimatedDeliveryTime', 'Estimated Delivery Time', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1155', '1', 'eng', 'modules', 'order.deliveryFee', 'Delivery Fee', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1156', '1', 'eng', 'modules', 'order.kotTicket', 'KOT Ticket', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1157', '1', 'eng', 'modules', 'order.kitchenOrderTicket', 'Kitchen Order Ticket', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1158', '1', 'eng', 'modules', 'order.specialInstructions', 'Special Instructions', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1159', '1', 'eng', 'modules', 'order.order', 'Order', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1160', '1', 'eng', 'modules', 'order.paypal', 'PayPal', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1161', '1', 'eng', 'modules', 'order.updateCustomerDetails', 'Update Customer Details', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1162', '1', 'eng', 'modules', 'order.markAsReady', 'Mark Ready', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1163', '1', 'eng', 'modules', 'order.ready', 'Food is Ready', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1164', '1', 'eng', 'modules', 'order.undo', 'Undo', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1165', '1', 'eng', 'modules', 'order.itemReady', 'Item Ready', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1166', '1', 'eng', 'modules', 'order.itemCooking', 'Item Cooking', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1167', '1', 'eng', 'modules', 'order.payfast', 'PayFast', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1168', '1', 'eng', 'modules', 'order.all', 'All', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1169', '1', 'eng', 'modules', 'order.note', 'Note', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1170', '1', 'eng', 'modules', 'order.paymentDetails', 'Payment Details', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1171', '1', 'eng', 'modules', 'order.paystack', 'Paystack', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1172', '1', 'eng', 'modules', 'order.kotBillAndPayment', 'KOT, Bill & Payment', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1173', '1', 'eng', 'modules', 'order.cancelled', 'Cancelled', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1174', '1', 'eng', 'modules', 'order.prefixSettings', 'Prefix Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1175', '1', 'eng', 'modules', 'order.orderSettingsHelp', 'Configure order settings to manage how orders are processed.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1176', '1', 'eng', 'modules', 'order.totalTax', 'Total Tax', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1177', '1', 'eng', 'modules', 'order.itemTax', 'Item Tax', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1178', '1', 'eng', 'modules', 'order.itemTaxBreakdown', 'Item Tax Breakdown', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1179', '1', 'eng', 'modules', 'order.toggleTaxDetails', 'Toggle Tax Details', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1180', '1', 'eng', 'modules', 'order.increaseQuantity', 'Increase Quantity', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1181', '1', 'eng', 'modules', 'order.decreaseQuantity', 'Decrease Quantity', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1182', '1', 'eng', 'modules', 'order.thankYouMessage', 'Thank you for your order!', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1183', '1', 'eng', 'modules', 'order.pleaseProceedToPayment', 'Please proceed to payment.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1184', '1', 'eng', 'modules', 'order.amountDue', 'Amount Due', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1185', '1', 'eng', 'modules', 'order.pleaseReviewOrder', 'Please review your order and proceed to payment.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1186', '1', 'eng', 'modules', 'order.pickUpDateTime', 'Pickup Date & Time', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1187', '1', 'eng', 'modules', 'order.pickupDate', 'Pickup Date:', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1188', '1', 'eng', 'modules', 'order.orderDate', 'Order Date:', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1189', '1', 'eng', 'modules', 'order.selectPickupDateTime', 'Select Pickup Date - Time', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1190', '1', 'eng', 'modules', 'order.defineYourOwnPrefix', 'Define your own prefix.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1191', '1', 'eng', 'modules', 'order.useTheCurrentDate', 'Use the current date.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1192', '1', 'eng', 'modules', 'order.combineBranchIdWithDate', 'Combine branch ID with date.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1193', '1', 'eng', 'modules', 'order.thisIsALivePreview', 'This is a live preview of how your next order ID will be generated.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1194', '1', 'eng', 'modules', 'order.branchPrefix', 'Branch Prefix', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1195', '1', 'eng', 'modules', 'order.branchPrefixHelp', 'Prefix example: ODR, BR01, Taco Bell (TB). Use a short code to identify your orders.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1196', '1', 'eng', 'modules', 'order.customPrefixFeatureDisabled', 'Custom prefix off. Using default (e.g. #23).', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1197', '1', 'eng', 'modules', 'order.enableOrderPrefix', 'Enable Order Prefix Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1198', '1', 'eng', 'modules', 'order.enableOrderPrefixDescription', 'Enable this to use custom order number prefixes as per your settings. If disabled, the system will use default order numbering without any custom prefix.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1199', '1', 'eng', 'modules', 'order.bank_transfer', 'Bank Transfer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1200', '1', 'eng', 'modules', 'order.reservationConfirmation', 'Reservation Confirmation', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1201', '1', 'eng', 'modules', 'order.tableHasReservation', 'This table has an active reservation', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1202', '1', 'eng', 'modules', 'order.reservationFor', 'Reservation for', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1203', '1', 'eng', 'modules', 'order.reservationTime', 'Reservation time', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1204', '1', 'eng', 'modules', 'order.isThisSameCustomer', 'Is this the same customer who made the reservation?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1205', '1', 'eng', 'modules', 'order.sameCustomer', 'Same Customer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1206', '1', 'eng', 'modules', 'order.differentCustomer', 'Different Customer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1207', '1', 'eng', 'modules', 'order.grandTotal', 'Grand Total', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1208', '1', 'eng', 'modules', 'order.splitTotal', 'Split Total', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1209', '1', 'eng', 'modules', 'order.remainingAmount', 'Remaining Amount', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1210', '1', 'eng', 'modules', 'order.amountPerSplit', 'Amount per split', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1211', '1', 'eng', 'modules', 'order.menuItemImageSettings', 'Menu Item Image Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1212', '1', 'eng', 'modules', 'order.hideMenuItemImageOnPos', 'Hide Menu Item Image on POS', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1213', '1', 'eng', 'modules', 'order.hideMenuItemImageOnCustomerSite', 'Hide Menu Item Image on Customer Site', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1214', '1', 'eng', 'modules', 'order.hideMenuItemImageOnPosDescription', 'Hide the menu item image on the POS.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1215', '1', 'eng', 'modules', 'order.hideMenuItemImageOnCustomerSiteDescription', 'Hide the menu item image on the customer site.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1216', '1', 'eng', 'modules', 'order.paddle', 'Paddle', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1217', '1', 'eng', 'modules', 'order.tokenNumberSettings', 'Token Number Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1218', '1', 'eng', 'modules', 'order.tokenNumberSettingsDescription', 'Enable token numbers for specific order types. Tokens reset daily and are unique per order type.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1219', '1', 'eng', 'modules', 'order.tokenNumber', 'Token #', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1220', '1', 'eng', 'modules', 'order.customerOrderBoard', 'Customer Order Board', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1221', '1', 'eng', 'modules', 'order.preparing', 'Preparing', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1222', '1', 'eng', 'modules', 'order.readyForPickup', 'Ready for Pickup', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1223', '1', 'eng', 'modules', 'order.noOrders', 'Waiting for orders...', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1224', '1', 'eng', 'modules', 'customer.addCustomer', 'Add Customer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1225', '1', 'eng', 'modules', 'customer.name', 'Customer Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1226', '1', 'eng', 'modules', 'customer.phone', 'Phone', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1227', '1', 'eng', 'modules', 'customer.email', 'Email Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1228', '1', 'eng', 'modules', 'customer.customerAddress', 'Customer Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1229', '1', 'eng', 'modules', 'customer.address', 'Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1230', '1', 'eng', 'modules', 'customer.enterName', 'Please enter your name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1231', '1', 'eng', 'modules', 'customer.enterCustomerName', 'Please enter customer name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1232', '1', 'eng', 'modules', 'customer.editCustomer', 'Edit Customer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1233', '1', 'eng', 'modules', 'customer.deleteCustomer', 'Delete Customer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1234', '1', 'eng', 'modules', 'customer.deleteWithOrder', 'Delete with their Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1235', '1', 'eng', 'modules', 'customer.deleteCustomerMessage', 'Are you sure you want to delete the customer?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1236', '1', 'eng', 'modules', 'customer.customer', 'Customer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1237', '1', 'eng', 'modules', 'customer.importCustomer', 'Import Customer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1238', '1', 'eng', 'modules', 'customer.totalAmountReceived', 'Total Amount Received', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1239', '1', 'eng', 'modules', 'customer.enterCustomerPhone', 'You can search and insert customer phone number here', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1240', '1', 'eng', 'modules', 'customer.searchOrCreate', 'Search existing customers or create a new one', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1241', '1', 'eng', 'modules', 'customer.searchCustomer', 'Search Customer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1242', '1', 'eng', 'modules', 'customer.searchPlaceholder', 'Search by name, phone, or email...', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1243', '1', 'eng', 'modules', 'customer.foundCustomers', 'Found :count customer(s)', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1244', '1', 'eng', 'modules', 'customer.noCustomersFound', 'No customers found', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1245', '1', 'eng', 'modules', 'customer.noCustomersMatching', 'We couldn\'t find any customers matching \":query\"', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1246', '1', 'eng', 'modules', 'customer.createNewCustomer', 'Create New Customer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1247', '1', 'eng', 'modules', 'customer.customerDetails', 'Customer Details', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1248', '1', 'eng', 'modules', 'customer.existingCustomer', 'Existing Customer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1249', '1', 'eng', 'modules', 'customer.createNewInstead', 'Create New Instead', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1250', '1', 'eng', 'modules', 'customer.enterPhoneNumber', 'Enter phone number', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1251', '1', 'eng', 'modules', 'customer.enterEmailAddress', 'Enter email address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1252', '1', 'eng', 'modules', 'customer.enterDeliveryAddress', 'Enter delivery address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1253', '1', 'eng', 'modules', 'customer.walkin', 'Walkin', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1254', '1', 'eng', 'modules', 'settings.appSettings', 'App Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1255', '1', 'eng', 'modules', 'settings.restaurantInformation', 'Restaurant Information', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1256', '1', 'eng', 'modules', 'settings.restaurantName', 'Restaurant Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1257', '1', 'eng', 'modules', 'settings.restaurantPhoneNumber', 'Restaurant Phone Number', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1258', '1', 'eng', 'modules', 'settings.restaurantEmailAddress', 'Restaurant Email Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1259', '1', 'eng', 'modules', 'settings.restaurantAddress', 'Restaurant Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1260', '1', 'eng', 'modules', 'settings.generalHelp', 'Enter the general information about your restaurant.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1261', '1', 'eng', 'modules', 'settings.countryTimezone', 'Restaurant\'s Country, Timezone & Currency', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1262', '1', 'eng', 'modules', 'settings.restaurantCountry', 'Country', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1263', '1', 'eng', 'modules', 'settings.restaurantTimezone', 'Time Zone', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1264', '1', 'eng', 'modules', 'settings.timezone', 'Time Zone', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1265', '1', 'eng', 'modules', 'settings.selectTimezone', 'Select Timezone', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1266', '1', 'eng', 'modules', 'settings.showTax', 'Show Tax Id on Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1267', '1', 'eng', 'modules', 'settings.addMore', 'Add More', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1268', '1', 'eng', 'modules', 'settings.addTax', 'Add Tax', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1269', '1', 'eng', 'modules', 'settings.restaurantCurrency', 'Currency', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1270', '1', 'eng', 'modules', 'settings.predefinedAmounts', 'Preset Amounts', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1271', '1', 'eng', 'modules', 'settings.editAmounts', 'Edit Amounts', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1272', '1', 'eng', 'modules', 'settings.editPredefinedAmounts', 'Edit Preset Amounts', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1273', '1', 'eng', 'modules', 'settings.enterAmount', 'Enter Amount', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1274', '1', 'eng', 'modules', 'settings.addAmount', 'Add Amount', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1275', '1', 'eng', 'modules', 'settings.themeColor', 'Theme Color', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1276', '1', 'eng', 'modules', 'settings.themeSettings', 'Theme Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1277', '1', 'eng', 'modules', 'settings.restaurantLogo', 'Show Restaurant Logo', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1278', '1', 'eng', 'modules', 'settings.uploadLogo', 'Upload Logo', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1279', '1', 'eng', 'modules', 'settings.removeLogo', 'Remove Logo', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1280', '1', 'eng', 'modules', 'settings.paymentgatewaySettings', 'Payment Gateways', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1281', '1', 'eng', 'modules', 'settings.paymentHelp', 'Enter payment gateway credentials to receive order payments.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1282', '1', 'eng', 'modules', 'settings.paymentHelpSuperadmin', 'Enter payment gateway credentials to receive subscription payments.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1283', '1', 'eng', 'modules', 'settings.enableRazorpay', 'Enable Razorpay', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1284', '1', 'eng', 'modules', 'settings.enableStripe', 'Enable Stripe', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1285', '1', 'eng', 'modules', 'settings.enableFlutterwave', 'Enable Flutterwave', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1286', '1', 'eng', 'modules', 'settings.enablePaypal', 'Enable Paypal', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1287', '1', 'eng', 'modules', 'settings.enablePaystack', 'Enable Paystack', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1288', '1', 'eng', 'modules', 'settings.enableXendit', 'Enable Xendit', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1289', '1', 'eng', 'modules', 'settings.enableOfflinePayment', 'Pay Offline', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1290', '1', 'eng', 'modules', 'settings.enableQrPayment', 'Pay Via Qr Code', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1291', '1', 'eng', 'modules', 'settings.restaurantSettings', 'Restaurant Information', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1292', '1', 'eng', 'modules', 'settings.taxSettings', 'Taxes', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1293', '1', 'eng', 'modules', 'settings.currencySettings', 'Currencies', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1294', '1', 'eng', 'modules', 'settings.offline_payment_status', 'Enable Offline Payment', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1295', '1', 'eng', 'modules', 'settings.roleSettings', 'Staff Roles', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1296', '1', 'eng', 'modules', 'settings.reservationSettings', 'Reservation Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1297', '1', 'eng', 'modules', 'settings.languageSettings', 'Language Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1298', '1', 'eng', 'modules', 'settings.currencySymbol', 'Currency Symbol', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1299', '1', 'eng', 'modules', 'settings.currencyCode', 'Currency Code', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1300', '1', 'eng', 'modules', 'settings.editCurrency', 'Edit Currency', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1301', '1', 'eng', 'modules', 'settings.addCurrency', 'Add Currency', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1302', '1', 'eng', 'modules', 'settings.deleteCurrency', 'Delete Currency', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1303', '1', 'eng', 'modules', 'settings.deleteCurrencyMessage', 'Are you sure you want to delete the Currency?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1304', '1', 'eng', 'modules', 'settings.deleteTaxMessage', 'Delete tax permanently', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1305', '1', 'eng', 'modules', 'settings.taxName', 'Tax Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1306', '1', 'eng', 'modules', 'settings.taxPercent', 'Tax Percent', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1307', '1', 'eng', 'modules', 'settings.taxId', 'Tax ID', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1308', '1', 'eng', 'modules', 'settings.deleteTax', 'Are you Sure, you want to delete this Tax?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1309', '1', 'eng', 'modules', 'settings.editTax', 'Edit Tax', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1310', '1', 'eng', 'modules', 'settings.emailSettings', 'Email Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1311', '1', 'eng', 'modules', 'settings.mailFromName', 'Mail From Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1312', '1', 'eng', 'modules', 'settings.mailFromEmail', 'Mail From Email', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1313', '1', 'eng', 'modules', 'settings.enableQueue', 'Enable Email Queue', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1314', '1', 'eng', 'modules', 'settings.mailDriver', 'Mail Driver', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1315', '1', 'eng', 'modules', 'settings.smtpHost', 'SMTP Host', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1316', '1', 'eng', 'modules', 'settings.smtpPort', 'SMTP Port', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1317', '1', 'eng', 'modules', 'settings.smtpEncryption', 'SMTP Mail Encryption', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1318', '1', 'eng', 'modules', 'settings.mailUsername', 'Mail Username', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1319', '1', 'eng', 'modules', 'settings.mailPassword', 'Mail Password', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1320', '1', 'eng', 'modules', 'settings.notificationSettings', 'Notification Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1321', '1', 'eng', 'modules', 'settings.branchSettings', 'Branch Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1322', '1', 'eng', 'modules', 'settings.addBranch', 'Add Branch', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1323', '1', 'eng', 'modules', 'settings.editBranch', 'Edit Branch', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1324', '1', 'eng', 'modules', 'settings.branchName', 'Branch Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1325', '1', 'eng', 'modules', 'settings.branchAddress', 'Branch Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1326', '1', 'eng', 'modules', 'settings.deleteBranch', 'Delete Branch', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1327', '1', 'eng', 'modules', 'settings.branches', 'Branches', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1328', '1', 'eng', 'modules', 'settings.deleteBranchMessage', 'Are you sure you want to delete the Branch? All the orders, staff members and payments related to this branch will be deleted.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1329', '1', 'eng', 'modules', 'settings.upgradeLicense', 'Upgrade Plan', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1330', '1', 'eng', 'modules', 'settings.licenseType', 'License Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1331', '1', 'eng', 'modules', 'settings.upgradeLicenseInfo', 'Simple, transparent pricing with everything you need to run your restaurant smoothly.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1332', '1', 'eng', 'modules', 'settings.pricing', 'Pricing', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1333', '1', 'eng', 'modules', 'settings.payNow', 'Pay Now', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1334', '1', 'eng', 'modules', 'settings.paymentSource', 'Payment Source', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1335', '1', 'eng', 'modules', 'settings.appName', 'App Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1336', '1', 'eng', 'modules', 'settings.paymentUpgradeHeading', 'Upgrade to Accept Payments Seamlessly', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1337', '1', 'eng', 'modules', 'settings.paymentUpgradeInfo', 'Take your restaurant\'s efficiency to the next level by integrating Payment Gateways. Upgrade now to offer your customers secure, fast, and convenient payment options like Stripe and Razorpay', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1338', '1', 'eng', 'modules', 'settings.themeUpgradeHeading', 'Upgrade for a Personalized Brand Experience', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1339', '1', 'eng', 'modules', 'settings.themeUpgradeInfo', 'Stand out with your unique brand identity! Upgrade now to customize your Theme Colors and add your Business Logo, creating a seamless experience that reflects your restaurant\'s personality.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1340', '1', 'eng', 'modules', 'settings.manageTranslations', 'Manage Translations', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1341', '1', 'eng', 'modules', 'settings.customerLoginRequired', 'Customer need to login to place order?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1342', '1', 'eng', 'modules', 'settings.customerName', 'Show Customer Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1343', '1', 'eng', 'modules', 'settings.customerAddress', 'Show Customer Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1344', '1', 'eng', 'modules', 'settings.tableNumber', 'Table no.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1345', '1', 'eng', 'modules', 'settings.paymentQrCode', 'Show QR code    ', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1346', '1', 'eng', 'modules', 'settings.waiter', 'Show Waiter Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1347', '1', 'eng', 'modules', 'settings.totalGuest', 'Show Total guest', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1348', '1', 'eng', 'modules', 'settings.restaurantTax', 'Show Restaurant Tax', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1349', '1', 'eng', 'modules', 'settings.noTaxFound', 'No Tax Found', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1350', '1', 'eng', 'modules', 'settings.selectEnvironment', 'Select Environment', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1351', '1', 'eng', 'modules', 'settings.enablePushNotification', 'Enable Push Notifications', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1352', '1', 'eng', 'modules', 'settings.pushNotificationSettings', 'Push Notification Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1353', '1', 'eng', 'modules', 'settings.aboutUsSettings', 'About Us', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1354', '1', 'eng', 'modules', 'settings.customerSiteSettings', 'Customer Site', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1355', '1', 'eng', 'modules', 'settings.receiptSetting', 'Receipt Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1356', '1', 'eng', 'modules', 'settings.allowCustomerDeliveryOrders', 'Allow Customer to place Delivery Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1357', '1', 'eng', 'modules', 'settings.allowCustomerOrders', 'Allow Customer to place Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1358', '1', 'eng', 'modules', 'settings.allowCustomerPickupOrders', 'Allow Customer to place Pickup Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1359', '1', 'eng', 'modules', 'settings.disableLandingSite', 'Disable Landing Site', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1360', '1', 'eng', 'modules', 'settings.disableLandingSiteHelp', 'Disable the landing site or set your custom landing site.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1361', '1', 'eng', 'modules', 'settings.disableLandingSiteHelpDescription', 'When enabled, this will disable the front website and redirect all visitors directly to the login page.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1362', '1', 'eng', 'modules', 'settings.landingSiteType', 'Landing Site Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1363', '1', 'eng', 'modules', 'settings.landingSiteUrl', 'Landing Site URL', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1364', '1', 'eng', 'modules', 'settings.theme', 'Theme', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1365', '1', 'eng', 'modules', 'settings.custom', 'Custom', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1366', '1', 'eng', 'modules', 'settings.billing', 'Billing', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1367', '1', 'eng', 'modules', 'settings.package', 'Package', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1368', '1', 'eng', 'modules', 'settings.isWaiterRequestEnabled', 'Enable Waiter Request', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1369', '1', 'eng', 'modules', 'settings.dineInOnlinePaymentRequired', 'Dine-in: Online payment required', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1370', '1', 'eng', 'modules', 'settings.deliveryOnlinePaymentRequired', 'Delivery: Online payment required', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1371', '1', 'eng', 'modules', 'settings.pickupOnlinePaymentRequired', 'Pickup: Online payment required', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1372', '1', 'eng', 'modules', 'settings.enablePaymentGateway', 'Please enable at least one payment gateway (e.g., Razorpay, Stripe, Flutterwave, PayPal, Paystack, Payfast, Xendit) to configure online payment options.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1373', '1', 'eng', 'modules', 'settings.generalSettingsUseInfo', 'Enabling this allows only online payments via the active gateway. If disabled, both online and cash payments are accepted with an active gateway.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1374', '1', 'eng', 'modules', 'settings.defaultReservationStatus', 'Default Table Reservation Status', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1375', '1', 'eng', 'modules', 'settings.reservationStatusConfirmed', 'Confirmed', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1376', '1', 'eng', 'modules', 'settings.reservationStatusCheckedIn', 'Checked In', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1377', '1', 'eng', 'modules', 'settings.reservationStatusCancelled', 'Cancelled', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1378', '1', 'eng', 'modules', 'settings.reservationStatusPending', 'Pending', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1379', '1', 'eng', 'modules', 'settings.reservationStatusNoShow', 'No Show', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1380', '1', 'eng', 'modules', 'settings.receipt', 'receipt Setting', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1381', '1', 'eng', 'modules', 'settings.facebook_link', 'Facebook Link', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1382', '1', 'eng', 'modules', 'settings.instagram_link', 'Instagram Link', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1383', '1', 'eng', 'modules', 'settings.twitter_link', 'Twitter Link', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1384', '1', 'eng', 'modules', 'settings.yelp_link', 'Yelp Link', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1385', '1', 'eng', 'modules', 'settings.tableRequiredDineIn', 'Table Required for Dine-In', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1386', '1', 'eng', 'modules', 'settings.allowDineIn', 'Allow Dine-In', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1387', '1', 'eng', 'modules', 'settings.defaultLanguage', 'Default Language', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1388', '1', 'eng', 'modules', 'settings.defaultCurrency', 'Default Currency', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1389', '1', 'eng', 'modules', 'settings.storageSettings', 'Storage Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1390', '1', 'eng', 'modules', 'settings.selectStorage', 'Select Storage', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1391', '1', 'eng', 'modules', 'settings.localStorageNote', 'Local storage is the default storage option. It stores files on the server\'s local disk.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1392', '1', 'eng', 'modules', 'settings.storageSuggestion', '<b>Recommendation:</b> Consider using <a href=\"https://digitalocean.pxf.io/froiden\" class=\"underline\" target=\"_blank\">DigitalOcean Spaces</a>, <a href=\"https://aws.amazon.com/s3\" class=\"underline\" target=\"_blank\">AWS S3</a>, <a href=\"https://wasabi.com\" class=\"underline\" target=\"_blank\">Wasabi</a> or <a href=\"https://min.io/\" class=\"underline\" target=\"_blank\">MinIO</a> Storage for an additional layer of security', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1393', '1', 'eng', 'modules', 'settings.digitaloceanAccessKey', 'DigitalOcean Access Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1394', '1', 'eng', 'modules', 'settings.digitaloceanSecretKey', 'DigitalOcean Secret Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1395', '1', 'eng', 'modules', 'settings.digitaloceanBucket', 'DigitalOcean Bucket', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1396', '1', 'eng', 'modules', 'settings.digitaloceanRegion', 'DigitalOcean Region', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1397', '1', 'eng', 'modules', 'settings.minioAccessKey', 'Minio Access Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1398', '1', 'eng', 'modules', 'settings.minioSecretKey', 'Minio Secret Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1399', '1', 'eng', 'modules', 'settings.minioBucket', 'Minio Bucket', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1400', '1', 'eng', 'modules', 'settings.minioRegion', 'Minio Region', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1401', '1', 'eng', 'modules', 'settings.minioEndpoint', 'Minio Endpoint', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1402', '1', 'eng', 'modules', 'settings.wasabiAccessKey', 'Wasabi Access Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1403', '1', 'eng', 'modules', 'settings.wasabiSecretKey', 'Wasabi Secret Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1404', '1', 'eng', 'modules', 'settings.wasabiBucket', 'Wasabi Bucket', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1405', '1', 'eng', 'modules', 'settings.wasabiRegion', 'Wasabi Region', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1406', '1', 'eng', 'modules', 'settings.awsAccessKey', 'AWS Key ID', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1407', '1', 'eng', 'modules', 'settings.awsSecretKey', 'AWS Access Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1408', '1', 'eng', 'modules', 'settings.awsBucket', 'AWS Bucket', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1409', '1', 'eng', 'modules', 'settings.awsRegion', 'AWS Region', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1410', '1', 'eng', 'modules', 'settings.testStorage', 'Test Storage', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1411', '1', 'eng', 'modules', 'settings.testStorageFile', 'Upload file to test if it gets uploaded to bucket', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1412', '1', 'eng', 'modules', 'settings.moveFilesToCloud', 'Move Files to Cloud', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1413', '1', 'eng', 'modules', 'settings.local', 'Local', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1414', '1', 'eng', 'modules', 'settings.digitalocean', 'DigitalOcean', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1415', '1', 'eng', 'modules', 'settings.aws_s3', 'AWS S3', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1416', '1', 'eng', 'modules', 'settings.wasabi', 'Wasabi', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1417', '1', 'eng', 'modules', 'settings.minio', 'MinIO', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1418', '1', 'eng', 'modules', 'settings.currencyFormat', 'Currency Format', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1419', '1', 'eng', 'modules', 'settings.currencyPosition', 'Currency Position', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1420', '1', 'eng', 'modules', 'settings.thousandSeparator', 'Thousand Separator', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1421', '1', 'eng', 'modules', 'settings.decimalSeparator', 'Decimal Separator', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1422', '1', 'eng', 'modules', 'settings.numberOfdecimals', 'Number of Decimals', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1423', '1', 'eng', 'modules', 'settings.left', 'Left', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1424', '1', 'eng', 'modules', 'settings.right', 'Right', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1425', '1', 'eng', 'modules', 'settings.leftWithSpace', 'Left with Space', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1426', '1', 'eng', 'modules', 'settings.rightWithSpace', 'Right with Space', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1427', '1', 'eng', 'modules', 'settings.showLogoText', 'Show Restaurant Name with Logo', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1428', '1', 'eng', 'modules', 'settings.socialMediaLinks', 'Social Media Links', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1429', '1', 'eng', 'modules', 'settings.facebook', 'Facebook', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1430', '1', 'eng', 'modules', 'settings.instagram', 'Instagram', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1431', '1', 'eng', 'modules', 'settings.twitter', 'Twitter', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1432', '1', 'eng', 'modules', 'settings.facebookPlaceHolder', 'Enter your Facebook URL', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1433', '1', 'eng', 'modules', 'settings.instagramPlaceHolder', 'Enter your Instagram URL', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1434', '1', 'eng', 'modules', 'settings.twitterPlaceHolder', 'Enter your Twitter URL', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1435', '1', 'eng', 'modules', 'settings.tableRequiredDineInDescription', 'Enable this to require customers to select a table for dine-in orders.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1436', '1', 'eng', 'modules', 'settings.defaultReservationStatusDescription', 'Select the default status for new reservations.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1437', '1', 'eng', 'modules', 'settings.allowCustomerPickupOrdersDescription', 'Enable this to allow customers to place pickup orders.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1438', '1', 'eng', 'modules', 'settings.allowCustomerDeliveryOrdersDescription', 'Enable this to allow customers to place delivery orders.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1439', '1', 'eng', 'modules', 'settings.allowCustomerDineInOrdersDescription', 'Enable this to allow customers to place dine-in orders.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1440', '1', 'eng', 'modules', 'settings.allowCustomerOrdersDescription', 'Enable this to allow customers to place orders.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1441', '1', 'eng', 'modules', 'settings.allowDineInDescription', 'Enable this to allow dine-in orders.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1442', '1', 'eng', 'modules', 'settings.customerLoginRequiredDescription', 'Enable this to require customers to login before placing orders.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1443', '1', 'eng', 'modules', 'settings.isWaiterRequestEnabledDescription', 'Enable this to allow customers to call waiters for service.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1444', '1', 'eng', 'modules', 'settings.orderSettings', 'Order Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1445', '1', 'eng', 'modules', 'settings.orderSettingsDescription', 'Configure settings related to customer orders.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1446', '1', 'eng', 'modules', 'settings.dineInSettings', 'Dine-in Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1447', '1', 'eng', 'modules', 'settings.customerSiteSettingsDescription', 'Configure settings related to the customer site.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1448', '1', 'eng', 'modules', 'settings.qrCodeImage', 'Upload QR Code Image', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1449', '1', 'eng', 'modules', 'settings.qrCodeRequirements', 'Upload a QR code image for payment. The image should be a clear, high-quality image of the QR code.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1450', '1', 'eng', 'modules', 'settings.qrPaymentDescription', 'Enable this to allow customers to pay via QR code.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1451', '1', 'eng', 'modules', 'settings.uploadQrCode', 'Upload QR Code', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1452', '1', 'eng', 'modules', 'settings.logoDescription', 'Upload a logo for your restaurant.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1453', '1', 'eng', 'modules', 'settings.showLogoTextDescription', 'Enable this to show the restaurant name with the logo.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1454', '1', 'eng', 'modules', 'settings.customerInformation', 'Customer Information', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1455', '1', 'eng', 'modules', 'settings.receiptPreview', 'Receipt Preview', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1456', '1', 'eng', 'modules', 'settings.previewReceipt', 'Preview Receipt', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1457', '1', 'eng', 'modules', 'settings.orderDetails', 'Order Details', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1458', '1', 'eng', 'modules', 'settings.cronJobSetting', 'Cron Job Setting', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1459', '1', 'eng', 'modules', 'settings.customModules', 'Custom Modules', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1460', '1', 'eng', 'modules', 'settings.installCustomModule', 'Install Custom Module', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1461', '1', 'eng', 'modules', 'settings.enablePayViaCash', 'Pay Via Cash', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1462', '1', 'eng', 'modules', 'settings.seo', 'SEO', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1463', '1', 'eng', 'modules', 'settings.metaKeyword', 'Meta Keyword', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1464', '1', 'eng', 'modules', 'settings.metaDescription', 'Meta Description', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1465', '1', 'eng', 'modules', 'settings.offlinePaymentDescription', 'Enable this to allow customers to pay via offline payment methods.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1466', '1', 'eng', 'modules', 'settings.offlinePaymentDetailsDescription', 'Enable this to allow customers to pay via offline payment methods.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1467', '1', 'eng', 'modules', 'settings.offlinePaymentDetails', 'Offline Payment Details', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1468', '1', 'eng', 'modules', 'settings.cashPaymentDescription', 'Enable this to allow customers to pay via cash payment methods.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1469', '1', 'eng', 'modules', 'settings.restaurantRequiresApproval', 'Restaurant Requires Approval', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1470', '1', 'eng', 'modules', 'settings.restaurantRequiresApprovalInfo', 'Enable this to require admin approval for new restaurant registrations.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1471', '1', 'eng', 'modules', 'settings.themeColorDescription', 'Select the theme color for your restaurant.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1472', '1', 'eng', 'modules', 'settings.upload_fav_icon_android_chrome_192', 'Upload Favicon for Android Chrome (192x192)px', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1473', '1', 'eng', 'modules', 'settings.upload_fav_icon_android_chrome_512', 'Upload Favicon for Android Chrome (512x512)px', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1474', '1', 'eng', 'modules', 'settings.upload_fav_icon_apple_touch_icon', 'Upload Favicon for Apple Touch Icon', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1475', '1', 'eng', 'modules', 'settings.upload_favicon_16', 'Upload Favicon (16x16)px', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1476', '1', 'eng', 'modules', 'settings.upload_favicon_32', 'Upload Favicon (32x32)px', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1477', '1', 'eng', 'modules', 'settings.favicon', 'Upload Favicon', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1478', '1', 'eng', 'modules', 'settings.editCharge', 'Edit Charge', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1479', '1', 'eng', 'modules', 'settings.addCharge', 'Add Charge', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1480', '1', 'eng', 'modules', 'settings.chargeName', 'Charge Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1481', '1', 'eng', 'modules', 'settings.chargeType', 'Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1482', '1', 'eng', 'modules', 'settings.percent', 'Percent', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1483', '1', 'eng', 'modules', 'settings.fixed', 'Fixed', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1484', '1', 'eng', 'modules', 'settings.rate', 'Rate', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1485', '1', 'eng', 'modules', 'settings.orderType', 'Order Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1486', '1', 'eng', 'modules', 'settings.deleteCharge', 'Delete Charge', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1487', '1', 'eng', 'modules', 'settings.deleteChargeMessage', 'Are you sure you want to delete the charge?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1488', '1', 'eng', 'modules', 'settings.hideTodayOrders', 'Hide Today\'s Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1489', '1', 'eng', 'modules', 'settings.hideNewReservation', 'Hide New Reservation', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1490', '1', 'eng', 'modules', 'settings.hideNewWaiterRequest', 'Hide New Waiter Request', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1491', '1', 'eng', 'modules', 'settings.hideTopNav', 'Hide Top Navigation', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1492', '1', 'eng', 'modules', 'settings.hideTodayOrdersDescription', 'Enable this to hide today\'s orders widget from top navigation.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1493', '1', 'eng', 'modules', 'settings.hideNewReservationDescription', 'Enable this to hide new reservation widget from top navigation.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1494', '1', 'eng', 'modules', 'settings.hideNewWaiterRequestDescription', 'Enable this to hide new waiter request widget from top navigation.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1495', '1', 'eng', 'modules', 'settings.charges', 'Additional Charges', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1496', '1', 'eng', 'modules', 'settings.onDesktop', 'On Desktop', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1497', '1', 'eng', 'modules', 'settings.onMobile', 'On Mobile', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1498', '1', 'eng', 'modules', 'settings.openViaQrCode', 'Only When Open via QR Code', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1499', '1', 'eng', 'modules', 'settings.callWaiterSettings', 'Call Waiter Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1500', '1', 'eng', 'modules', 'settings.onDesktopDescription', 'Enable this to allow customers to call waiters on desktop.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1501', '1', 'eng', 'modules', 'settings.onMobileDescription', 'Enable this to allow customers to call waiters on mobile.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1502', '1', 'eng', 'modules', 'settings.openViaQrCodeDescription', 'Enable this to allow customers to call waiters only when they open the app via QR code.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1503', '1', 'eng', 'modules', 'settings.favicons', 'Favicons', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1504', '1', 'eng', 'modules', 'settings.faviconsDescription', 'Upload a favicon for your site.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1505', '1', 'eng', 'modules', 'settings.generateFavicon', 'Generate Favicon', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1506', '1', 'eng', 'modules', 'settings.siteWebManifest', 'Site Web Manifest', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1507', '1', 'eng', 'modules', 'settings.paymentDetails', 'Payment Details', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1508', '1', 'eng', 'modules', 'settings.paymentQrImage', 'Payment QR Image', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1509', '1', 'eng', 'modules', 'settings.uploadPaymentQrCode', 'Upload Payment QR Code', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1510', '1', 'eng', 'modules', 'settings.showPaymetQrCode', 'Show Payment QR Code', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1511', '1', 'eng', 'modules', 'settings.payFromYourPhone', 'PAY FROM YOUR PHONE', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1512', '1', 'eng', 'modules', 'settings.scanQrCode', 'Scan the QR code to pay Your Bill ', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1513', '1', 'eng', 'modules', 'settings.isChargeEnabled', 'Apply Charge', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1514', '1', 'eng', 'modules', 'settings.isChargeEnabledDescription', 'Check to enable this charge.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1515', '1', 'eng', 'modules', 'settings.enableTipShop', 'Enable Tip Customer Site', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1516', '1', 'eng', 'modules', 'settings.enableTipShopDescription', 'Enable this to allow customers to add tips to their orders.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1517', '1', 'eng', 'modules', 'settings.enableTipPos', 'Enable Tip POS', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1518', '1', 'eng', 'modules', 'settings.enableTipPosDescription', 'Enable this to allow adding tips to their orders in POS.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1519', '1', 'eng', 'modules', 'settings.pwaSettings', 'PWA Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1520', '1', 'eng', 'modules', 'settings.enbalePwaApp', 'Enable PWA App', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1521', '1', 'eng', 'modules', 'settings.enablePwadescription', 'Enable this to allow customers to install your app on their devices.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1522', '1', 'eng', 'modules', 'settings.metaTitle', 'Meta Title', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1523', '1', 'eng', 'modules', 'settings.addMoreWebPage', 'Add More Web Page', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1524', '1', 'eng', 'modules', 'settings.addMoreWebPageHelp', 'Add a Dynamic web page to your site.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1525', '1', 'eng', 'modules', 'settings.menuName', 'Menu Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1526', '1', 'eng', 'modules', 'settings.menuSlug', 'Menu Slug', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1527', '1', 'eng', 'modules', 'settings.menuContent', 'Menu Content', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1528', '1', 'eng', 'modules', 'settings.showMoreWebPage', 'Show More Web Page', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1529', '1', 'eng', 'modules', 'settings.addDyanamicMenu', 'Add Dynamic Menu', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1530', '1', 'eng', 'modules', 'settings.deleteDyanamicMenu', 'Delete Dynamic Menu', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1531', '1', 'eng', 'modules', 'settings.editDynamicMenu', 'Edit Dynamic Menu', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1532', '1', 'eng', 'modules', 'settings.addDynamicMenu', 'Add Dynamic Menu', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1533', '1', 'eng', 'modules', 'settings.isActive', 'Active', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1534', '1', 'eng', 'modules', 'settings.showPaymentDetails', 'Show Payment Details', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1535', '1', 'eng', 'modules', 'settings.autoConfirmOrders', 'Auto Confirm Order Status', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1536', '1', 'eng', 'modules', 'settings.autoConfirmOrdersDescription', 'Enable this to automatically confirm orders status and send to KOT.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1537', '1', 'eng', 'modules', 'settings.printerSetting', 'Printer Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1538', '1', 'eng', 'modules', 'settings.printerSettingDescription', 'Configure printer settings for your restaurant.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1539', '1', 'eng', 'modules', 'settings.addPrinter', 'Add Printer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1540', '1', 'eng', 'modules', 'settings.editPrinter', 'Edit Printer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1541', '1', 'eng', 'modules', 'settings.deletePrinter', 'Delete Printer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1542', '1', 'eng', 'modules', 'settings.printerName', 'Printer Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1543', '1', 'eng', 'modules', 'settings.printerType', 'Printer Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1544', '1', 'eng', 'modules', 'settings.printerStatus', 'Printer Status', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1545', '1', 'eng', 'modules', 'settings.headerPage', 'Header Page', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1546', '1', 'eng', 'modules', 'settings.headerTitle', 'Header Title', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1547', '1', 'eng', 'modules', 'settings.headerDescription', 'Header Description', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1548', '1', 'eng', 'modules', 'settings.headerImage', 'Header Image', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1549', '1', 'eng', 'modules', 'settings.preview', 'Preview', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1550', '1', 'eng', 'modules', 'settings.featureWithImage', 'Feature With Image', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1551', '1', 'eng', 'modules', 'settings.addFeature', 'Add Feature', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1552', '1', 'eng', 'modules', 'settings.editFeature', 'Edit Feature', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1553', '1', 'eng', 'modules', 'settings.deleteFeature', 'Delete Feature', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1554', '1', 'eng', 'modules', 'settings.featureTitle', 'Feature Title', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1555', '1', 'eng', 'modules', 'settings.featureDescription', 'Feature Description', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1556', '1', 'eng', 'modules', 'settings.featureImage', 'Feature Image', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1557', '1', 'eng', 'modules', 'settings.lanuage', 'Language', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1558', '1', 'eng', 'modules', 'settings.selectLanguage', 'Select Language', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1559', '1', 'eng', 'modules', 'settings.feature', 'Feature', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1560', '1', 'eng', 'modules', 'settings.featureIcon', 'Feature Icon', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1561', '1', 'eng', 'modules', 'settings.featureHeading', 'Feature Heading', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1562', '1', 'eng', 'modules', 'settings.addFeatureWithicon', 'Add Feature With Icon', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1563', '1', 'eng', 'modules', 'settings.editFeatureWithicon', 'Edit Feature With Icon', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1564', '1', 'eng', 'modules', 'settings.language', 'Language', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1565', '1', 'eng', 'modules', 'settings.featureWithIcon', 'Feature With Icon', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1566', '1', 'eng', 'modules', 'settings.reviewSetting', 'Review setting', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1567', '1', 'eng', 'modules', 'settings.addReview', 'Add Review', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1568', '1', 'eng', 'modules', 'settings.editReview', 'Edit Review', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1569', '1', 'eng', 'modules', 'settings.deleteReview', 'Delete Review', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1570', '1', 'eng', 'modules', 'settings.reviewerName', 'Reviewer Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1571', '1', 'eng', 'modules', 'settings.reviewerDesignation', 'Reviewer Designation', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1572', '1', 'eng', 'modules', 'settings.reviews', 'Reviews', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1573', '1', 'eng', 'modules', 'settings.noReviews', 'No Reviews', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1574', '1', 'eng', 'modules', 'settings.faqSetting', 'FAQ setting', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1575', '1', 'eng', 'modules', 'settings.addFaq', 'Add FAQ', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1576', '1', 'eng', 'modules', 'settings.editFaq', 'Edit FAQ', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1577', '1', 'eng', 'modules', 'settings.deleteFaq', 'Delete FAQ', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1578', '1', 'eng', 'modules', 'settings.title', 'Title', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1579', '1', 'eng', 'modules', 'settings.description', 'Description', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1580', '1', 'eng', 'modules', 'settings.question', 'Question', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1581', '1', 'eng', 'modules', 'settings.answer', 'Answer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1582', '1', 'eng', 'modules', 'settings.contactSetting', 'Contact setting', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1583', '1', 'eng', 'modules', 'settings.contact', 'Contact', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1584', '1', 'eng', 'modules', 'settings.contactCompany', 'Contact Company', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1585', '1', 'eng', 'modules', 'settings.contactImage', 'Contact Image', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1586', '1', 'eng', 'modules', 'settings.addContact', 'Add Contact', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1587', '1', 'eng', 'modules', 'settings.editContact', 'Edit Contact', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1588', '1', 'eng', 'modules', 'settings.deleteContact', 'Delete Contact', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1589', '1', 'eng', 'modules', 'settings.contactName', 'Contact Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1590', '1', 'eng', 'modules', 'settings.email', 'Email', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1591', '1', 'eng', 'modules', 'settings.address', 'Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1592', '1', 'eng', 'modules', 'settings.footerSetting', 'Footer setting', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1593', '1', 'eng', 'modules', 'settings.footerCopyrightText', 'Footer Copyright Text', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1594', '1', 'eng', 'modules', 'settings.addFeatureWithIcon', 'Add Feature With Icon', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1595', '1', 'eng', 'modules', 'settings.faq', 'FAQ', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1596', '1', 'eng', 'modules', 'settings.noFaq', 'No FAQ', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1597', '1', 'eng', 'modules', 'settings.priceSetting', 'Price setting', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1598', '1', 'eng', 'modules', 'settings.priceTitle', 'Price Title', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1599', '1', 'eng', 'modules', 'settings.priceDescription', 'Price Description', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1600', '1', 'eng', 'modules', 'settings.staticLandingPage', 'Static Landing Page', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1601', '1', 'eng', 'modules', 'settings.dynamicLandingPage', 'Dynamic Landing Page', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1602', '1', 'eng', 'modules', 'settings.flutterwaveSettings', 'Flutterwave Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1603', '1', 'eng', 'modules', 'settings.flutterwaveKey', 'Flutterwave Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1604', '1', 'eng', 'modules', 'settings.flutterwaveSecret', 'Flutterwave Secret', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1605', '1', 'eng', 'modules', 'settings.flutterwaveEncryptionKey', 'Flutterwave Encryption Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1606', '1', 'eng', 'modules', 'settings.flutterwaveWebhookHash', 'Flutterwave Webhook Secret Hash', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1607', '1', 'eng', 'modules', 'settings.testFlutterwaveKey', 'Test Flutterwave Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1608', '1', 'eng', 'modules', 'settings.testFlutterwaveSecret', 'Test Flutterwave Secret', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1609', '1', 'eng', 'modules', 'settings.testFlutterwaveEncryptionKey', 'Test Flutterwave Encryption Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1610', '1', 'eng', 'modules', 'settings.testFlutterwaveWebhookHash', 'Test Flutterwave Webhook Secret Hash', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1611', '1', 'eng', 'modules', 'settings.webhookUrl', 'Webhook URL', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1612', '1', 'eng', 'modules', 'settings.copyWebhookUrl', 'Copy', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1613', '1', 'eng', 'modules', 'settings.copied', 'Copied!', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1614', '1', 'eng', 'modules', 'settings.save', 'Save', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1615', '1', 'eng', 'modules', 'settings.razorpayKey', 'Razorpay KEY', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1616', '1', 'eng', 'modules', 'settings.razorpaySecret', 'Razorpay SECRET', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1617', '1', 'eng', 'modules', 'settings.razorpayWebhookKey', 'Razorpay Webhook Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1618', '1', 'eng', 'modules', 'settings.testRazorpayKey', 'Test Razorpay KEY', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1619', '1', 'eng', 'modules', 'settings.testRazorpaySecret', 'Test Razorpay SECRET', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1620', '1', 'eng', 'modules', 'settings.testRazorpayWebhookKey', 'Test Razorpay Webhook Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1621', '1', 'eng', 'modules', 'settings.stripeKey', 'Stripe KEY', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1622', '1', 'eng', 'modules', 'settings.stripeSecret', 'Stripe SECRET', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1623', '1', 'eng', 'modules', 'settings.stripeWebhookKey', 'Stripe Webhook Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1624', '1', 'eng', 'modules', 'settings.getStripeCredentials', 'Get Stripe Credentials', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1625', '1', 'eng', 'modules', 'settings.getStripeTestCredentials', 'Get Stripe Test Credentials', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1626', '1', 'eng', 'modules', 'settings.testStripeKey', 'Test Stripe KEY', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1627', '1', 'eng', 'modules', 'settings.testStripeSecret', 'Test Stripe SECRET', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1628', '1', 'eng', 'modules', 'settings.testStripeWebhookKey', 'Test Stripe Webhook Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1629', '1', 'eng', 'modules', 'settings.flutterwavePublicKey', 'Flutterwave Public Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1630', '1', 'eng', 'modules', 'settings.flutterwaveSecretKey', 'Flutterwave Secret Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1631', '1', 'eng', 'modules', 'settings.deliverySettings', 'Delivery Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1632', '1', 'eng', 'modules', 'settings.getGoogleMapApiKeyHelp', 'To get a Google Maps API key, you need to create a project in the Google Cloud Console and enable the Maps JavaScript API.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1633', '1', 'eng', 'modules', 'settings.learnMore', 'Learn more', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1634', '1', 'eng', 'modules', 'settings.enablePayPal', 'Enable PayPal', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1635', '1', 'eng', 'modules', 'settings.enablePayfast', 'Enable Payfast', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1636', '1', 'eng', 'modules', 'settings.branchPhone', 'Branch Phone ', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1637', '1', 'eng', 'modules', 'settings.sessionDriver', 'Session Driver', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1638', '1', 'eng', 'modules', 'settings.sessionDriverFile', 'File', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1639', '1', 'eng', 'modules', 'settings.sessionDriverDatabase', 'Database', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1640', '1', 'eng', 'modules', 'settings.paypalSandboxClientId', 'PayPal Sandbox Client ID', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1641', '1', 'eng', 'modules', 'settings.paypalSandboxSecret', 'PayPal Sandbox Secret', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1642', '1', 'eng', 'modules', 'settings.paypalLiveClientId', 'PayPal Live Client ID', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1643', '1', 'eng', 'modules', 'settings.paypalLiveSecret', 'PayPal Live Secret', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1644', '1', 'eng', 'modules', 'settings.xenditTestPublicKey', 'Xendit Test Public Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1645', '1', 'eng', 'modules', 'settings.xenditTestSecretKey', 'Xendit Test Secret Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1646', '1', 'eng', 'modules', 'settings.xenditLivePublicKey', 'Xendit Live Public Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1647', '1', 'eng', 'modules', 'settings.xenditLiveSecretKey', 'Xendit Live Secret Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1648', '1', 'eng', 'modules', 'settings.xenditTestWebhookToken', 'Xendit Test Webhook Token', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1649', '1', 'eng', 'modules', 'settings.xenditLiveWebhookToken', 'Xendit Live Webhook Token', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1650', '1', 'eng', 'modules', 'settings.kotSettings', 'KOT Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1651', '1', 'eng', 'modules', 'settings.kotStatusesPending', 'Pending', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1652', '1', 'eng', 'modules', 'settings.kotStatusesCooking', 'Cooking', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1653', '1', 'eng', 'modules', 'settings.enableItemLevelStatus', 'Enable Item Level Status', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1654', '1', 'eng', 'modules', 'settings.enableItemLevelStatusDescription', 'Enable this to allow statuses to be set at the item level.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1655', '1', 'eng', 'modules', 'settings.defaultKotStatus', 'Default KOT Status', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1656', '1', 'eng', 'modules', 'settings.defaultKotStatusDescription', 'Set the default status for the KOT.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1657', '1', 'eng', 'modules', 'settings.kotStatusesPendingDescription', 'Initial status when KOT is created and waiting to be processed', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1658', '1', 'eng', 'modules', 'settings.kotStatusesCookingDescription', 'Status when kitchen staff is preparing the order', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1659', '1', 'eng', 'modules', 'settings.kotStatusesReadyDescription', 'Status when the order is completed and ready for serving', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1660', '1', 'eng', 'modules', 'settings.kotStatusesServedDescription', 'Status when the order is served to the customer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1661', '1', 'eng', 'modules', 'settings.kotStatusesCancelledDescription', 'Status when the order is cancelled', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1662', '1', 'eng', 'modules', 'settings.cloneOptions', 'Clone Options', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1663', '1', 'eng', 'modules', 'settings.getDatafrom', 'Import Data from', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1664', '1', 'eng', 'modules', 'settings.menu', 'Menu', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1665', '1', 'eng', 'modules', 'settings.ItemCategories', 'Item Categories', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1666', '1', 'eng', 'modules', 'settings.menuItems', 'Menu Items', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1667', '1', 'eng', 'modules', 'settings.cloneSettings', 'Clone Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1668', '1', 'eng', 'modules', 'settings.phone', 'Phone', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1669', '1', 'eng', 'modules', 'settings.selectPhoneCode', 'Select Phone Code', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1670', '1', 'eng', 'modules', 'settings.searchPhoneCode', 'Search phone code...', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1671', '1', 'eng', 'modules', 'settings.adminSettings', 'Enable payment gateways to show in restaurant panel', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1672', '1', 'eng', 'modules', 'settings.allowCustomOrderTypeOptions', 'Allow Custom Order Type Options', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1673', '1', 'eng', 'modules', 'settings.allowCustomOrderTypeOptionsDescription', 'Enable this to allow customers to select custom order type options.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1674', '1', 'eng', 'modules', 'settings.customOrderTypes', 'Custom Order Types', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1675', '1', 'eng', 'modules', 'settings.customOrderTypesDescription', 'Manage custom order types that customers can choose from.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1676', '1', 'eng', 'modules', 'settings.addFirstDeliveryType', 'Add First Delivery Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1677', '1', 'eng', 'modules', 'settings.deleteDeliveryType', 'Delete Delivery Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1678', '1', 'eng', 'modules', 'settings.deleteDeliveryTypeConfirm', 'Are you sure you want to delete this delivery type?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1679', '1', 'eng', 'modules', 'settings.deleteOrderType', 'Delete Order Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1680', '1', 'eng', 'modules', 'settings.deleteOrderTypeConfirm', 'Are you sure you want to delete this order type?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1681', '1', 'eng', 'modules', 'settings.noOrderTypesFound', 'Enable custom order type options to add order types.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1682', '1', 'eng', 'modules', 'settings.orderTypeName', 'Order Type Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1683', '1', 'eng', 'modules', 'settings.enterOrderTypeName', 'Enter Order Type Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1684', '1', 'eng', 'modules', 'settings.orderTypeDescription', 'Order Type Description', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1685', '1', 'eng', 'modules', 'settings.dineIn', 'Dine In', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1686', '1', 'eng', 'modules', 'settings.cannotDeleteDefaultOrderType', 'Default order types cannot be deleted.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1687', '1', 'eng', 'modules', 'settings.pickup', 'Pickup', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1688', '1', 'eng', 'modules', 'settings.delivery', 'Delivery', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1689', '1', 'eng', 'modules', 'settings.isDelivery', 'Is Delivery', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1690', '1', 'eng', 'modules', 'settings.defaultOrderTypeWarning', 'This is a default order type and cannot be modified.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1691', '1', 'eng', 'modules', 'settings.cannotModifyDefaultOrderType', 'Cannot modify default order type.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1692', '1', 'eng', 'modules', 'settings.cannotModifyDefaultOrderTypeName', 'Cannot modify default order type name.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1693', '1', 'eng', 'modules', 'settings.orderTypeNameRequired', 'Order type name is required.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1694', '1', 'eng', 'modules', 'settings.orderTypeRequired', 'Order type is required.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1695', '1', 'eng', 'modules', 'settings.invalidOrderType', 'Invalid order type selected.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1696', '1', 'eng', 'modules', 'settings.enabled', 'Enabled', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1697', '1', 'eng', 'modules', 'settings.kotCancelReasons', 'Cancel Reasons', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1698', '1', 'eng', 'modules', 'settings.addKotCancelReason', 'Add Cancel Reason', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1699', '1', 'eng', 'modules', 'settings.reason', 'Reason', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1700', '1', 'eng', 'modules', 'settings.enterCancelReason', 'Additional Comment (Optional)', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1701', '1', 'eng', 'modules', 'settings.cancelSettings', 'Cancellation Reasons', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1702', '1', 'eng', 'modules', 'settings.cancellationTypes', 'Cancellation Types', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1703', '1', 'eng', 'modules', 'settings.deleteCancelReasonWarning', 'Are you sure you want to delete this cancellation reason?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1704', '1', 'eng', 'modules', 'settings.deleteReason', 'Delete Reason', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1705', '1', 'eng', 'modules', 'settings.editKotCancelReason', 'Edit Cancel Reason', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1706', '1', 'eng', 'modules', 'settings.default', 'Default', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1707', '1', 'eng', 'modules', 'settings.select', 'Select', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1708', '1', 'eng', 'modules', 'settings.selectCancelReason', 'Select Cancel Reason', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1709', '1', 'eng', 'modules', 'settings.cancelReasonRequired', 'Please select a cancellation reason or provide a custom reason.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1710', '1', 'eng', 'modules', 'settings.deliveryType', 'Delivery Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1711', '1', 'eng', 'modules', 'settings.enterDeliveryTypeName', 'Enter Delivery Type Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1712', '1', 'eng', 'modules', 'settings.deliveryTypeDescription', 'Delivery Type Description', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1713', '1', 'eng', 'modules', 'settings.enterDeliveryTypeDescription', 'Enter Delivery Type Description', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1714', '1', 'eng', 'modules', 'settings.deliveryTypeEnabled', 'Delivery Type Enabled', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1715', '1', 'eng', 'modules', 'settings.enterDeliveryTypeEnabled', 'Enter Delivery Type Enabled', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1716', '1', 'eng', 'modules', 'settings.deliveryTypeName', 'Delivery Type Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1717', '1', 'eng', 'modules', 'settings.customOrderType', 'Custom Order Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1718', '1', 'eng', 'modules', 'settings.phoneNumber', 'Phone Number', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1719', '1', 'eng', 'modules', 'settings.customerSiteLanguage', 'Customer Site Language', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1720', '1', 'eng', 'modules', 'settings.pickupDaysRange', 'Pickup Days Range', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1721', '1', 'eng', 'modules', 'settings.showOrderType', 'Show Order Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1722', '1', 'eng', 'modules', 'settings.taxMode', 'Tax Mode', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1723', '1', 'eng', 'modules', 'settings.taxModeOrder', 'Order-Level Tax', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1724', '1', 'eng', 'modules', 'settings.taxModeOrderHelp', 'Apply tax on the total order amount.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1725', '1', 'eng', 'modules', 'settings.taxModeItem', 'Item-Level Tax', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1726', '1', 'eng', 'modules', 'settings.taxModeItemHelp', 'Apply different tax rates to each item.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1727', '1', 'eng', 'modules', 'settings.defaultItemTaxType', 'Item Tax Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1728', '1', 'eng', 'modules', 'settings.taxInclusive', 'Inclusive Tax', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1729', '1', 'eng', 'modules', 'settings.taxExclusive', 'Exclusive Tax', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1730', '1', 'eng', 'modules', 'settings.taxInclusiveHelp', 'If enabled, item prices include tax. Otherwise, tax is added at checkout.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1731', '1', 'eng', 'modules', 'settings.taxSettingsDescription', 'Manage how taxes are applied to orders and items.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1732', '1', 'eng', 'modules', 'settings.taxSetting', 'Tax Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1733', '1', 'eng', 'modules', 'settings.taxTable', 'All Taxes', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1734', '1', 'eng', 'modules', 'settings.orderSetting', 'Order Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1735', '1', 'eng', 'modules', 'settings.orderSettingsHelp', 'Configure order settings to manage how orders are processed.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1736', '1', 'eng', 'modules', 'settings.assignAllTaxesToItems', 'Assign all taxes to items', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1737', '1', 'eng', 'modules', 'settings.assignAllTaxesToItemsDescription', 'Note: If enabled, taxes will be applied to items that do not already have any. Items with existing taxes will remain unchanged.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1738', '1', 'eng', 'modules', 'settings.showVeg', 'Show Veg', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1739', '1', 'eng', 'modules', 'settings.showVegDescription', 'Show veg items in the menu.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1740', '1', 'eng', 'modules', 'settings.showHalal', 'Show Halal', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1741', '1', 'eng', 'modules', 'settings.showHalalDescription', 'Show halal items in the menu.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1742', '1', 'eng', 'modules', 'settings.customizeHeader', 'Customize Header', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1743', '1', 'eng', 'modules', 'settings.headerCustomization', 'Header Customization', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1744', '1', 'eng', 'modules', 'settings.headerType', 'Header Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1745', '1', 'eng', 'modules', 'settings.headerTypeDescription', 'Choose whether to display text or images in the cart page header.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1746', '1', 'eng', 'modules', 'settings.textHeader', 'Text Header', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1747', '1', 'eng', 'modules', 'settings.imageHeader', 'Image Header', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1748', '1', 'eng', 'modules', 'settings.headerText', 'Header Text', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1749', '1', 'eng', 'modules', 'settings.headerTextDescription', 'Enter the text to display in the cart page header.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1750', '1', 'eng', 'modules', 'settings.headerImages', 'Header Images', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1751', '1', 'eng', 'modules', 'settings.headerImagesDescription', 'Upload multiple images to create a slider in the cart page header.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1752', '1', 'eng', 'modules', 'settings.existingImages', 'Existing Images', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1753', '1', 'eng', 'modules', 'settings.noPhoneCodesFound', 'No phone codes found', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1754', '1', 'eng', 'modules', 'settings.superAdminPhoneNumber', 'Super Admin Phone Number', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1755', '1', 'eng', 'modules', 'settings.tableSettings', 'Table Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1756', '1', 'eng', 'modules', 'settings.tableLockTimeoutMinutes', 'Table Lock Timeout (Minutes)', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1757', '1', 'eng', 'modules', 'settings.tableLockTimeoutMinutesDescription', 'Set how long a table remains locked when a staff member is working on it.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1758', '1', 'eng', 'modules', 'settings.privacyPolicyLink', 'Legal Consent Page Link (Privacy Policy)', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1759', '1', 'eng', 'modules', 'settings.privacyPolicyLinkHelp', 'Enter the URL to your legal consent page. This will be used for legal compliance and user consent.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1760', '1', 'eng', 'modules', 'settings.showPrivacyConsentCheckbox', 'Legal Consent Checkbox', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1761', '1', 'eng', 'modules', 'settings.showPrivacyConsentCheckboxHelp', 'Enable this to show a legal consent checkbox on the signup page. When enabled, you must provide a legal link.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1762', '1', 'eng', 'modules', 'delivery.useDifferentLocation', 'Use Different Location', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1763', '1', 'eng', 'modules', 'delivery.deliverySettings', 'Delivery Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1764', '1', 'eng', 'modules', 'delivery.enableDelivery', 'Enable Delivery', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1765', '1', 'eng', 'modules', 'delivery.maxRadius', 'Maximum Delivery Radius', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1766', '1', 'eng', 'modules', 'delivery.kilometers', 'Kilometers (km)', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1767', '1', 'eng', 'modules', 'delivery.miles', 'Miles (mi)', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1768', '1', 'eng', 'modules', 'delivery.feeCalculationMethod', 'Fee Calculation Method', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1769', '1', 'eng', 'modules', 'delivery.fixedFee', 'Fixed Fee', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1770', '1', 'eng', 'modules', 'delivery.feePerDistance', 'Fee per :unit', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1771', '1', 'eng', 'modules', 'delivery.distanceTiers', 'Distance Tiers', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1772', '1', 'eng', 'modules', 'delivery.distanceTiersDescription', 'Set different fees for different distance ranges', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1773', '1', 'eng', 'modules', 'delivery.minDistance', 'Min Distance (:unit)', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1774', '1', 'eng', 'modules', 'delivery.maxDistance', 'Max Distance (:unit)', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1775', '1', 'eng', 'modules', 'delivery.fee', 'Fee', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1776', '1', 'eng', 'modules', 'delivery.addTier', 'Add Tier', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1777', '1', 'eng', 'modules', 'delivery.freeDeliveryOptions', 'Free Delivery Options', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1778', '1', 'eng', 'modules', 'delivery.freeDeliveryOverAmount', 'Free Delivery Over Amount', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1779', '1', 'eng', 'modules', 'delivery.freeDeliveryWithinRadius', 'Free Delivery Within Radius', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1780', '1', 'eng', 'modules', 'delivery.leaveEmptyToDisable', 'Leave empty to disable this option', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1781', '1', 'eng', 'modules', 'delivery.deliverySchedule', 'Delivery Schedule', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1782', '1', 'eng', 'modules', 'delivery.deliveryHoursStart', 'Delivery Hours Start', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1783', '1', 'eng', 'modules', 'delivery.deliveryHoursEnd', 'Delivery Hours End', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1784', '1', 'eng', 'modules', 'delivery.leave247Delivery', 'Leave both fields empty or 00:00 for 24/7 delivery', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1785', '1', 'eng', 'modules', 'delivery.deliveryTimeEstimate', 'Delivery Time Estimation', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1786', '1', 'eng', 'modules', 'delivery.avgPrepTime', 'Average Preparation Time', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1787', '1', 'eng', 'modules', 'delivery.avgDeliverySpeed', 'Average Speed of Delivery Rider', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1788', '1', 'eng', 'modules', 'delivery.minutes', 'Minutes', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1789', '1', 'eng', 'modules', 'delivery.feeDetails', 'Fee Details', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1790', '1', 'eng', 'modules', 'delivery.distanceUnit', 'Distance Unit', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1791', '1', 'eng', 'modules', 'delivery.mapApiKey', 'Google Map API Key', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1792', '1', 'eng', 'modules', 'delivery.privacyPolicyLink', 'Privacy Policy Link', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1793', '1', 'eng', 'modules', 'delivery.branchLat', 'Branch Latitude', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1794', '1', 'eng', 'modules', 'delivery.branchLng', 'Branch Longitude', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1795', '1', 'eng', 'modules', 'delivery.addNewAddress', 'Add New Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1796', '1', 'eng', 'modules', 'delivery.editAddress', 'Edit Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1797', '1', 'eng', 'modules', 'delivery.addressLabel', 'Address Label (e.g. Home, Office)', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1798', '1', 'eng', 'modules', 'delivery.addressLabelPlaceholder', 'Home, Office, etc.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1799', '1', 'eng', 'modules', 'delivery.searchLocation', 'Search for your location', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1800', '1', 'eng', 'modules', 'delivery.searchLocationPlaceholder', 'Enter your address or location', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1801', '1', 'eng', 'modules', 'delivery.fullAddress', 'Complete Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1802', '1', 'eng', 'modules', 'delivery.fullAddressPlaceholder', 'Enter apartment, floor, landmark, etc.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1803', '1', 'eng', 'modules', 'delivery.noAddressesFound', 'No addresses found', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1804', '1', 'eng', 'modules', 'delivery.addAddressDescription', 'Add your delivery addresses to make ordering faster', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1805', '1', 'eng', 'modules', 'delivery.saveAddress', 'Save Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1806', '1', 'eng', 'modules', 'delivery.updateAddress', 'Update Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1807', '1', 'eng', 'modules', 'delivery.confirmDeleteAddress', 'Are you sure you want to delete this address?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1808', '1', 'eng', 'modules', 'delivery.confirmDeleteAddressDescription', 'This action cannot be undone.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1809', '1', 'eng', 'modules', 'delivery.pleaseSelectLocation', 'Please select a location on the map', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1810', '1', 'eng', 'modules', 'delivery.autoDetectMyLocation', 'Detect My Location', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1811', '1', 'eng', 'modules', 'delivery.selectDeliveryLocation', 'Select Delivery Location', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1812', '1', 'eng', 'modules', 'delivery.selectLocationDescription', 'Choose a saved address or add a new delivery location', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1813', '1', 'eng', 'modules', 'delivery.useSavedAddress', 'Use Saved Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1814', '1', 'eng', 'modules', 'delivery.addNewLocation', 'Add New Location', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1815', '1', 'eng', 'modules', 'delivery.confirmLocation', 'Confirm Location', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1816', '1', 'eng', 'modules', 'delivery.locationOutOfRange', 'Location is out of delivery range', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1817', '1', 'eng', 'modules', 'delivery.deliveryAreaMap', 'Delivery Area Map', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1818', '1', 'eng', 'modules', 'delivery.showDeliveryArea', 'Show Delivery Area', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1819', '1', 'eng', 'modules', 'delivery.hideDeliveryArea', 'Hide Delivery Area', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1820', '1', 'eng', 'modules', 'delivery.orderWillBeDeliveredHere', 'Your order will be delivered here', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1821', '1', 'eng', 'modules', 'delivery.placePinAccurately', 'Place the pin accurately on the map', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1822', '1', 'eng', 'modules', 'delivery.detectLocation', 'Detect My Location', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1823', '1', 'eng', 'modules', 'delivery.savedAddresses', 'Saved Addresses', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1824', '1', 'eng', 'modules', 'delivery.noSavedAddresses', 'No saved addresses found', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1825', '1', 'eng', 'modules', 'delivery.addressDetails', 'Address Details', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1826', '1', 'eng', 'modules', 'delivery.showDeliveryRange', 'Show Delivery Range', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1827', '1', 'eng', 'modules', 'delivery.hideDeliveryRange', 'Hide Delivery Range', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1828', '1', 'eng', 'modules', 'delivery.dragMarkerToAdjust', 'Place the pin accurately on the map', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1829', '1', 'eng', 'modules', 'delivery.deliveryLocation', 'Order will be delivered here', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1830', '1', 'eng', 'modules', 'delivery.deliveryFee', 'Delivery Fee', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1831', '1', 'eng', 'modules', 'delivery.maxRadiusAutoSet', 'Max Radius will be set automatically.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1832', '1', 'eng', 'modules', 'delivery.shopLocation', 'The restaurant location', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1833', '1', 'eng', 'modules', 'delivery.orderQualifiesForFreeDelivery', 'Your order qualifies for free delivery', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1834', '1', 'eng', 'modules', 'delivery.freeDelivery', 'Free Delivery', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1835', '1', 'eng', 'modules', 'delivery.changeDeliveryAddress', 'Change Delivery Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1836', '1', 'eng', 'modules', 'delivery.deliveryAddress', 'Delivery Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1837', '1', 'eng', 'modules', 'delivery.useCurrentLocation', 'Use Current Location', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1838', '1', 'eng', 'modules', 'delivery.deliveryNotAvailable', 'Delivery is not available at the moment. Please connect with the restaurant directly for assistance.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1839', '1', 'eng', 'modules', 'delivery.deliveryHours', 'Delivery Hours', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1840', '1', 'eng', 'modules', 'delivery.nextDeliveryAt', 'Next delivery available at :time', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1841', '1', 'eng', 'modules', 'delivery.deliveryScheduleStart', 'Delivery Start Time', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1842', '1', 'eng', 'modules', 'delivery.deliveryScheduleEnd', 'Delivery End Time', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1843', '1', 'eng', 'modules', 'delivery.locationPermissionDenied', 'Location permission denied. Please enable location access and try again.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1844', '1', 'eng', 'modules', 'delivery.outsideDeliveryHours', 'Delivery service available from :start to :end (:timezone). Please order during these hours.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1845', '1', 'eng', 'modules', 'delivery.currentlyOutsideHours', 'Currently outside delivery hours', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1846', '1', 'eng', 'modules', 'delivery.24hDelivery', '24/7 Delivery Available', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1847', '1', 'eng', 'modules', 'delivery.deliveryTimeEstimation', 'Estimated delivery time: :time minutes', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1848', '1', 'eng', 'modules', 'delivery.estimatedTimeUnavailable', 'Estimated time unavailable. Please contact the restaurant for more details.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1849', '1', 'eng', 'modules', 'delivery.additionalEtaBufferTime', 'Additional Time Buffer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1850', '1', 'eng', 'modules', 'delivery.additionalEtaBufferTimeDescription', 'Add optional buffer time (in minutes) to cover possible delays. Default is 0 if not specified.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1851', '1', 'eng', 'modules', 'dashboard.todayOrderCount', 'Today\'s Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1852', '1', 'eng', 'modules', 'dashboard.todayEarnings', 'Today\'s Earnings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1853', '1', 'eng', 'modules', 'dashboard.sinceYesterday', 'Since yesterday', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1854', '1', 'eng', 'modules', 'dashboard.todayStats', 'Statistics', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1855', '1', 'eng', 'modules', 'dashboard.todayCustomerCount', 'Today\'s Customer', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1856', '1', 'eng', 'modules', 'dashboard.averageDailyEarning', 'Average Daily Earnings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1857', '1', 'eng', 'modules', 'dashboard.sincePreviousMonth', 'Since Previous Month', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1858', '1', 'eng', 'modules', 'dashboard.earnings', 'Earnings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1859', '1', 'eng', 'modules', 'dashboard.salesThisMonth', 'Sales This Month', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1860', '1', 'eng', 'modules', 'dashboard.topTables', 'Top Selling Tables', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1861', '1', 'eng', 'modules', 'dashboard.topDish', 'Top Selling Dish', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1862', '1', 'eng', 'modules', 'dashboard.todayRestaurantCount', 'Today\'s Restaurant Count', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1863', '1', 'eng', 'modules', 'dashboard.totalRestaurantCount', 'Total Restaurant Count', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1864', '1', 'eng', 'modules', 'dashboard.totalFreeRestaurantCount', 'Total Free Restaurant Count', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1865', '1', 'eng', 'modules', 'dashboard.totalPaidRestaurantCount', 'Total Paid Restaurant Count', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1866', '1', 'eng', 'modules', 'dashboard.verificationPendingInfo', 'Your restaurant is pending verification. Please wait for admin approval.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1867', '1', 'eng', 'modules', 'dashboard.verificationPending', 'Verification Pending', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1868', '1', 'eng', 'modules', 'dashboard.verificationPendingDescription', 'Restaurant is waiting for approval', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1869', '1', 'eng', 'modules', 'dashboard.verificationRejectedInfo', 'Your restaurant verification has been rejected. Please contact admin for more details.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1870', '1', 'eng', 'modules', 'dashboard.approvalStatus', 'Approval Status', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1871', '1', 'eng', 'modules', 'dashboard.onboarding', 'Onboarding', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1872', '1', 'eng', 'modules', 'dashboard.onboardingDescription', 'Complete these steps to set up your application properly before using it.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1873', '1', 'eng', 'modules', 'dashboard.installation', 'Installation', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1874', '1', 'eng', 'modules', 'dashboard.installationCompleted', 'The application has been successfully installed.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1875', '1', 'eng', 'modules', 'dashboard.smtpConfiguration', 'SMTP Configuration', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1876', '1', 'eng', 'modules', 'dashboard.smtpConfigurationDescription', 'Configure your email settings to ensure all email notifications work properly.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1877', '1', 'eng', 'modules', 'dashboard.cronJobConfiguration', 'CRON Job Configuration', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1878', '1', 'eng', 'modules', 'dashboard.cronJobConfigurationDescription', 'Set up CRON jobs to ensure automated tasks run correctly.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1879', '1', 'eng', 'modules', 'dashboard.applicationNameChange', 'Application Name Change', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1880', '1', 'eng', 'modules', 'dashboard.applicationNameChangeDescription', 'Customize your application name to match your brand.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1881', '1', 'eng', 'modules', 'dashboard.platformRevenueThisMonth', 'Platform Revenue This Month', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1882', '1', 'eng', 'modules', 'dashboard.platformRevenue', 'Platform Revenue', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1883', '1', 'eng', 'modules', 'dashboard.topPerformingRestaurants', 'Top Performing Restaurants', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1884', '1', 'eng', 'modules', 'dashboard.orders', 'Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1885', '1', 'eng', 'modules', 'dashboard.newThisMonth', 'New This Month', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1886', '1', 'eng', 'modules', 'dashboard.growthRate', 'Growth Rate', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1887', '1', 'eng', 'modules', 'dashboard.newRestaurants', 'New Restaurants', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1888', '1', 'eng', 'modules', 'dashboard.recentRestaurants', 'Recent Restaurants', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1889', '1', 'eng', 'modules', 'dashboard.active', 'Active', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1890', '1', 'eng', 'modules', 'dashboard.inactive', 'Inactive', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1891', '1', 'eng', 'modules', 'dashboard.total', 'Total', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1892', '1', 'eng', 'modules', 'dashboard.platformOverview', 'Platform Overview', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1893', '1', 'eng', 'modules', 'dashboard.comprehensivePlatformMetrics', 'Comprehensive platform metrics and insights', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1894', '1', 'eng', 'modules', 'dashboard.totalRevenue', 'Total Revenue', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1895', '1', 'eng', 'modules', 'dashboard.totalOrders', 'Total Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1896', '1', 'eng', 'modules', 'dashboard.totalCustomers', 'Total Customers', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1897', '1', 'eng', 'modules', 'dashboard.totalUsers', 'Total Users', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1898', '1', 'eng', 'modules', 'dashboard.totalRestaurants', 'Total Restaurants', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1899', '1', 'eng', 'modules', 'dashboard.todayActivity', 'Today\'s Activity', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1900', '1', 'eng', 'modules', 'dashboard.revenue', 'Revenue', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1901', '1', 'eng', 'modules', 'dashboard.monthlyGrowth', 'Monthly Growth', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1902', '1', 'eng', 'modules', 'dashboard.restaurantStatus', 'Restaurant Status', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1903', '1', 'eng', 'modules', 'dashboard.recentActivity', 'Recent Activity', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1904', '1', 'eng', 'modules', 'dashboard.latestPlatformActivities', 'Latest platform activities and updates', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1905', '1', 'eng', 'modules', 'dashboard.recentOrders', 'Recent Orders', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1906', '1', 'eng', 'modules', 'dashboard.recentPayments', 'Recent Payments', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1907', '1', 'eng', 'modules', 'dashboard.topPayingRestaurants', 'Top Paying Restaurants', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1908', '1', 'eng', 'modules', 'dashboard.payments', 'Payments', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1909', '1', 'eng', 'modules', 'dashboard.totalSubscriptions', 'Total Subscriptions', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1910', '1', 'eng', 'modules', 'dashboard.activeSubscriptions', 'Active Subscriptions', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1911', '1', 'eng', 'modules', 'dashboard.trialSubscriptions', 'Trial Subscriptions', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1912', '1', 'eng', 'modules', 'dashboard.expiredSubscriptions', 'Expired Subscriptions', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1913', '1', 'eng', 'modules', 'dashboard.inactiveSubscriptions', 'Inactive Subscriptions', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1914', '1', 'eng', 'modules', 'dashboard.subscriptionStatus', 'Subscription Status', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1915', '1', 'eng', 'modules', 'dashboard.trial', 'Trial', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1916', '1', 'eng', 'modules', 'dashboard.expired', 'Expired', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1917', '1', 'eng', 'modules', 'dashboard.subscriptionUpdates', 'Subscription Updates', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1918', '1', 'eng', 'modules', 'dashboard.newUsers', 'New Users', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1919', '1', 'eng', 'modules', 'update.systemDetails', 'System Details', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1920', '1', 'eng', 'modules', 'update.updateTitle', 'Update To New Version', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1921', '1', 'eng', 'modules', 'update.updateDatabase', 'Update Database', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1922', '1', 'eng', 'modules', 'update.fileReplaceAlert', 'To update the TableTrack to the new version check documentation for the instructions.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1923', '1', 'eng', 'modules', 'update.updateDatabaseButton', 'Click to update database', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1924', '1', 'eng', 'modules', 'update.newUpdate', 'New update available', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1925', '1', 'eng', 'modules', 'update.updateNow', 'Update Now', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1926', '1', 'eng', 'modules', 'update.updateAlternate', 'If the <b>Update Now</b> button does not work then follow the <b> <a href=\"https://froiden.freshdesk.com/support/solutions/articles/43000554421-update-application-manually\" target=\"_blank\">Manual update</a></b> instructions as mentioned in the documentation.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1927', '1', 'eng', 'modules', 'update.updateManual', 'Update Alternate Method', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1928', '1', 'eng', 'modules', 'update.updateFiles', 'Update Files', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1929', '1', 'eng', 'modules', 'update.install', 'Install', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1930', '1', 'eng', 'modules', 'update.downloadUpdateFile', 'Download Update File', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1931', '1', 'eng', 'modules', 'update.moduleFile', 'Once the zip file is uploaded, you will see a list of modules available for installation or update. To proceed with the installation or update, simply click on the \"install\" button for the respective module. Please note that after clicking the \"install\" button, you will be logged out. Once the installation is complete, you will be able to see the module on the module list. You can activate or deactivate the module from the list at any time.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1932', '1', 'eng', 'modules', 'update.customModules', 'Custom Modules', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1933', '1', 'eng', 'modules', 'update.customModulesDescription', 'Custom modules are additional features that can be added to your restaurant. They are installed as separate modules and can be activated or deactivated at any time.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1934', '1', 'eng', 'modules', 'update.customModulesList', 'Custom Modules List', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1935', '1', 'eng', 'modules', 'update.installCustomModule', 'Install Custom Module', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1936', '1', 'eng', 'modules', 'update.uploadModule', 'Upload Module', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1937', '1', 'eng', 'modules', 'update.downloadFilefromCodecanyon', 'Download file from Codecanyon', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1938', '1', 'eng', 'modules', 'update.moduleFileItem', 'Module File Item', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1939', '1', 'eng', 'modules', 'update.moduleFileItemDescription', 'Module File Item Description', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1940', '1', 'eng', 'modules', 'staff.addStaff', 'Add Member', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1941', '1', 'eng', 'modules', 'staff.name', 'Member Name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1942', '1', 'eng', 'modules', 'staff.email', 'Email Address', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1943', '1', 'eng', 'modules', 'staff.enterName', 'Please enter your name', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1944', '1', 'eng', 'modules', 'staff.editMember', 'Edit Member', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1945', '1', 'eng', 'modules', 'staff.deleteMember', 'Delete Member', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1946', '1', 'eng', 'modules', 'staff.deleteMemberMessage', 'Are you sure you want to delete the member?', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1947', '1', 'eng', 'modules', 'staff.photo', 'Photo', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1948', '1', 'eng', 'modules', 'staff.addExecutive', 'Add Executive', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1949', '1', 'eng', 'modules', 'staff.available', 'Available', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1950', '1', 'eng', 'modules', 'staff.on_delivery', 'On Delivery', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1951', '1', 'eng', 'modules', 'staff.inactive', 'Inactive', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1952', '1', 'eng', 'modules', 'staff.editExecutive', 'Edit Executive', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1953', '1', 'eng', 'modules', 'staff.password', 'Password', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1954', '1', 'eng', 'modules', 'staff.Branch Head', 'Branch Head', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1955', '1', 'eng', 'modules', 'staff.Waiter', 'Waiter', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1956', '1', 'eng', 'modules', 'staff.Chef', 'Chef', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1957', '1', 'eng', 'modules', 'staff.Admin', 'Admin', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1958', '1', 'eng', 'modules', 'staff.Super Admin', 'Super Admin', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1959', '1', 'eng', 'modules', 'staff.passwordUpdateNote', 'Leave blank to keep the current password.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1960', '1', 'eng', 'modules', 'reservation.slotType', 'Slot Type', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1961', '1', 'eng', 'modules', 'reservation.timeStart', 'Start Time', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1962', '1', 'eng', 'modules', 'reservation.timeEnd', 'End Time', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1963', '1', 'eng', 'modules', 'reservation.timeSlotDifference', 'Time Slot Difference', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1964', '1', 'eng', 'modules', 'reservation.available', 'Available', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1965', '1', 'eng', 'modules', 'reservation.unavailable', 'Unavailable', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1966', '1', 'eng', 'modules', 'reservation.maxGuests', 'Maximum Guests', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1967', '1', 'eng', 'modules', 'reservation.guests', 'Guests', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1968', '1', 'eng', 'modules', 'reservation.Lunch', 'Lunch', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1969', '1', 'eng', 'modules', 'reservation.Breakfast', 'Breakfast', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1970', '1', 'eng', 'modules', 'reservation.Dinner', 'Dinner', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1971', '1', 'eng', 'modules', 'reservation.No_Show', 'No Show', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1972', '1', 'eng', 'modules', 'reservation.Checked_In', 'Checked In', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1973', '1', 'eng', 'modules', 'reservation.Confirmed', 'Confirmed', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1974', '1', 'eng', 'modules', 'reservation.Cancelled', 'Cancelled', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1975', '1', 'eng', 'modules', 'reservation.Pending', 'Pending', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1976', '1', 'eng', 'modules', 'reservation.todayReservations', 'Today Reservations', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1977', '1', 'eng', 'modules', 'reservation.newReservations', 'New Reservations', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1978', '1', 'eng', 'modules', 'reservation.newReservation', 'New Reservation', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1979', '1', 'eng', 'modules', 'reservation.selectDate', 'Select Date of Booking', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1980', '1', 'eng', 'modules', 'reservation.upgradeHeading', 'Unlock Seamless Table Reservations Today!', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1981', '1', 'eng', 'modules', 'reservation.upgradeInfo', 'Effortlessly manage customer reservations with Table Reservation feature. Upgrade now and give your guests the convenience they deserve, while streamlining your operations.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1982', '1', 'eng', 'modules', 'reservation.reservedTables', 'Reservations', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1983', '1', 'eng', 'modules', 'reservation.currentTable', 'Current Table', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1984', '1', 'eng', 'modules', 'reservation.changeTable', 'Change Table', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1985', '1', 'eng', 'modules', 'reservation.reservationSettings', 'Reservation Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1986', '1', 'eng', 'modules', 'reservation.enableAdminReservation', 'Enable Admin Reservations', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1987', '1', 'eng', 'modules', 'reservation.enableAdminReservationDescription', 'Allow staff to create reservations through the admin panel', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1988', '1', 'eng', 'modules', 'reservation.enableCustomerReservation', 'Enable Customer Reservations', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1989', '1', 'eng', 'modules', 'reservation.enableCustomerReservationDescription', 'Allow customers to make reservations through the customer site', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1990', '1', 'eng', 'modules', 'reservation.minimumPartySize', 'Minimum Party Size', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1991', '1', 'eng', 'modules', 'reservation.minimumPartySizeDescription', 'Set the minimum number of guests required for a reservation', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1992', '1', 'eng', 'modules', 'reservation.enterMinimumPartySize', 'Enter minimum party size', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1993', '1', 'eng', 'modules', 'reservation.generalSettings', 'General Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1994', '1', 'eng', 'modules', 'reservation.timeSlotsSettings', 'Time Slots Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1995', '1', 'eng', 'modules', 'reservation.reservationsDisabled', 'Reservations are currently disabled.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1996', '1', 'eng', 'modules', 'reservation.reservationsDisabledDescription', 'Reservations are currently disabled. Please enable them in the settings to allow customers to make reservations.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1997', '1', 'eng', 'modules', 'reservation.lastMinuteBookingSettings', 'Last-Minute Booking Settings', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1998', '1', 'eng', 'modules', 'reservation.disableSlotMinutes', 'Disable Slot Minutes', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('1999', '1', 'eng', 'modules', 'reservation.disableSlotMinutesInfo', 'Set how many minutes before a time slot that bookings should be disabled. This only applies to reservations for today.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2000', '1', 'eng', 'modules', 'notifications.order_received', 'New Order Received', '2025-10-15 14:29:35', '2025-10-15 14:29:35');

INSERT INTO `ltm_translations` VALUES
('2001', '1', 'eng', 'modules', 'notifications.order_received_info', 'Restaurant admin will receive an email when a new order is placed by the customer.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2002', '1', 'eng', 'modules', 'notifications.reservation_confirmed', 'Reservation Confirmation', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2003', '1', 'eng', 'modules', 'notifications.reservation_confirmed_info', 'Customer will receive an email after making the reservation.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2004', '1', 'eng', 'modules', 'notifications.new_reservation', 'New Reservation Received', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2005', '1', 'eng', 'modules', 'notifications.new_reservation_info', 'Restaurant admin will receive an email when a new reservation is made by the customer.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2006', '1', 'eng', 'modules', 'notifications.order_bill_sent', 'Order Bill', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2007', '1', 'eng', 'modules', 'notifications.order_bill_sent_info', 'Customer will receive the order bill via email.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2008', '1', 'eng', 'modules', 'notifications.staff_welcome', 'Staff Welcome Email', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2009', '1', 'eng', 'modules', 'notifications.staff_welcome_info', 'Staff Member will welcome email when you add a new staff member.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2010', '1', 'eng', 'modules', 'notifications.send_otp', 'Send OTP', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2011', '1', 'eng', 'modules', 'notifications.send_otp_info', 'Customer will receive an OTP to login to the restaurant.', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2012', '1', 'eng', 'modules', 'onboarding.completeSteps', 'Complete following steps to get started', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2013', '1', 'eng', 'modules', 'onboarding.markComplete', 'Mark Complete', '2025-10-15 14:29:35', '2025-10-15 14:29:35'),
('2014', '1', 'eng', 'modules', 'onboarding.addBranchHeading', 'Add Branch Information', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2015', '1', 'eng', 'modules', 'onboarding.addBranchInfo', 'Provide the essential details of your restaurant branch.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2016', '1', 'eng', 'modules', 'onboarding.addAreaHeading', 'Set Up Your Restaurant Areas', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2017', '1', 'eng', 'modules', 'onboarding.addAreaInfo', 'Create distinct areas like dining rooms, patios, or bars to organize your tables.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2018', '1', 'eng', 'modules', 'onboarding.addTableHeading', 'Add a Table to the Area', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2019', '1', 'eng', 'modules', 'onboarding.addTableInfo', 'Assign and name the tables in each area for easy tracking during reservations and orders.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2020', '1', 'eng', 'modules', 'onboarding.addMenuHeading', 'Build Your Menu', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2021', '1', 'eng', 'modules', 'onboarding.addMenuInfo', 'Let\'s build your menu! First add a name to your menu like Drinks, Breakfast etc.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2022', '1', 'eng', 'modules', 'onboarding.addMenuItemHeading', 'Add Items to Your Menu', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2023', '1', 'eng', 'modules', 'onboarding.addMenuItemInfo', 'Add individual dishes with their descriptions and prices to complete your menu.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2024', '1', 'eng', 'modules', 'onboarding.addOrderHeading', 'Test Your Order Process', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2025', '1', 'eng', 'modules', 'onboarding.addOrderInfo', 'Make sure everything works by placing a test order for your setup.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2026', '1', 'eng', 'modules', 'restaurant.addRestaurant', 'Add Restaurant', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2027', '1', 'eng', 'modules', 'restaurant.name', 'Restaurant Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2028', '1', 'eng', 'modules', 'restaurant.email', 'Email Address', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2029', '1', 'eng', 'modules', 'restaurant.address', 'Address', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2030', '1', 'eng', 'modules', 'restaurant.editRestaurant', 'Edit Restaurant', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2031', '1', 'eng', 'modules', 'restaurant.deleteRestaurant', 'Delete Restaurant', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2032', '1', 'eng', 'modules', 'restaurant.deleteRestaurantMessage', 'Are you sure you want to delete the restaurant?', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2033', '1', 'eng', 'modules', 'restaurant.logo', 'Logo', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2034', '1', 'eng', 'modules', 'restaurant.phone', 'Phone', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2035', '1', 'eng', 'modules', 'restaurant.restaurantDetails', 'Restaurant Details', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2036', '1', 'eng', 'modules', 'restaurant.restaurantBranchDetails', 'Add Restaurant Branch Details', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2037', '1', 'eng', 'modules', 'restaurant.changePassword', 'Change Password', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2038', '1', 'eng', 'modules', 'restaurant.firstAdmin', 'First Admin', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2039', '1', 'eng', 'modules', 'restaurant.nextBranchDetails', 'Next: Branch Details', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2040', '1', 'eng', 'modules', 'restaurant.updatePackage', 'Update Package', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2041', '1', 'eng', 'modules', 'restaurant.needApproval', 'Need Approval', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2042', '1', 'eng', 'modules', 'restaurant.resetFilter', 'Reset Filter', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2043', '1', 'eng', 'modules', 'restaurant.rejectionReason', 'Rejection Reason', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2044', '1', 'eng', 'modules', 'restaurant.currentPackage', 'Current Package', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2045', '1', 'eng', 'modules', 'restaurant.rejectionReasonPlaceholder', 'Provide a reason for rejection', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2046', '1', 'eng', 'modules', 'package.packageName', 'Package Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2047', '1', 'eng', 'modules', 'package.description', 'Description', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2048', '1', 'eng', 'modules', 'package.monthlyPrice', 'Monthly Plan Price', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2049', '1', 'eng', 'modules', 'package.annualPrice', 'Annual Plan Price', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2050', '1', 'eng', 'modules', 'package.annually', 'Annually', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2051', '1', 'eng', 'modules', 'package.monthly', 'Monthly', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2052', '1', 'eng', 'modules', 'package.trialDays', 'Trial Days', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2053', '1', 'eng', 'modules', 'package.trialStatus', 'Trial Status', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2054', '1', 'eng', 'modules', 'package.NotificationBeforeDays', 'Notification Before Days', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2055', '1', 'eng', 'modules', 'package.trialMessage', 'Trial Message', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2056', '1', 'eng', 'modules', 'package.lifetimePrice', 'Lifetime Price', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2057', '1', 'eng', 'modules', 'package.packagePrice', 'Package Price', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2058', '1', 'eng', 'modules', 'package.selectBillingCycle', 'Select Billing Cycle', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2059', '1', 'eng', 'modules', 'package.packageType', 'Package Type', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2060', '1', 'eng', 'modules', 'package.annual', 'Annual', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2061', '1', 'eng', 'modules', 'package.free', 'Free', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2062', '1', 'eng', 'modules', 'package.default', 'Default', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2063', '1', 'eng', 'modules', 'package.private', 'Private', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2064', '1', 'eng', 'modules', 'package.trial', 'Trial', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2065', '1', 'eng', 'modules', 'package.lifetime', 'Lifetime', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2066', '1', 'eng', 'modules', 'package.moduleInPackage', 'Modules in Package', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2067', '1', 'eng', 'modules', 'package.daysLeftTrial', 'days left on trial', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2068', '1', 'eng', 'modules', 'package.trialExpired', 'Trial expired', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2069', '1', 'eng', 'modules', 'package.selectPackage', 'Select Package', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2070', '1', 'eng', 'modules', 'package.normal', 'Normal', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2071', '1', 'eng', 'modules', 'package.addPackage', 'Add Package', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2072', '1', 'eng', 'modules', 'package.editPackage', 'Edit Package', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2073', '1', 'eng', 'modules', 'package.freePlan', 'Free Plan', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2074', '1', 'eng', 'modules', 'package.recommended', 'Recommended', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2075', '1', 'eng', 'modules', 'package.trialPackage', 'Trial Package', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2076', '1', 'eng', 'modules', 'package.monthlyRazorpayId', 'Monthly Razorpay Id', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2077', '1', 'eng', 'modules', 'package.annualRazorpayId', 'Annual Razorpay Id', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2078', '1', 'eng', 'modules', 'package.lifetimeRazorpayId', 'Lifetime Razorpay Id', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2079', '1', 'eng', 'modules', 'package.lifetimeStripeId', 'Lifetime Stripe Id', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2080', '1', 'eng', 'modules', 'package.monthlyStripeId', 'Monthly Stripe Id', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2081', '1', 'eng', 'modules', 'package.annualStripeId', 'Annual Stripe Id', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2082', '1', 'eng', 'modules', 'package.selectAdditionalFeature', 'Select Additional Feature', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2083', '1', 'eng', 'modules', 'package.trialPackageDetails', 'If this package is active, then the restaurant which registers for the first time goes to this package.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2084', '1', 'eng', 'modules', 'package.defaultPackage', 'Default Package', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2085', '1', 'eng', 'modules', 'package.defaultPackageDetails', 'When the trial package expires, the restaurant goes back to this plan.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2086', '1', 'eng', 'modules', 'package.defaultPackageDetails2', 'When the restaurant fails the payment of an upgraded package, the restaurant goes back to this plan.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2087', '1', 'eng', 'modules', 'package.thisPackageCannotBeDeleted', 'This package cannot be deleted', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2088', '1', 'eng', 'modules', 'package.planExpire', 'Plan Expires On', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2089', '1', 'eng', 'modules', 'package.trialPeriod', 'Trial Period', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2090', '1', 'eng', 'modules', 'package.days', 'Day(s)', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2091', '1', 'eng', 'modules', 'package.paidPlan', 'Paid Plan', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2092', '1', 'eng', 'modules', 'package.choosePackageType', 'Choose Package Type', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2093', '1', 'eng', 'modules', 'package.monthlyPlan', 'Monthly Plan', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2094', '1', 'eng', 'modules', 'package.choseFreePlan', 'Choose Free Plan', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2095', '1', 'eng', 'modules', 'package.currentPlan', 'Current Plan', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2096', '1', 'eng', 'modules', 'package.chooseDefaultPlan', 'Choose Default Plan', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2097', '1', 'eng', 'modules', 'package.active', 'Active', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2098', '1', 'eng', 'modules', 'package.inactive', 'Inactive', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2099', '1', 'eng', 'modules', 'package.annualPlan', 'Annual Plan', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2100', '1', 'eng', 'modules', 'package.isPrivate', 'Make Private', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2101', '1', 'eng', 'modules', 'package.selectModules', 'Select Modules for this package', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2102', '1', 'eng', 'modules', 'package.selectAll', 'Select All', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2103', '1', 'eng', 'modules', 'package.deletePackage', 'Delete Package', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2104', '1', 'eng', 'modules', 'package.deletePackageMessage', 'Are you sure you want to delete the package?', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2105', '1', 'eng', 'modules', 'package.isRecommended', 'Mark as Recommended', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2106', '1', 'eng', 'modules', 'package.restaurantCurrentPackage', 'Restaurant\'s Current Package', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2107', '1', 'eng', 'modules', 'package.updatePackage', 'Update Package', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2108', '1', 'eng', 'modules', 'package.packageDetails', 'Package Details', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2109', '1', 'eng', 'modules', 'package.transactionId', 'Transaction ID', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2110', '1', 'eng', 'modules', 'package.paymentGateway', 'Payment Gateway', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2111', '1', 'eng', 'modules', 'package.choosePlan', 'Choose Plan', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2112', '1', 'eng', 'modules', 'package.noPaymentOptionEnable', 'No payment options are enabled.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2113', '1', 'eng', 'modules', 'package.choosePaymentMethod', 'Choose Payment Method', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2114', '1', 'eng', 'modules', 'package.amount', 'Amount', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2115', '1', 'eng', 'modules', 'package.paymentBy', 'Payment By', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2116', '1', 'eng', 'modules', 'package.created', 'Created', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2117', '1', 'eng', 'modules', 'package.status', 'Status', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2118', '1', 'eng', 'modules', 'package.receipt', 'Receipt', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2119', '1', 'eng', 'modules', 'package.paymentDate', 'Payment Date', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2120', '1', 'eng', 'modules', 'package.payOnline', 'Pay Online', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2121', '1', 'eng', 'modules', 'package.billingCycle', 'Billing Cycle', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2122', '1', 'eng', 'modules', 'package.payOffline', 'Pay Offline', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2123', '1', 'eng', 'modules', 'package.purchaseHistory', 'Purchase History', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2124', '1', 'eng', 'modules', 'package.offlineRequest', 'Offline Request', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2125', '1', 'eng', 'modules', 'package.planDetails', 'Plan Details', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2126', '1', 'eng', 'modules', 'package.offlineUploadFile', 'Please attach a file of your offline payment receipt', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2127', '1', 'eng', 'modules', 'package.offlineDescriptionPlaceholder', 'Provide details of your offline payment', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2128', '1', 'eng', 'modules', 'package.remark', 'Remark', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2129', '1', 'eng', 'modules', 'package.trialExpireOn', 'Trial Expires On', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2130', '1', 'eng', 'modules', 'package.selectDate', 'Select Date', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2131', '1', 'eng', 'modules', 'package.nextPaymentDate', 'Next Payment Date', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2132', '1', 'eng', 'modules', 'package.licenceExpiresOn', 'License Expires On', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2133', '1', 'eng', 'modules', 'package.defaultPlan', 'Your default plan.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2134', '1', 'eng', 'modules', 'package.payOnce', 'Pay One Time', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2135', '1', 'eng', 'modules', 'package.payMonthly', 'Pay Monthly', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2136', '1', 'eng', 'modules', 'package.payAnnually', 'Pay Annually', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2137', '1', 'eng', 'modules', 'package.branchLimit', 'Branch Limit', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2138', '1', 'eng', 'modules', 'package.branchLimitInfo', 'The restaurant can create a specified number of branches. Enter -1 for unlimited branches.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2139', '1', 'eng', 'modules', 'package.licenseExpiresOn', 'License Expires On', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2140', '1', 'eng', 'modules', 'package.additionalFeatures', 'Additional Features', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2141', '1', 'eng', 'modules', 'package.noAdditionalFeatures', 'No additional features available.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2142', '1', 'eng', 'modules', 'package.currency', 'Currency', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2143', '1', 'eng', 'modules', 'package.chooseCurrency', 'Choose Currency', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2144', '1', 'eng', 'modules', 'package.monthlyFlutterwaveId', 'Monthly Flutterwave Id', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2145', '1', 'eng', 'modules', 'package.annualFlutterwaveId', 'Annual Flutterwave Id', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2146', '1', 'eng', 'modules', 'package.monthlyPaypalId', 'Monthly Paypal Id', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2147', '1', 'eng', 'modules', 'package.annualPaypalId', 'Annual Paypal Id', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2148', '1', 'eng', 'modules', 'package.monthlyPaystackId', 'Monthly Paystack Id', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2149', '1', 'eng', 'modules', 'package.annualPaystackId', 'Annual Paystack Id', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2150', '1', 'eng', 'modules', 'billing.name', 'Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2151', '1', 'eng', 'modules', 'billing.description', 'Description', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2152', '1', 'eng', 'modules', 'billing.deleteOfflinePaymentMethod', 'Delete Offline Payment Method', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2153', '1', 'eng', 'modules', 'billing.askDeleteOfflinePaymentMethod', 'Are you sure you want to delete the offline payment method?', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2154', '1', 'eng', 'modules', 'billing.offlinePaymentMethodDeleted', 'Offline Payment Method Deleted', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2155', '1', 'eng', 'modules', 'billing.addPaymentMethod', 'Add Payment Method', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2156', '1', 'eng', 'modules', 'billing.razorpay', 'Razorpay', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2157', '1', 'eng', 'modules', 'billing.stripe', 'Stripe', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2158', '1', 'eng', 'modules', 'billing.flutterwave', 'Flutterwave', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2159', '1', 'eng', 'modules', 'billing.offline', 'Offline Payment', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2160', '1', 'eng', 'modules', 'billing.qr_code', 'QR Code Payment', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2161', '1', 'eng', 'modules', 'billing.paypal', 'Paypal', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2162', '1', 'eng', 'modules', 'billing.viewPaymentMethod', 'View Payment Method', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2163', '1', 'eng', 'modules', 'billing.offlinePaymentMethod', 'Offline Payment Method', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2164', '1', 'eng', 'modules', 'billing.restaurant', 'Restaurant Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2165', '1', 'eng', 'modules', 'billing.paymentDate', 'Payment Date', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2166', '1', 'eng', 'modules', 'billing.packageDetails', 'Package Details', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2167', '1', 'eng', 'modules', 'billing.transactionId', 'Transaction ID', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2168', '1', 'eng', 'modules', 'billing.paymentGateway', 'Payment Gateway', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2169', '1', 'eng', 'modules', 'billing.choosePlan', 'Choose Plan', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2170', '1', 'eng', 'modules', 'billing.noPaymentOptionEnable', 'No payment options are enabled.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2171', '1', 'eng', 'modules', 'billing.choosePaymentMethod', 'Choose Payment Method', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2172', '1', 'eng', 'modules', 'billing.amount', 'Amount', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2173', '1', 'eng', 'modules', 'billing.package', 'Package', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2174', '1', 'eng', 'modules', 'billing.paymentBy', 'Payment By', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2175', '1', 'eng', 'modules', 'billing.paymentDone', 'Payment Done', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2176', '1', 'eng', 'modules', 'billing.created', 'Created', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2177', '1', 'eng', 'modules', 'billing.status', 'Status', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2178', '1', 'eng', 'modules', 'billing.receipt', 'Receipt', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2179', '1', 'eng', 'modules', 'billing.payOnline', 'Pay Online', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2180', '1', 'eng', 'modules', 'billing.billingCycle', 'Billing Cycle', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2181', '1', 'eng', 'modules', 'billing.paybyQr', 'Pay by QR Code', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2182', '1', 'eng', 'modules', 'billing.accountDetails', 'Account Details :', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2183', '1', 'eng', 'modules', 'billing.showOtherPaymentOption', 'Show Other Payment Option', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2184', '1', 'eng', 'modules', 'billing.bankTransfer', 'Bank Transfer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2185', '1', 'eng', 'modules', 'billing.payOffline', 'Pay Offline', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2186', '1', 'eng', 'modules', 'billing.purchaseHistory', 'Purchase History', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2187', '1', 'eng', 'modules', 'billing.offlineRequest', 'Offline Request', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2188', '1', 'eng', 'modules', 'billing.generalSettings', 'General Settings', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2189', '1', 'eng', 'modules', 'billing.planDetails', 'Plan Details', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2190', '1', 'eng', 'modules', 'billing.currentPlan', 'Current Plan Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2191', '1', 'eng', 'modules', 'billing.daysLeft', ':count Days Left', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2192', '1', 'eng', 'modules', 'billing.licenseExpireOn', 'License Expire On', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2193', '1', 'eng', 'modules', 'billing.noPlanAssigned', 'No Plan Assigned', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2194', '1', 'eng', 'modules', 'billing.expired', 'Expired', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2195', '1', 'eng', 'modules', 'billing.currentPlanType', 'Current Plan Type', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2196', '1', 'eng', 'modules', 'billing.offlineUploadFile', 'Please attach a file of your offline payment receipt', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2197', '1', 'eng', 'modules', 'billing.offlineDescriptionPlaceholder', 'Provide details of your offline payment', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2198', '1', 'eng', 'modules', 'billing.nextPaymentDate', 'Next Payment Date', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2199', '1', 'eng', 'modules', 'billing.remark', 'Remark', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2200', '1', 'eng', 'modules', 'billing.monthly', 'Monthly', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2201', '1', 'eng', 'modules', 'billing.annually', 'Annually', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2202', '1', 'eng', 'modules', 'billing.lifetimeAccess', 'Lifetime Access', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2203', '1', 'eng', 'modules', 'billing.billed', 'Billed', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2204', '1', 'eng', 'modules', 'billing.free', 'Free', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2205', '1', 'eng', 'modules', 'billing.billedTo', 'Billed To', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2206', '1', 'eng', 'modules', 'billing.paid', 'Paid', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2207', '1', 'eng', 'modules', 'billing.total', 'Total', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2208', '1', 'eng', 'modules', 'billing.paidVia', 'Paid Via', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2209', '1', 'eng', 'modules', 'billing.acceptOfflineRequest', 'Accept Offline Request', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2210', '1', 'eng', 'modules', 'billing.rejectOfflineRequest', 'Reject Offline Request', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2211', '1', 'eng', 'modules', 'billing.pickYourPlan', 'Pick Your Plan', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2212', '1', 'eng', 'modules', 'billing.noPaymentMethodSelected', 'No payment method selected.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2213', '1', 'eng', 'modules', 'billing.cancelImmediately', 'Cancel Immediately', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2214', '1', 'eng', 'modules', 'billing.endOfBillingCycle', 'End of Billing Cycle', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2215', '1', 'eng', 'modules', 'billing.expiringToday', 'Expiring Today', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2216', '1', 'eng', 'modules', 'billing.paymentReceipt', 'Payment Receipt', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2217', '1', 'eng', 'modules', 'billing.trial', 'Trial', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2218', '1', 'eng', 'modules', 'billing.default', 'Default', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2219', '1', 'eng', 'modules', 'billing.standard', 'Standard', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2220', '1', 'eng', 'modules', 'billing.lifetime', 'Lifetime', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2221', '1', 'eng', 'modules', 'billing.annual', 'Annual', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2222', '1', 'eng', 'modules', 'billing.payfast', 'PayFast', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2223', '1', 'eng', 'modules', 'billing.payfastLiveId', 'Payfast Live ID', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2224', '1', 'eng', 'modules', 'billing.payfastLiveKey', 'Payfast Live KEY', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2225', '1', 'eng', 'modules', 'billing.payfastLivePassphrase', 'Payfast Live Passphrase', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2226', '1', 'eng', 'modules', 'billing.payfastTestId', 'Test Payfast ID', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2227', '1', 'eng', 'modules', 'billing.payfastTestKey', 'Test Payfast KEY', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2228', '1', 'eng', 'modules', 'billing.payfastTestPassphrase', 'Test Payfast Passphrase', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2229', '1', 'eng', 'modules', 'billing.paystack', 'Paystack', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2230', '1', 'eng', 'modules', 'billing.popular', 'Popular', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2231', '1', 'eng', 'modules', 'billing.xendit', 'Xendit', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2232', '1', 'eng', 'modules', 'language.languageCode', 'Language Code', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2233', '1', 'eng', 'modules', 'language.languageName', 'Language Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2234', '1', 'eng', 'modules', 'language.active', 'Active', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2235', '1', 'eng', 'modules', 'language.rtl', 'RTL', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2236', '1', 'eng', 'modules', 'language.addLanguage', 'Add Language', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2237', '1', 'eng', 'modules', 'language.flagCode', 'Flag Code', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2238', '1', 'eng', 'modules', 'language.flagCodeHelp', 'Click here to get the flag code', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2239', '1', 'eng', 'modules', 'language.editLanguage', 'Edit Language', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2240', '1', 'eng', 'modules', 'language.deleteLanguage', 'Delete Language', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2241', '1', 'eng', 'modules', 'language.deleteLanguageMessage', 'Are you sure you want to delete the language?', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2242', '1', 'eng', 'modules', 'language.defaultLanguage', 'Default Language', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2243', '1', 'eng', 'modules', 'language.modifyDefaultLanguage', 'To modify the default language, please navigate to the', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2244', '1', 'eng', 'modules', 'language.currentLanguageDefault', 'The current language is set as the default.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2245', '1', 'eng', 'modules', 'waiterRequest.markCompleted', 'Mark Attended', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2246', '1', 'eng', 'modules', 'waiterRequest.doItLater', 'Do it Later', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2247', '1', 'eng', 'modules', 'waiterRequest.activeWaiterRequests', 'Active Waiter Requests', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2248', '1', 'eng', 'modules', 'waiterRequest.newWaiterRequests', 'New Waiter Request', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2249', '1', 'eng', 'modules', 'waiterRequest.newWaiterRequestForTable', 'New Waiter Request for Table - :name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2250', '1', 'eng', 'modules', 'waiterRequest.activeWaiterRequestsCount', 'Active Waiter Requests', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2251', '1', 'eng', 'modules', 'waiterRequest.noWaiterRequest', 'No waiter request found in this area.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2252', '1', 'eng', 'modules', 'profile.profileInfo', 'Profile Information', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2253', '1', 'eng', 'modules', 'profile.updateProfileInfo', 'Update your account\'s profile information and email address.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2254', '1', 'eng', 'modules', 'profile.photo', 'Photo', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2255', '1', 'eng', 'modules', 'profile.selectNewPhoto', 'Select A New Photo', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2256', '1', 'eng', 'modules', 'profile.removePhoto', 'Remove Photo', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2257', '1', 'eng', 'modules', 'profile.name', 'Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2258', '1', 'eng', 'modules', 'profile.currentPassword', 'Current Password', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2259', '1', 'eng', 'modules', 'profile.newPassword', 'New Password', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2260', '1', 'eng', 'modules', 'profile.confirmPassword', 'Confirm Password', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2261', '1', 'eng', 'modules', 'profile.ensureAccountSecure', 'Ensure your account is using a long, random password to stay secure.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2262', '1', 'eng', 'modules', 'profile.updatePassword', 'Update Password', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2263', '1', 'eng', 'modules', 'profile.twoFactorAuth', 'Two Factor Authentication', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2264', '1', 'eng', 'modules', 'profile.addSecurity', 'Add additional security to your account using two factor authentication.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2265', '1', 'eng', 'modules', 'profile.finishEnablingTwoFactorAuth', 'Finish enabling two factor authentication.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2266', '1', 'eng', 'modules', 'profile.notEnabledTwoFactorAuth', 'You have not enabled two factor authentication.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2267', '1', 'eng', 'modules', 'profile.enabledTwoFactorAuth', 'You have enabled two factor authentication.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2268', '1', 'eng', 'modules', 'profile.twoFactorAuthMessage', 'When two factor authentication is enabled, you will be prompted for a secure, random token during authentication. You may retrieve this token from your phone\'s Google Authenticator application.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2269', '1', 'eng', 'modules', 'profile.finishEnablingTwoFactorAuthMessage', 'To finish enabling two factor authentication, scan the following QR code using your phone\'s authenticator application or enter the setup key and provide the generated OTP code.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2270', '1', 'eng', 'modules', 'profile.setupKey', 'Setup Key', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2271', '1', 'eng', 'modules', 'profile.recoveryCodesMessage', 'Store these recovery codes in a secure password manager. They can be used to recover access to your account if your two factor authentication device is lost.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2272', '1', 'eng', 'modules', 'profile.regenerateRecoveryCodes', 'Regenerate Recovery Codes', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2273', '1', 'eng', 'modules', 'profile.showRecoveryCodes', 'Show Recovery Codes', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2274', '1', 'eng', 'modules', 'profile.deleteAccount', 'Delete Account', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2275', '1', 'eng', 'modules', 'profile.permanentlyDeleteAccount', 'Permanently delete your account.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2276', '1', 'eng', 'modules', 'profile.permanentlyDeleteAccountMessage', 'Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2277', '1', 'eng', 'modules', 'profile.areYouSureDeleteAccount', 'Are you sure you want to delete your account? Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2278', '1', 'eng', 'modules', 'profile.password', 'Password', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2279', '1', 'eng', 'modules', 'profile.browserSessions', 'Browser Sessions', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2280', '1', 'eng', 'modules', 'profile.browserSessionsDescription', 'Manage and log out your active sessions on other browsers and devices.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2281', '1', 'eng', 'modules', 'profile.browserSessionsContent', 'If necessary, you may log out of all of your other browser sessions across all of your devices. Some of your recent sessions are listed below; however, this list may not be exhaustive. If you feel your account has been compromised, you should also update your password.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2282', '1', 'eng', 'modules', 'profile.unknown', 'Unknown', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2283', '1', 'eng', 'modules', 'profile.thisDevice', 'This Device', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2284', '1', 'eng', 'modules', 'profile.lastActive', 'Last Active', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2285', '1', 'eng', 'modules', 'profile.logOutOtherBrowserSessions', 'Log Out Other Browser Sessions', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2286', '1', 'eng', 'modules', 'profile.done', 'Done.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2287', '1', 'eng', 'modules', 'profile.confirmLogoutContent', 'Please enter your password to confirm you would like to log out of your other browser sessions across all of your devices.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2288', '1', 'eng', 'modules', 'profile.passwordConfirmationContent', 'For your security, please confirm your password to continue.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2289', '1', 'eng', 'modules', 'profile.confirm', 'Confirm', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2290', '1', 'eng', 'modules', 'profile.code', 'Code', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2291', '1', 'eng', 'modules', 'profile.recoveryCode', 'Recovery Code', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2292', '1', 'eng', 'modules', 'profile.useRecoveryCode', 'Use a recovery code', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2293', '1', 'eng', 'modules', 'profile.useAuthCode', 'Use an authentication code', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2294', '1', 'eng', 'modules', 'profile.login', 'Log In', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2295', '1', 'eng', 'modules', 'expenses.title', 'Expenses', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2296', '1', 'eng', 'modules', 'expenses.amount', 'Amount', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2297', '1', 'eng', 'modules', 'expenses.category', 'Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2298', '1', 'eng', 'modules', 'expenses.vendor', 'Vendor', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2299', '1', 'eng', 'modules', 'expenses.expenseDate', 'Expense Date', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2300', '1', 'eng', 'modules', 'expenses.paymentDate', 'Payment Date', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2301', '1', 'eng', 'modules', 'expenses.paymentDueDate', 'Due Date', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2302', '1', 'eng', 'modules', 'expenses.paymentMethod', 'Payment Method', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2303', '1', 'eng', 'modules', 'expenses.paymentStatus', 'Payment Status', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2304', '1', 'eng', 'modules', 'expenses.description', 'Description', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2305', '1', 'eng', 'modules', 'expenses.receipt', 'Receipt', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2306', '1', 'eng', 'modules', 'expenses.addExpense', 'Add Expense', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2307', '1', 'eng', 'modules', 'expenses.editExpense', 'Edit Expense', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2308', '1', 'eng', 'modules', 'expenses.deleteExpense', 'Delete Expense', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2309', '1', 'eng', 'modules', 'expenses.selectCategory', 'Select Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2310', '1', 'eng', 'modules', 'expenses.selectVendor', 'Select Vendor', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2311', '1', 'eng', 'modules', 'expenses.pending', 'Pending', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2312', '1', 'eng', 'modules', 'expenses.paid', 'Paid', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2313', '1', 'eng', 'modules', 'expenses.addCategory', 'Add Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2314', '1', 'eng', 'modules', 'expenses.addVendor', 'Add Vendor', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2315', '1', 'eng', 'modules', 'expenses.expenses', 'Expenses', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2316', '1', 'eng', 'modules', 'expenses.filterExpenseCategory', 'Filter by Expense Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2317', '1', 'eng', 'modules', 'expenses.filterPaymentMethod', 'Filter by Payment Method', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2318', '1', 'eng', 'modules', 'expenses.expensesCategory', 'Expenses Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2319', '1', 'eng', 'modules', 'expenses.expensesPaymentMethod', 'Payment Method', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2320', '1', 'eng', 'modules', 'expenses.filterVendor', 'Filter by Vendor', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2321', '1', 'eng', 'modules', 'expenses.expensesVendor', 'Vendor', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2322', '1', 'eng', 'modules', 'expenses.filterDateRange', 'Filter by Date Range', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2323', '1', 'eng', 'modules', 'expenses.expensesDateRange', 'Date Range', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2324', '1', 'eng', 'modules', 'expenses.startDate', 'Start Date', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2325', '1', 'eng', 'modules', 'expenses.endDate', 'End Date', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2326', '1', 'eng', 'modules', 'expenses.deleteExpensesMessage', 'Are you sure you want to delete the expense?', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2327', '1', 'eng', 'modules', 'expenses.total_amount_spent', 'Total Amount Spent', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2328', '1', 'eng', 'modules', 'expenses.no_of_transaction', 'Number of Transaction', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2329', '1', 'eng', 'modules', 'expenses.total_expense', 'Total Expense', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2330', '1', 'eng', 'modules', 'expenses.percentage_of_total', 'Percentage of Total', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2331', '1', 'eng', 'modules', 'expenses.addExpenseCategory', 'Add Expense Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2332', '1', 'eng', 'modules', 'expenses.receiptPreview', 'Receipt Preview', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2333', '1', 'eng', 'modules', 'expenses.expenseDetails', 'Expense Details', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2334', '1', 'eng', 'modules', 'expenses.expenseTitle', 'Expense Title', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2335', '1', 'eng', 'modules', 'expenses.expenseCategory', 'Expense Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2336', '1', 'eng', 'modules', 'expenses.expenseAmount', 'Expense Amount', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2337', '1', 'eng', 'modules', 'expenses.expenseDescription', 'Expense Description', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2338', '1', 'eng', 'modules', 'expenses.totalPaymentDue', 'Total Payment Due', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2339', '1', 'eng', 'modules', 'expenses.lastDueDate', 'Last Due Date', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2340', '1', 'eng', 'modules', 'expenses.status.paid', 'Paid', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2341', '1', 'eng', 'modules', 'expenses.status.pending', 'Pending', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2342', '1', 'eng', 'modules', 'expenses.status.approved', 'Approved', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2343', '1', 'eng', 'modules', 'expenses.status.rejected', 'Rejected', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2344', '1', 'eng', 'modules', 'expenses.methods.cash', 'Cash', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2345', '1', 'eng', 'modules', 'expenses.methods.bank_transfer', 'Bank Transfer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2346', '1', 'eng', 'modules', 'expenses.methods.credit_card', 'Credit Card', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2347', '1', 'eng', 'modules', 'expenses.methods.debit_card', 'Debit Card', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2348', '1', 'eng', 'modules', 'expenses.methods.check', 'Cheque', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2349', '1', 'eng', 'modules', 'expenses.methods.digital_wallet', 'Digital Wallet', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2350', '1', 'eng', 'modules', 'expenses.reports.outstandingPaymentReport', 'Outstanding Payment Report', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2351', '1', 'eng', 'modules', 'expenses.reports.vendorWiseExpensePaymentReport', 'Vendor Wise Expense Payment Report', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2352', '1', 'eng', 'modules', 'expenses.reports.expenseSummaryReport', 'Expense Summary Report', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2353', '1', 'eng', 'modules', 'expenses.reports.NoReportsFound', 'No reports Found', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2354', '1', 'eng', 'modules', 'expenses.reports.description', 'Description', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2355', '1', 'eng', 'modules', 'expenses.noReceiptAvailable', 'No receipt available.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2356', '1', 'eng', 'modules', 'expenses.editExpenseCategory', 'Edit Expense Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2357', '1', 'eng', 'modules', 'vendors.vendorName', 'Vendor Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2358', '1', 'eng', 'modules', 'vendors.vendors', 'Vendors', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2359', '1', 'eng', 'modules', 'vendors.addVendor', 'Add Vendor', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2360', '1', 'eng', 'modules', 'vendors.editVendor', 'Edit Vendor', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2361', '1', 'eng', 'modules', 'vendors.deleteVendor', 'Delete Vendor', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2362', '1', 'eng', 'modules', 'vendors.id', 'Id', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2363', '1', 'eng', 'modules', 'vendors.name', 'Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2364', '1', 'eng', 'modules', 'vendors.email', 'Email', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2365', '1', 'eng', 'modules', 'vendors.phone', 'Phone', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2366', '1', 'eng', 'modules', 'vendors.address', 'Address', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2367', '1', 'eng', 'modules', 'vendors.contactPerson', 'Contact Person', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2368', '1', 'eng', 'modules', 'vendors.actions', 'Actions', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2369', '1', 'eng', 'modules', 'vendors.deleteVendorMessage', 'Are you sure you want to delete Vendor ?', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2370', '1', 'eng', 'modules', 'modifier.menuItems', 'Menu Items', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2371', '1', 'eng', 'modules', 'modifier.menuCategories', 'Menu Categories', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2372', '1', 'eng', 'modules', 'modifier.addItemModifier', 'Add Item Modifier', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2373', '1', 'eng', 'modules', 'modifier.editItemModifier', 'Edit Item Modifier', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2374', '1', 'eng', 'modules', 'modifier.isRequired', 'Is Required', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2375', '1', 'eng', 'modules', 'modifier.sortOrder', 'Sort Order', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2376', '1', 'eng', 'modules', 'modifier.addModifierGroup', 'Add Modifier Group', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2377', '1', 'eng', 'modules', 'modifier.menuItemName', 'Menu Item Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2378', '1', 'eng', 'modules', 'modifier.modifierName', 'Modifier Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2379', '1', 'eng', 'modules', 'modifier.modifierDescription', 'Modifier Description', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2380', '1', 'eng', 'modules', 'modifier.modifierPrice', 'Modifier Price', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2381', '1', 'eng', 'modules', 'modifier.modifierType', 'Modifier Type', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2382', '1', 'eng', 'modules', 'modifier.chooseModifierType', 'Choose Modifier Type', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2383', '1', 'eng', 'modules', 'modifier.modifierCategory', 'Modifier Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2384', '1', 'eng', 'modules', 'modifier.addModifierCategory', 'Add Modifier Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2385', '1', 'eng', 'modules', 'modifier.editModifierCategory', 'Edit Modifier Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2386', '1', 'eng', 'modules', 'modifier.deleteModifierCategory', 'Delete Modifier Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2387', '1', 'eng', 'modules', 'modifier.modifierCategoryName', 'Modifier Category Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2388', '1', 'eng', 'modules', 'modifier.modifierCategoryDescription', 'Modifier Category Description', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2389', '1', 'eng', 'modules', 'modifier.deleteModifierMessage', 'Are you sure you want to delete the modifier?', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2390', '1', 'eng', 'modules', 'modifier.deleteModifierCategoryMessage', 'Are you sure you want to delete the modifier category?', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2391', '1', 'eng', 'modules', 'modifier.modifierHelp', 'Fill in the details below to add a new modifier.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2392', '1', 'eng', 'modules', 'modifier.modifierCategoryHelp', 'Fill in the details below to add a new modifier category.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2393', '1', 'eng', 'modules', 'modifier.deleteModifierGroup', 'Delete Modifier Group', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2394', '1', 'eng', 'modules', 'modifier.deleteModifierGroupMessage', 'Are you sure you want to delete the modifier group?', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2395', '1', 'eng', 'modules', 'modifier.updateItemModifier', 'Update Item Modifier', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2396', '1', 'eng', 'modules', 'modifier.deleteItemModifier', 'Delete Item Modifier', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2397', '1', 'eng', 'modules', 'modifier.deleteItemModifierMessage', 'Are you sure you want to delete the item modifier?', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2398', '1', 'eng', 'modules', 'modifier.updateModifierGroup', 'Update Modifier Group', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2399', '1', 'eng', 'modules', 'modifier.editModifierGroup', 'Edit Modifier Group', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2400', '1', 'eng', 'modules', 'modifier.addModifierOption', 'Add Modifier Option', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2401', '1', 'eng', 'modules', 'modifier.modifierGroup', 'Modifier Group', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2402', '1', 'eng', 'modules', 'modifier.options', 'Options', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2403', '1', 'eng', 'modules', 'modifier.name', 'name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2404', '1', 'eng', 'modules', 'modifier.description', 'Description', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2405', '1', 'eng', 'modules', 'modifier.isAvailable', 'Is Available', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2406', '1', 'eng', 'modules', 'modifier.selectMenuItem', 'Select Menu Item', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2407', '1', 'eng', 'modules', 'modifier.modifierOptions', 'Modifier Options', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2408', '1', 'eng', 'modules', 'modifier.price', 'Price', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2409', '1', 'eng', 'modules', 'modifier.locations', 'Locations', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2410', '1', 'eng', 'modules', 'modifier.addOn', 'Add Modifiers', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2411', '1', 'eng', 'modules', 'modifier.optionName', 'Option Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2412', '1', 'eng', 'modules', 'modifier.groupName', 'Group Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2413', '1', 'eng', 'modules', 'modifier.required', 'Required', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2414', '1', 'eng', 'modules', 'modifier.optional', 'Optional', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2415', '1', 'eng', 'modules', 'modifier.itemModifiers', 'Item Modifiers', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2416', '1', 'eng', 'modules', 'modifier.noMenuItemsFound', 'No menu item found.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2417', '1', 'eng', 'modules', 'modifier.allowMultipleSelection', 'Allow Multiple Selection', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2418', '1', 'eng', 'modules', 'modifier.allowMultipleSelectionDescription', 'Allow users to select multiple options', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2419', '1', 'eng', 'modules', 'modifier.selectModifierGroup', 'Select Modifier Group', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2420', '1', 'eng', 'modules', 'modifier.variations', 'Variations', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2421', '1', 'eng', 'modules', 'modifier.addOption', 'Add Option', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2422', '1', 'eng', 'modules', 'modifier.variationOptions', 'Variation Options', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2423', '1', 'eng', 'modules', 'modifier.selectMenuItemsHelpText', 'Select menu items to which this modifier group should be applied', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2424', '1', 'eng', 'modules', 'modifier.showTranslations', 'Show Translations', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2425', '1', 'eng', 'modules', 'modifier.selectVariation', 'Select Variation', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2426', '1', 'eng', 'modules', 'modifier.applyToBaseItem', 'Apply To Base Item', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2427', '1', 'eng', 'modules', 'modifier.variationDescription', 'Select Variation to which this modifier group should be applied', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2428', '1', 'eng', 'modules', 'report.totalSales', 'Total Sales', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2429', '1', 'eng', 'modules', 'report.orders', 'Orders', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2430', '1', 'eng', 'modules', 'report.cashPayments', 'Cash Payments', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2431', '1', 'eng', 'modules', 'report.digitalPayments', 'Digital Payments', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2432', '1', 'eng', 'modules', 'report.averageOrderValue', 'Average Order Value', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2433', '1', 'eng', 'modules', 'report.totalRevenue', 'Total Revenue', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2434', '1', 'eng', 'modules', 'report.imSales', 'Item Sales', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2435', '1', 'eng', 'modules', 'report.quantitySold', 'Quantity Sold', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2436', '1', 'eng', 'modules', 'report.topSellingItems', 'Top Selling Items', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2437', '1', 'eng', 'modules', 'report.sellingPrice', 'Selling Price', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2438', '1', 'eng', 'modules', 'report.salesByCategory', 'Sales By Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2439', '1', 'eng', 'modules', 'report.salesByPaymentMethod', 'Sales By Payment Method', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2440', '1', 'eng', 'modules', 'report.orderType', 'Order Type', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2441', '1', 'eng', 'modules', 'report.salesByTime', 'Sales By Time', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2442', '1', 'eng', 'modules', 'report.salesByDay', 'Sales By Day', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2443', '1', 'eng', 'modules', 'report.salesByMonth', 'Sales By Month', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2444', '1', 'eng', 'modules', 'report.salesByYear', 'Sales By Year', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2445', '1', 'eng', 'modules', 'report.totalTaxes', 'Total Taxes', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2446', '1', 'eng', 'modules', 'report.totalDiscounts', 'Total Discounts', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2447', '1', 'eng', 'modules', 'report.averageItems', 'Average Items Per Order', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2448', '1', 'eng', 'modules', 'report.grossSales', 'Gross Sales', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2449', '1', 'eng', 'modules', 'report.netSales', 'Net Sales', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2450', '1', 'eng', 'modules', 'report.totalRefunds', 'Total Refunds', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2451', '1', 'eng', 'modules', 'report.pendingPayments', 'Pending Payments', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2452', '1', 'eng', 'modules', 'report.canceledOrders', 'Canceled Orders', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2453', '1', 'eng', 'modules', 'report.totalOrders', 'Total Orders', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2454', '1', 'eng', 'modules', 'report.totalQuantitySold', 'Total Quantity Sold', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2455', '1', 'eng', 'modules', 'report.sumOfTotalRevenue', 'Sum of Total Revenue', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2456', '1', 'eng', 'modules', 'report.totalCharges', 'Total Charges', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2457', '1', 'eng', 'modules', 'report.itemReportMessage', 'View detailed sales and performance of items', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2458', '1', 'eng', 'modules', 'report.salesReportMessage', 'Check and track your restaurant\'s earnings', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2459', '1', 'eng', 'modules', 'report.categoryReportMessage', 'See sales by category to understand performance', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2460', '1', 'eng', 'modules', 'report.printLogMessage', 'View print job history and status from :startDate to :endDate', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2461', '1', 'eng', 'modules', 'report.totalPrintJobs', 'Total Print Jobs', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2462', '1', 'eng', 'modules', 'report.pendingJobs', 'Pending Jobs', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2463', '1', 'eng', 'modules', 'report.completedJobs', 'Completed Jobs', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2464', '1', 'eng', 'modules', 'report.failedJobs', 'Failed Jobs', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2465', '1', 'eng', 'modules', 'report.printerStatistics', 'Printer Statistics', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2466', '1', 'eng', 'modules', 'report.printJobDetails', 'Print Job Details', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2467', '1', 'eng', 'modules', 'report.basicInformation', 'Basic Information', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2468', '1', 'eng', 'modules', 'report.printContent', 'Print Content', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2469', '1', 'eng', 'modules', 'report.noContentAvailable', 'No content available', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2470', '1', 'eng', 'modules', 'report.retryPrint', 'Retry Print', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2471', '1', 'eng', 'modules', 'report.printJobNotFound', 'Print Job Not Found', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2472', '1', 'eng', 'modules', 'report.printJobNotFoundMessage', 'The requested print job could not be found or you do not have permission to view it.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2473', '1', 'eng', 'modules', 'report.paymentMethods', 'Payment Methods', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2474', '1', 'eng', 'modules', 'report.traditionalPayments', 'Traditional Payments', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2475', '1', 'eng', 'modules', 'report.paymentGateways', 'Payment Gateways', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2476', '1', 'eng', 'modules', 'report.additionalAmounts', 'Additional Amounts', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2477', '1', 'eng', 'modules', 'report.salesDataFor', 'Sales Data For', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2478', '1', 'eng', 'modules', 'report.timePeriod', 'Time Period', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2479', '1', 'eng', 'modules', 'report.timePeriodEachDay', 'Time Period Each Day', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2480', '1', 'eng', 'modules', 'report.salesDataFrom', 'Sales Data From', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2481', '1', 'eng', 'modules', 'report.salesDataTo', 'Sales Data To', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2482', '1', 'eng', 'modules', 'report.timePeriodEachMonth', 'Time Period Each Month', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2483', '1', 'eng', 'modules', 'report.timePeriodEachYear', 'Time Period Each Year', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2484', '1', 'eng', 'modules', 'report.taxDetails', 'Tax Details', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2485', '1', 'eng', 'modules', 'report.taxMode', 'Tax Mode', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2486', '1', 'eng', 'modules', 'report.totalTaxCollection', 'Total Tax Collection', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2487', '1', 'eng', 'modules', 'report.activeTaxes', 'Active Taxes', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2488', '1', 'eng', 'modules', 'report.mode', 'Mode', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2489', '1', 'eng', 'modules', 'report.taxBreakdownFor', 'Tax Breakdown For', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2490', '1', 'eng', 'modules', 'report.itemLevelTaxBreakdown', 'Item Level Tax Breakdown', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2491', '1', 'eng', 'modules', 'report.orderLevelTaxBreakdown', 'Order Level Tax Breakdown', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2492', '1', 'eng', 'modules', 'report.fromActualBreakdown', 'From Actual Breakdown', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2493', '1', 'eng', 'modules', 'report.taxBreakdown', 'Tax Breakdown', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2494', '1', 'eng', 'modules', 'report.taxRate', 'Tax Rate', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2495', '1', 'eng', 'modules', 'report.taxAmount', 'Tax Amount', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2496', '1', 'eng', 'modules', 'report.taxPercentage', 'Tax Percentage', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2497', '1', 'eng', 'modules', 'report.ordersWithTax', 'Orders with Tax', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2498', '1', 'eng', 'modules', 'report.viewTaxDetails', 'View Tax Details', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2499', '1', 'eng', 'modules', 'report.viewItemTaxBreakdown', 'View Item Tax Breakdown', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2500', '1', 'eng', 'modules', 'report.totalTaxAmount', 'Total Tax Amount', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2501', '1', 'eng', 'modules', 'report.outstandingPayments', 'Outstanding Payments', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2502', '1', 'eng', 'modules', 'report.outstandingOrders', 'Outstanding Orders', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2503', '1', 'eng', 'modules', 'report.averageOutstanding', 'Average Outstanding', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2504', '1', 'eng', 'modules', 'kot.kitchen_order_ticket', 'KITCHEN ORDER TICKET', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2505', '1', 'eng', 'modules', 'kot.order_number', 'Order # :number', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2506', '1', 'eng', 'modules', 'kot.kot_number', 'KOT # :number', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2507', '1', 'eng', 'modules', 'kot.date', 'Date: :date', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2508', '1', 'eng', 'modules', 'kot.time', 'Time: :time', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2509', '1', 'eng', 'modules', 'kot.item', 'Item', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2510', '1', 'eng', 'modules', 'kot.qty', 'Qty', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2511', '1', 'eng', 'modules', 'kot.special_instructions', 'Special Instructions:', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2512', '1', 'eng', 'modules', 'kot.print_success', 'Printed Successfully!', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2513', '1', 'eng', 'modules', 'kot.print_failed', 'Print Failed! :error', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2514', '1', 'eng', 'modules', 'printerSetting.browserPopupPrint', 'Browser Popup Print', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2515', '1', 'eng', 'modules', 'printerSetting.directPrint', 'Direct Print', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2516', '1', 'eng', 'modules', 'printerSetting.title', 'Title (To identify printer easily)', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2517', '1', 'eng', 'modules', 'printerSetting.printChoice', 'Printing Choice', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2518', '1', 'eng', 'modules', 'printerSetting.printFormat', 'Print Format', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2519', '1', 'eng', 'modules', 'printerSetting.noAutoKotPrint', 'No Auto KOT Print', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2520', '1', 'eng', 'modules', 'printerSetting.thermal56mm', 'Thermal 56mm', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2521', '1', 'eng', 'modules', 'printerSetting.thermal80mm', 'Thermal 80mm', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2522', '1', 'eng', 'modules', 'printerSetting.invoiceQrCode', 'Invoice QR Code', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2523', '1', 'eng', 'modules', 'printerSetting.disable', 'Disable', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2524', '1', 'eng', 'modules', 'printerSetting.regularQrCode', 'Regular QR Code', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2525', '1', 'eng', 'modules', 'printerSetting.printerType', 'Printer Type', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2526', '1', 'eng', 'modules', 'printerSetting.networkPrinter', 'Network Printer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2527', '1', 'eng', 'modules', 'printerSetting.usbPrinter', 'USB Printer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2528', '1', 'eng', 'modules', 'printerSetting.charactersPerLine', 'Characters Per Line', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2529', '1', 'eng', 'modules', 'printerSetting.printerIPAddress', 'Printer IP Address', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2530', '1', 'eng', 'modules', 'printerSetting.printerPortAddress', 'Printer Port Address', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2531', '1', 'eng', 'modules', 'printerSetting.shareName', 'Printer Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2532', '1', 'eng', 'modules', 'printerSetting.openCashDrawerWhenPrintingInvoice', 'Open Cash Drawer When Printing Invoice', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2533', '1', 'eng', 'modules', 'printerSetting.yes', 'Yes', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2534', '1', 'eng', 'modules', 'printerSetting.no', 'No', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2535', '1', 'eng', 'modules', 'printerSetting.ipv4Address', 'IPv4 Address', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2536', '1', 'eng', 'modules', 'printerSetting.thermalPrinter', 'Thermal Printer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2537', '1', 'eng', 'modules', 'printerSetting.nonThermalPrinter', 'Non Thermal Printer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2538', '1', 'eng', 'modules', 'printerSetting.name', 'Printer Name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2539', '1', 'eng', 'modules', 'printerSetting.printingChoice', 'Printing Choice', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2540', '1', 'eng', 'modules', 'printerSetting.ipAddress', 'IP Address', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2541', '1', 'eng', 'modules', 'printerSetting.port', 'Port', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2542', '1', 'eng', 'modules', 'printerSetting.action', 'Actions', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2543', '1', 'eng', 'modules', 'printerSetting.deletePritnerConfirm', 'Are you sure you want to delete this printer?', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2544', '1', 'eng', 'modules', 'printerSetting.deletePrinter', 'Delete Printer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2545', '1', 'eng', 'modules', 'printerSetting.isThermal', 'Is Thermal', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2546', '1', 'eng', 'modules', 'printerSetting.printer_offline', 'Printer is offline', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2547', '1', 'eng', 'modules', 'printerSetting.printer_online', 'Printer is online', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2548', '1', 'eng', 'modules', 'printerSetting.printer_not_found', 'Printer not found', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2549', '1', 'eng', 'modules', 'printerSetting.kotSelection', 'Select Kitchen', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2550', '1', 'eng', 'modules', 'printerSetting.orderSelection', 'Select Pos Terminal', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2551', '1', 'eng', 'modules', 'printerSetting.selectedKitchens', 'Selected Kitchens', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2552', '1', 'eng', 'modules', 'printerSetting.selectedPosTerminal', 'Selected Pos Terminal', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2553', '1', 'eng', 'modules', 'printerSetting.addPrinter', 'Add Printer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2554', '1', 'eng', 'modules', 'printerSetting.isDefault', 'Is Default', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2555', '1', 'eng', 'modules', 'printerSetting.paymentGateways', 'Payment Gateways', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2556', '1', 'eng', 'modules', 'printerSetting.additionalAmounts', 'Additional Amounts', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2557', '1', 'eng', 'modules', 'printerSetting.network', 'Network', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2558', '1', 'eng', 'modules', 'printerSetting.windows', 'Windows', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2559', '1', 'eng', 'modules', 'printerSetting.kitchens', 'Kitchens', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2560', '1', 'eng', 'modules', 'printerSetting.orders', 'Orders', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2561', '1', 'eng', 'modules', 'printerSetting.default', 'Default', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2562', '1', 'eng', 'modules', 'printerSetting.select', 'Select', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2563', '1', 'eng', 'modules', 'printerSetting.isActive', 'Is Active', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2564', '1', 'eng', 'modules', 'printerSetting.thermal112mm', 'Thermal 112mm', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2565', '1', 'eng', 'modules', 'printerSetting.traditionalPayments', 'Traditional Payments', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2566', '1', 'eng', 'modules', 'printerSetting.salesDataFor', 'Data for', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2567', '1', 'eng', 'modules', 'printerSetting.timePeriod', 'Time period:', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2568', '1', 'eng', 'modules', 'printerSetting.salesDataFrom', 'Data from', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2569', '1', 'eng', 'modules', 'printerSetting.timePeriodEachDay', 'Time period each day:', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2570', '1', 'eng', 'modules', 'printerSetting.connected', 'Connected', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2571', '1', 'eng', 'modules', 'printerSetting.disconnected', 'Disconnected', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2572', '1', 'eng', 'modules', 'printerSetting.desktopAppConnection', 'Desktop App Connection', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2573', '1', 'eng', 'modules', 'printerSetting.domainUrl', 'Domain URL', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2574', '1', 'eng', 'modules', 'printerSetting.branchKey', 'API Key', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2575', '1', 'eng', 'modules', 'printerSetting.instructions', 'Instructions', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2576', '1', 'eng', 'modules', 'printerSetting.instruction1', 'Download and install the desktop app on your computer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2577', '1', 'eng', 'modules', 'printerSetting.instruction2', 'Open the desktop app and go to settings', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2578', '1', 'eng', 'modules', 'printerSetting.instruction3', 'Enter the Domain URL and Branch Key shown above', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2579', '1', 'eng', 'modules', 'printerSetting.instruction4', 'Click connect to establish the connection', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2580', '1', 'eng', 'modules', 'printerSetting.assigned', 'Assigned', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2581', '1', 'eng', 'modules', 'printerSetting.idle', 'Idle', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2582', '1', 'eng', 'modules', 'printerSetting.selectIdleKitchens', 'Select only idle (unassigned) kitchens to assign to this printer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2583', '1', 'eng', 'modules', 'printerSetting.selectIdlePosTerminals', 'Select only idle (unassigned) POS terminals to assign to this printer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2584', '1', 'eng', 'modules', 'printerSetting.currentlyAssigned', 'Currently Assigned', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2585', '1', 'eng', 'modules', 'printerSetting.selectKitchensForPrinter', 'Select kitchens to assign to this printer (currently assigned ones are pre-selected)', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2586', '1', 'eng', 'modules', 'printerSetting.selectPosTerminalsForPrinter', 'Select POS terminals to assign to this printer (currently assigned ones are pre-selected)', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2587', '1', 'eng', 'modules', 'printerSetting.shareNameDescription', 'Please enter the exact printer name showing on your Desktop', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2588', '1', 'eng', 'modules', 'printerSetting.details', 'Details', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2589', '1', 'eng', 'modules', 'printerSetting.downloadDesktopApp', 'Download Desktop App', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2590', '1', 'eng', 'modules', 'printerSetting.downloadNow', 'Download Now', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2591', '1', 'eng', 'modules', 'printerSetting.desktopAppRequired', 'Desktop App Required', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2592', '1', 'eng', 'modules', 'printerSetting.directPrintDesktopAppNote', 'For direct printing to work, you need to have the desktop app running in the background on your computer. The desktop app acts as a bridge between your web application and the physical printer.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2593', '1', 'eng', 'modules', 'printerSetting.downloadDesktopAppWindows', 'Download the desktop app for Windows to enable direct printing', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2594', '1', 'eng', 'modules', 'printerSetting.downloadDesktopAppMac', 'Download the desktop app for macOS to enable direct printing', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2595', '1', 'eng', 'modules', 'printerSetting.downloadForWindows', 'Download for Windows', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2596', '1', 'eng', 'modules', 'printerSetting.downloadForMac', 'Download for macOS', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2597', '1', 'eng', 'modules', 'moduleLicenseStatus.moduleLicenseStatus', 'Module License Status', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2598', '1', 'eng', 'modules', 'moduleLicenseStatus.licensed', 'Licensed', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2599', '1', 'eng', 'modules', 'moduleLicenseStatus.verificationRequired', 'Verification Required', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2600', '1', 'eng', 'modules', 'moduleLicenseStatus.notActivated', 'Not Activated', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2601', '1', 'eng', 'modules', 'moduleLicenseStatus.supportExpired', 'Support Expired', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2602', '1', 'eng', 'modules', 'moduleLicenseStatus.supportUntil', 'Support Until', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2603', '1', 'eng', 'modules', 'moduleLicenseStatus.supportExpiredMessage', 'Support expired on', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2604', '1', 'eng', 'modules', 'moduleLicenseStatus.supportUntilMessage', 'Support until', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2605', '1', 'eng', 'pagination', 'previous', '&laquo; Previous', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2606', '1', 'eng', 'pagination', 'next', 'Next &raquo;', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2607', '1', 'eng', 'passwords', 'reset', 'Your password has been reset.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2608', '1', 'eng', 'passwords', 'sent', 'We have emailed your password reset link.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2609', '1', 'eng', 'passwords', 'throttled', 'Please wait before retrying.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2610', '1', 'eng', 'passwords', 'token', 'This password reset token is invalid.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2611', '1', 'eng', 'passwords', 'user', 'We can\'t find a user with that email address.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2612', '1', 'eng', 'passwords', 'reset_subject', 'Reset Password Notification - :app_name', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2613', '1', 'eng', 'passwords', 'reset_line1', 'You are receiving this email because we received a password reset request for your account.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2614', '1', 'eng', 'passwords', 'reset_line2', 'Click the button below to reset your password:', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2615', '1', 'eng', 'passwords', 'reset_action', 'Reset Password', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2616', '1', 'eng', 'passwords', 'reset_line3', 'This password reset link will expire in :count minutes.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2617', '1', 'eng', 'passwords', 'reset_line4', 'If you did not request a password reset, no further action is required.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2618', '1', 'eng', 'permissions', 'permissions.Create Menu', 'Create Menu', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2619', '1', 'eng', 'permissions', 'permissions.Show Menu', 'Show Menu', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2620', '1', 'eng', 'permissions', 'permissions.Update Menu', 'Update Menu', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2621', '1', 'eng', 'permissions', 'permissions.Delete Menu', 'Delete Menu', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2622', '1', 'eng', 'permissions', 'permissions.Create Menu Item', 'Create Menu Item', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2623', '1', 'eng', 'permissions', 'permissions.Show Menu Item', 'Show Menu Item', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2624', '1', 'eng', 'permissions', 'permissions.Update Menu Item', 'Update Menu Item', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2625', '1', 'eng', 'permissions', 'permissions.Delete Menu Item', 'Delete Menu Item', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2626', '1', 'eng', 'permissions', 'permissions.Create Item Category', 'Create Item Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2627', '1', 'eng', 'permissions', 'permissions.Show Item Category', 'Show Item Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2628', '1', 'eng', 'permissions', 'permissions.Update Item Category', 'Update Item Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2629', '1', 'eng', 'permissions', 'permissions.Delete Item Category', 'Delete Item Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2630', '1', 'eng', 'permissions', 'permissions.Create Area', 'Create Area', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2631', '1', 'eng', 'permissions', 'permissions.Show Area', 'Show Area', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2632', '1', 'eng', 'permissions', 'permissions.Update Area', 'Update Area', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2633', '1', 'eng', 'permissions', 'permissions.Delete Area', 'Delete Area', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2634', '1', 'eng', 'permissions', 'permissions.Create Table', 'Create Table', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2635', '1', 'eng', 'permissions', 'permissions.Show Table', 'Show Table', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2636', '1', 'eng', 'permissions', 'permissions.Update Table', 'Update Table', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2637', '1', 'eng', 'permissions', 'permissions.Delete Table', 'Delete Table', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2638', '1', 'eng', 'permissions', 'permissions.Create Reservation', 'Create Reservation', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2639', '1', 'eng', 'permissions', 'permissions.Show Reservation', 'Show Reservation', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2640', '1', 'eng', 'permissions', 'permissions.Update Reservation', 'Update Reservation', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2641', '1', 'eng', 'permissions', 'permissions.Delete Reservation', 'Delete Reservation', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2642', '1', 'eng', 'permissions', 'permissions.Manage KOT', 'Manage KOT', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2643', '1', 'eng', 'permissions', 'permissions.Create Order', 'Create Order', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2644', '1', 'eng', 'permissions', 'permissions.Show Order', 'Show Order', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2645', '1', 'eng', 'permissions', 'permissions.Update Order', 'Update Order', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2646', '1', 'eng', 'permissions', 'permissions.Delete Order', 'Delete Order', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2647', '1', 'eng', 'permissions', 'permissions.Create Customer', 'Create Customer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2648', '1', 'eng', 'permissions', 'permissions.Show Customer', 'Show Customer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2649', '1', 'eng', 'permissions', 'permissions.Update Customer', 'Update Customer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2650', '1', 'eng', 'permissions', 'permissions.Delete Customer', 'Delete Customer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2651', '1', 'eng', 'permissions', 'permissions.Create Staff Member', 'Create Staff Member', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2652', '1', 'eng', 'permissions', 'permissions.Show Staff Member', 'Show Staff Member', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2653', '1', 'eng', 'permissions', 'permissions.Update Staff Member', 'Update Staff Member', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2654', '1', 'eng', 'permissions', 'permissions.Delete Staff Member', 'Delete Staff Member', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2655', '1', 'eng', 'permissions', 'permissions.Create Delivery Executive', 'Create Delivery Executive', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2656', '1', 'eng', 'permissions', 'permissions.Show Delivery Executive', 'Show Delivery Executive', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2657', '1', 'eng', 'permissions', 'permissions.Update Delivery Executive', 'Update Delivery Executive', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2658', '1', 'eng', 'permissions', 'permissions.Delete Delivery Executive', 'Delete Delivery Executive', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2659', '1', 'eng', 'permissions', 'permissions.Show Payments', 'Show Payments', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2660', '1', 'eng', 'permissions', 'permissions.Show Reports', 'Show Reports', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2661', '1', 'eng', 'permissions', 'permissions.Manage Settings', 'Manage Settings', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2662', '1', 'eng', 'permissions', 'permissions.Manage Waiter Request', 'Manage Waiter Request', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2663', '1', 'eng', 'permissions', 'permissions.Create Expense', 'Create Expenses', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2664', '1', 'eng', 'permissions', 'permissions.Show Expense', 'Show Expenses', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2665', '1', 'eng', 'permissions', 'permissions.Update Expense', 'Update Expenses', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2666', '1', 'eng', 'permissions', 'permissions.Delete Expense', 'Delete Expenses', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2667', '1', 'eng', 'permissions', 'permissions.Create Vendor', 'Create Vendor', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2668', '1', 'eng', 'permissions', 'permissions.Show Vendor', 'Show Vendor', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2669', '1', 'eng', 'permissions', 'permissions.Update Vendor', 'Update Vendor', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2670', '1', 'eng', 'permissions', 'permissions.Delete Vendor', 'Delete Vendor', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2671', '1', 'eng', 'permissions', 'permissions.Create Inventory Item', 'Create Inventory Item', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2672', '1', 'eng', 'permissions', 'permissions.Show Inventory Item', 'Show Inventory Item', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2673', '1', 'eng', 'permissions', 'permissions.Update Inventory Item', 'Update Inventory Item', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2674', '1', 'eng', 'permissions', 'permissions.Delete Inventory Item', 'Delete Inventory Item', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2675', '1', 'eng', 'permissions', 'permissions.Create Inventory Movement', 'Create Inventory Movement', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2676', '1', 'eng', 'permissions', 'permissions.Show Inventory Movement', 'Show Inventory Movement', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2677', '1', 'eng', 'permissions', 'permissions.Update Inventory Movement', 'Update Inventory Movement', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2678', '1', 'eng', 'permissions', 'permissions.Delete Inventory Movement', 'Delete Inventory Movement', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2679', '1', 'eng', 'permissions', 'permissions.Create Unit', 'Create Unit', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2680', '1', 'eng', 'permissions', 'permissions.Show Unit', 'Show Unit', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2681', '1', 'eng', 'permissions', 'permissions.Update Unit', 'Update Unit', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2682', '1', 'eng', 'permissions', 'permissions.Delete Unit', 'Delete Unit', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2683', '1', 'eng', 'permissions', 'permissions.Create Recipe', 'Create Recipe', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2684', '1', 'eng', 'permissions', 'permissions.Show Recipe', 'Show Recipe', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2685', '1', 'eng', 'permissions', 'permissions.Update Recipe', 'Update Recipe', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2686', '1', 'eng', 'permissions', 'permissions.Delete Recipe', 'Delete Recipe', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2687', '1', 'eng', 'permissions', 'permissions.Create Purchase Order', 'Create Purchase Order', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2688', '1', 'eng', 'permissions', 'permissions.Show Purchase Order', 'Show Purchase Order', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2689', '1', 'eng', 'permissions', 'permissions.Update Purchase Order', 'Update Purchase Order', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2690', '1', 'eng', 'permissions', 'permissions.Delete Purchase Order', 'Delete Purchase Order', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2691', '1', 'eng', 'permissions', 'permissions.Show Report', 'Show Report', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2692', '1', 'eng', 'permissions', 'permissions.Update Settings', 'Update Settings', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2693', '1', 'eng', 'permissions', 'permissions.Show Inventory Stock', 'Show Inventory Stock', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2694', '1', 'eng', 'permissions', 'permissions.Show Inventory Report', 'Show Inventory Report', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2695', '1', 'eng', 'permissions', 'permissions.Update Inventory Settings', 'Update Inventory Settings', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2696', '1', 'eng', 'permissions', 'permissions.Show Supplier', 'Show Supplier', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2697', '1', 'eng', 'permissions', 'permissions.Create Supplier', 'Create Supplier', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2698', '1', 'eng', 'permissions', 'permissions.Update Supplier', 'Update Supplier', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2699', '1', 'eng', 'permissions', 'permissions.Delete Supplier', 'Delete Supplier', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2700', '1', 'eng', 'permissions', 'permissions.Create Expense Category', 'Create Expense Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2701', '1', 'eng', 'permissions', 'permissions.Show Expense Category', 'Show Expense Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2702', '1', 'eng', 'permissions', 'permissions.Update Expense Category', 'Update Expense Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2703', '1', 'eng', 'permissions', 'permissions.Delete Expense Category', 'Delete Expense Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2704', '1', 'eng', 'permissions', 'permissions.Show Kitchen Place', 'Show Kitchen Place', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2705', '1', 'eng', 'permissions', 'permissions.Create Kitchen Place', 'Create Kitchen Place', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2706', '1', 'eng', 'permissions', 'permissions.Update Kitchen Place', 'Update Kitchen Place', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2707', '1', 'eng', 'permissions', 'permissions.Delete Kitchen Place', 'Delete Kitchen Place', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2708', '1', 'eng', 'permissions', 'permissions.Update Sms Settings', 'Update Sms Settings', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2709', '1', 'eng', 'permissions', 'permissions.Log Cash Register', 'Log Cash Register', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2710', '1', 'eng', 'permissions', 'permissions.Approve Cash Register', 'Approve Cash Register', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2711', '1', 'eng', 'permissions', 'permissions.Manage Cash Register Settings', 'Manage Cash Register Settings', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2712', '1', 'eng', 'permissions', 'permissions.View Cash Register Reports', 'View Cash Register Reports', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2713', '1', 'eng', 'permissions', 'permissions.Manage Cash Denominations', 'Manage Cash Denominations', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2714', '1', 'eng', 'permissions', 'permissions.Manage Cash Register', 'Manage Cash Register Settings', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2715', '1', 'eng', 'permissions', 'permissions.Manage Denominations', 'Manage Cash Denominations', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2716', '1', 'eng', 'permissions', 'permissions.Open Register', 'Open Cash Register', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2717', '1', 'eng', 'permissions', 'permissions.View Cash Register Sessions', 'View Cash Register Sessions', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2718', '1', 'eng', 'permissions', 'permissions.Close Cash Register', 'Close Cash Register', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2719', '1', 'eng', 'permissions', 'permissions.Open Cash Register', 'Open Cash Register', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2720', '1', 'eng', 'permissions', 'modules.Menu', 'Menu', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2721', '1', 'eng', 'permissions', 'modules.Menu Item', 'Menu Item', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2722', '1', 'eng', 'permissions', 'modules.Item Category', 'Item Category', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2723', '1', 'eng', 'permissions', 'modules.Area', 'Area', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2724', '1', 'eng', 'permissions', 'modules.Table', 'Table', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2725', '1', 'eng', 'permissions', 'modules.Reservation', 'Reservation', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2726', '1', 'eng', 'permissions', 'modules.KOT', 'KOT', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2727', '1', 'eng', 'permissions', 'modules.Order', 'Order', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2728', '1', 'eng', 'permissions', 'modules.Customer', 'Customer', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2729', '1', 'eng', 'permissions', 'modules.Staff', 'Staff', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2730', '1', 'eng', 'permissions', 'modules.Delivery Executive', 'Delivery Executive', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2731', '1', 'eng', 'permissions', 'modules.Payment', 'Payment', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2732', '1', 'eng', 'permissions', 'modules.Report', 'Report', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2733', '1', 'eng', 'permissions', 'modules.Settings', 'Settings', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2734', '1', 'eng', 'permissions', 'modules.Waiter Request', 'Waiter Request', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2735', '1', 'eng', 'permissions', 'modules.Expense', 'Expenses', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2736', '1', 'eng', 'permissions', 'modules.Vendor', 'Vendor', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2737', '1', 'eng', 'permissions', 'modules.Inventory', 'Inventory', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2738', '1', 'eng', 'permissions', 'modules.Sms', 'Sms', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2739', '1', 'eng', 'permissions', 'modules.Change Branch', 'Change Branch', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2740', '1', 'eng', 'permissions', 'modules.Export Report', 'Export Report', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2741', '1', 'eng', 'permissions', 'modules.Table Reservation', 'Table Reservation', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2742', '1', 'eng', 'permissions', 'modules.Payment Gateway Integration', 'Payment Gateway Integration', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2743', '1', 'eng', 'permissions', 'modules.Theme Setting', 'Theme Setting', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2744', '1', 'eng', 'permissions', 'modules.Kitchen', 'Multiple Kitchen', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2745', '1', 'eng', 'permissions', 'modules.Customer Display', 'Customer Display', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2746', '1', 'eng', 'permissions', 'modules.Open Register', 'Open Register', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2747', '1', 'eng', 'permissions', 'modules.Kiosk', 'Kiosk', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2748', '1', 'eng', 'permissions', 'modules.Cash Register', 'Cash Register', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2749', '1', 'eng', 'placeholders', 'menuNamePlaceholder', 'e.g. Breakfast', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2750', '1', 'eng', 'placeholders', 'searchMenus', 'Search your menu here', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2751', '1', 'eng', 'placeholders', 'searchMenuItems', 'Search your menu item here', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2752', '1', 'eng', 'placeholders', 'menuItemNamePlaceholder', 'e.g., Margherita Pizza', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2753', '1', 'eng', 'placeholders', 'itemVariationPlaceholder', 'e.g., Small', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2754', '1', 'eng', 'placeholders', 'itemDescriptionPlaceholder', 'e.g., A classic Italian pizza with fresh tomatoes and basil.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2755', '1', 'eng', 'placeholders', 'categoryNamePlaceholder', 'e.g., Desserts', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2756', '1', 'eng', 'placeholders', 'searchItemCategory', 'Search your item category here', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2757', '1', 'eng', 'placeholders', 'areaNamePlaceholder', 'e.g. Rooftop', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2758', '1', 'eng', 'placeholders', 'tableCodePlaceholder', 'e.g. T01', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2759', '1', 'eng', 'placeholders', 'tableSeatPlaceholder', 'Enter number of seats (e.g., 4)', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2760', '1', 'eng', 'placeholders', 'searchCustomers', 'Search by name, email or phone number', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2761', '1', 'eng', 'placeholders', 'searchStaffmember', 'Search by name or email', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2762', '1', 'eng', 'placeholders', 'searchPackages', 'Search your package here', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2763', '1', 'eng', 'placeholders', 'restaurantNamePlaceHolder', 'e.g., The Midtown Cafe', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2764', '1', 'eng', 'placeholders', 'searchPayments', 'Search payments by amount, method, TX ID', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2765', '1', 'eng', 'placeholders', 'searchDuePayments', 'Search payments by amount or order #', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2766', '1', 'eng', 'placeholders', 'methodExamples', 'e.g., Cash, Cheque, Bank Transfer, etc.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2767', '1', 'eng', 'placeholders', 'methodDescription', 'e.g., via USD dollar, etc.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2768', '1', 'eng', 'placeholders', 'facebookPlaceHolder', 'Enter your Facebook URL', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2769', '1', 'eng', 'placeholders', 'instagramPlaceHolder', 'Enter your Instagram URL', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2770', '1', 'eng', 'placeholders', 'twitterPlaceHolder', 'Enter your Twitter handle', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2771', '1', 'eng', 'placeholders', 'yelpPlaceHolder', 'Enter your Yelp URL', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2772', '1', 'eng', 'placeholders', 'metaKeywordPlaceHolder', 'Enter Comma Saperated keyword', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2773', '1', 'eng', 'placeholders', 'metaDescriptionPlaceHolder', 'Enter Meta Description', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2774', '1', 'eng', 'placeholders', 'languageCodePlaceholder', 'e.g., en, ar, fr, etc.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2775', '1', 'eng', 'placeholders', 'languageNamePlaceholder', 'e.g., English, Arabic, French, etc.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2776', '1', 'eng', 'placeholders', 'flagCodePlaceholder', 'e.g., us, gb, sa, etc.', '2025-10-15 14:29:36', '2025-10-15 14:29:36'),
('2777', '1', 'eng', 'placeholders', 'modifierOptionNamePlaceholder', 'e.g., Extra Cheese', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2778', '1', 'eng', 'placeholders', 'modifierOptionPricePlaceholder', 'e.g., 1.50', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2779', '1', 'eng', 'placeholders', 'modifierOptionSortOrderPlaceholder', 'e.g., 1', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2780', '1', 'eng', 'placeholders', 'modifierGroupNamePlaceholder', 'e.g., Toppings', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2781', '1', 'eng', 'placeholders', 'modifierGroupDescriptionPlaceholder', 'e.g., Additional toppings for your pizza.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2782', '1', 'eng', 'placeholders', 'purchaseCode', 'e.g. 147778a2-dfa2-424e-a29f-xxxxxxxxx', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2783', '1', 'eng', 'placeholders', 'addTitle', 'Add Expense Title', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2784', '1', 'eng', 'placeholders', 'addDescription', 'Add Expense Description', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2785', '1', 'eng', 'placeholders', 'addAmount', 'Add Amount', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2786', '1', 'eng', 'placeholders', 'expense', 'Expense', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2787', '1', 'eng', 'placeholders', 'vendors', 'Vendors', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2788', '1', 'eng', 'placeholders', 'vendorName', 'Vendor Name', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2789', '1', 'eng', 'placeholders', 'vendorEmail', 'Vendor Email', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2790', '1', 'eng', 'placeholders', 'vendorPhone', 'Vendor Phone', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2791', '1', 'eng', 'placeholders', 'vendorAddress', 'Vendor Address', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2792', '1', 'eng', 'placeholders', 'contactPerson', 'Contact Person', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2793', '1', 'eng', 'placeholders', 'expensesCategory', 'Expenses Category', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2794', '1', 'eng', 'placeholders', 'searchMenuItem', 'Search Menu Item', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2795', '1', 'eng', 'placeholders', 'customerName', 'Add Customer Name', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2796', '1', 'eng', 'placeholders', 'customerEmail', 'Add Customer Email', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2797', '1', 'eng', 'placeholders', 'customerPhone', 'Add Customer Phone', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2798', '1', 'eng', 'placeholders', 'customerAddress', 'Add Customer Address', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2799', '1', 'eng', 'placeholders', 'metaTtilePlaceHolder', 'Enter Meta Title', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2800', '1', 'eng', 'placeholders', 'menuNamePlaceHolder', 'Add Menu Name', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2801', '1', 'eng', 'placeholders', 'menuSlugPlaceHolder', 'Add Menu Slug', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2802', '1', 'eng', 'placeholders', 'menuContentPlaceHolder', 'Add Menu Content', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2803', '1', 'eng', 'placeholders', 'enterCustomAmountPlaceholder', 'Enter custom amount', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2804', '1', 'eng', 'placeholders', 'addNotePlaceholder', 'Add a note with your tip...', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2805', '1', 'eng', 'placeholders', 'addOrderNotesPlaceholder', 'Add order notes here...', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2806', '1', 'eng', 'placeholders', 'enterExpenseCategoryName', 'Enter Category Name', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2807', '1', 'eng', 'placeholders', 'enterExpenseCategoryDescription', 'Enter Category Description', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2808', '1', 'eng', 'placeholders', 'addPrinterName', 'Add Printer Name', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2809', '1', 'eng', 'placeholders', 'addPrinterSharedName', 'Add Printer Name', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2810', '1', 'eng', 'placeholders', 'IpAddress', 'Add Printer IP Address', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2811', '1', 'eng', 'placeholders', 'portAddress', 'Add Printer Port Address', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2812', '1', 'eng', 'placeholders', 'ipv4Addres', 'Add Printer IPv4 Address', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2813', '1', 'eng', 'placeholders', 'enterGoogleMapApiKey', 'Enter Google Map API Key e.g., AIzaSyD-xxxxxxxxxxxxxxxxx', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2814', '1', 'eng', 'placeholders', 'enterPrivacyPolicyLink', 'Enter privacy policy URL e.g., https://yoursite.com/privacy-policy', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2815', '1', 'eng', 'placeholders', 'addressLabelPlaceholder', 'e.g., home, office, etc.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2816', '1', 'eng', 'placeholders', 'addressPlaceholder', 'e.g., 123 Main St, City, Country', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2817', '1', 'eng', 'placeholders', 'addItemNotesPlaceholder', 'Special Instructions? (e.g., no onions, extra spicy)', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2818', '1', 'eng', 'placeholders', 'searchMenuOrCategory', 'Search menu or category here', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2819', '1', 'eng', 'placeholders', 'addDeliveryTypeName', 'e.g., Express Delivery', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2820', '1', 'eng', 'placeholders', 'addDeliveryTypeDescription', 'e.g., Fast delivery within 30 minutes', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2821', '1', 'eng', 'placeholders', 'search', 'Search', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2822', '1', 'eng', 'placeholders', 'searchModifierGroups', 'Search Modifier Groups...', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2823', '1', 'eng', 'placeholders', 'headerTextPlaceHolder', 'Enter your custom header text here...', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2824', '1', 'eng', 'placeholders', 'tableLockTimeoutPlaceholder', 'Enter timeout in minutes. Default is 10 minutes.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2825', '1', 'eng', 'placeholders', 'featureDescriptionPlaceHolder', 'Enter feature description here...', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2826', '1', 'eng', 'sidebar', 'dashboard', 'Dashboard', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2827', '1', 'eng', 'sidebar', 'menu', 'Menu', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2828', '1', 'eng', 'superadmin', 'menu.restaurants', 'Restaurants', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2829', '1', 'eng', 'superadmin', 'menu.superadmin', 'SuperAdmin', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2830', '1', 'eng', 'superadmin', 'regenerateQrCode', 'Regenerate QR Codes', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2831', '1', 'eng', 'superadmin', 'domainChanged', 'It seems you have changed the domain. You need to regenerate the qr codes so that qr codes can have new url', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2832', '1', 'eng', 'superadmin', 'qrCodesRegenerated', 'QR Codes Regenerated for new domain', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2833', '1', 'eng', 'superadmin', 'raiseSupportTicket', 'Raise Support Ticket', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2834', '1', 'eng', 'superadmin', 'generateCredentials', 'Generate Credentials', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2835', '1', 'eng', 'superadmin', 'pusherBeams', 'Pusher Beams (Browser Push Notification)', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2836', '1', 'eng', 'superadmin', 'pusherChannels', 'Pusher Channels (Live Page Update)', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2837', '1', 'eng', 'superadmin', 'pusherDashboard', 'Pusher Dashboard', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2838', '1', 'eng', 'superadmin', 'pusherChannelsDescription', 'Configure Pusher Channels for real-time page updates (Laravel broadcasting).', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2839', '1', 'eng', 'superadmin', 'pusherBeamsDescription', 'Configure Pusher Beams for browser push notifications.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2840', '1', 'eng', 'superadmin', 'desktopApplicationSettings', 'Desktop Application Settings', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2841', '1', 'eng', 'superadmin', 'desktopApplicationSettingsDescription', 'Provide download URLs for Windows and Mac desktop applications.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2842', '1', 'eng', 'superadmin', 'desktopApplicationSettingsDescription2', '1. Empty the download field if you do not want your customers to download the application.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2843', '1', 'eng', 'superadmin', 'windowsApplication', 'Windows Application', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2844', '1', 'eng', 'superadmin', 'downloadUrl', 'Download URL', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2845', '1', 'eng', 'superadmin', 'resetToDefault', 'Reset to Default', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2846', '1', 'eng', 'superadmin', 'downloadNow', 'Download Now', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2847', '1', 'eng', 'superadmin', 'macApplication', 'Mac Application', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2848', '1', 'eng', 'superadmin', 'linuxApplication', 'Linux Application', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2849', '1', 'eng', 'superadmin', 'saveAllSettings', 'Save All Settings', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2850', '1', 'eng', 'superadmin', 'saving', 'Saving...', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2851', '1', 'eng', 'superadmin', 'desktopApplicationSettingsNote', 'Please note that the desktop application is currently in beta. Some features may not function as intended, and you may encounter unexpected issues or bugs. We appreciate your patience and feedback as we continue to improve the application. Feel free to try it out and let us know about your experience.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2852', '1', 'eng', 'superadmin', 'whiteLabelDesktopApp', 'White Label Desktop App (Printing App)', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2853', '1', 'eng', 'superadmin', 'whiteLabelDesktopAppDescription', 'Get your own branded desktop printing application with your company name and logo.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2854', '1', 'eng', 'superadmin', 'whiteLabelFeatures', 'Features', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2855', '1', 'eng', 'superadmin', 'whiteLabelFeature1', 'Custom branding with your company name and logo', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2856', '1', 'eng', 'superadmin', 'whiteLabelFeature2', 'Personalized installer and application icons', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2857', '1', 'eng', 'superadmin', 'whiteLabelFeature3', 'Custom splash screen and about dialog', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2858', '1', 'eng', 'superadmin', 'whiteLabelFeature4', 'Dedicated support and updates', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2859', '1', 'eng', 'superadmin', 'whiteLabelPricing', 'Pricing', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2860', '1', 'eng', 'superadmin', 'whiteLabelPricingDescription', 'One-time payment includes customization, testing, and delivery', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2861', '1', 'eng', 'superadmin', 'whiteLabelDelivery', 'Delivery', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2862', '1', 'eng', 'superadmin', 'whiteLabelDeliveryDescription', 'Custom app delivered within 3-5 business days after approval', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2863', '1', 'eng', 'superadmin', 'orderWhiteLabelApp', 'Order White Label Printing App', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2864', '1', 'eng', 'superadmin', 'desktopAppRequired', 'Desktop Application Required', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2865', '1', 'eng', 'superadmin', 'desktopAppRequiredDescription', 'The desktop application is required for direct printing functionality. Users must download and install the desktop app to enable thermal printer support.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2866', '1', 'eng', 'superadmin', 'desktopAppDemo', 'Desktop App Demo', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2867', '1', 'eng', 'superadmin', 'desktopAppDemoDescription', 'Watch how the TableTrack desktop application works', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2868', '1', 'eng', 'superadmin', 'desktopAppDemoLink', 'https://www.youtube.com/watch?v=KKla4E_e_tY', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2869', '1', 'eng', 'superadmin', 'desktopAppDemoLinkText', 'Watch Demo on YouTube', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2870', '1', 'eng', 'validation', 'accepted', 'The :attribute field must be accepted.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2871', '1', 'eng', 'validation', 'accepted_if', 'The :attribute field must be accepted when :other is :value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2872', '1', 'eng', 'validation', 'active_url', 'The :attribute field must be a valid URL.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2873', '1', 'eng', 'validation', 'after', 'The :attribute field must be a date after :date.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2874', '1', 'eng', 'validation', 'after_or_equal', 'The :attribute field must be a date after or equal to :date.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2875', '1', 'eng', 'validation', 'alpha', 'The :attribute field must only contain letters.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2876', '1', 'eng', 'validation', 'alpha_dash', 'The :attribute field must only contain letters, numbers, dashes, and underscores.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2877', '1', 'eng', 'validation', 'alpha_num', 'The :attribute field must only contain letters and numbers.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2878', '1', 'eng', 'validation', 'array', 'The :attribute field must be an array.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2879', '1', 'eng', 'validation', 'ascii', 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2880', '1', 'eng', 'validation', 'before', 'The :attribute field must be a date before :date.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2881', '1', 'eng', 'validation', 'before_or_equal', 'The :attribute field must be a date before or equal to :date.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2882', '1', 'eng', 'validation', 'between.array', 'The :attribute field must have between :min and :max items.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2883', '1', 'eng', 'validation', 'between.file', 'The :attribute field must be between :min and :max kilobytes.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2884', '1', 'eng', 'validation', 'between.numeric', 'The :attribute field must be between :min and :max.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2885', '1', 'eng', 'validation', 'between.string', 'The :attribute field must be between :min and :max characters.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2886', '1', 'eng', 'validation', 'boolean', 'The :attribute field must be true or false.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2887', '1', 'eng', 'validation', 'can', 'The :attribute field contains an unauthorized value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2888', '1', 'eng', 'validation', 'confirmed', 'The :attribute field confirmation does not match.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2889', '1', 'eng', 'validation', 'contains', 'The :attribute field is missing a required value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2890', '1', 'eng', 'validation', 'current_password', 'The password is incorrect.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2891', '1', 'eng', 'validation', 'date', 'The :attribute field must be a valid date.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2892', '1', 'eng', 'validation', 'date_equals', 'The :attribute field must be a date equal to :date.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2893', '1', 'eng', 'validation', 'date_format', 'The :attribute field must match the format :format.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2894', '1', 'eng', 'validation', 'decimal', 'The :attribute field must have :decimal decimal places.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2895', '1', 'eng', 'validation', 'declined', 'The :attribute field must be declined.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2896', '1', 'eng', 'validation', 'declined_if', 'The :attribute field must be declined when :other is :value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2897', '1', 'eng', 'validation', 'different', 'The :attribute field and :other must be different.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2898', '1', 'eng', 'validation', 'digits', 'The :attribute field must be :digits digits.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2899', '1', 'eng', 'validation', 'digits_between', 'The :attribute field must be between :min and :max digits.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2900', '1', 'eng', 'validation', 'dimensions', 'The :attribute field has invalid image dimensions.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2901', '1', 'eng', 'validation', 'distinct', 'The :attribute field has a duplicate value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2902', '1', 'eng', 'validation', 'doesnt_end_with', 'The :attribute field must not end with one of the following: :values.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2903', '1', 'eng', 'validation', 'doesnt_start_with', 'The :attribute field must not start with one of the following: :values.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2904', '1', 'eng', 'validation', 'email', 'The :attribute field must be a valid email address.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2905', '1', 'eng', 'validation', 'ends_with', 'The :attribute field must end with one of the following: :values.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2906', '1', 'eng', 'validation', 'enum', 'The selected :attribute is invalid.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2907', '1', 'eng', 'validation', 'exists', 'The selected :attribute is invalid.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2908', '1', 'eng', 'validation', 'extensions', 'The :attribute field must have one of the following extensions: :values.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2909', '1', 'eng', 'validation', 'file', 'The :attribute field must be a file.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2910', '1', 'eng', 'validation', 'filled', 'The :attribute field must have a value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2911', '1', 'eng', 'validation', 'gt.array', 'The :attribute field must have more than :value items.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2912', '1', 'eng', 'validation', 'gt.file', 'The :attribute field must be greater than :value kilobytes.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2913', '1', 'eng', 'validation', 'gt.numeric', 'The :attribute field must be greater than :value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2914', '1', 'eng', 'validation', 'gt.string', 'The :attribute field must be greater than :value characters.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2915', '1', 'eng', 'validation', 'gte.array', 'The :attribute field must have :value items or more.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2916', '1', 'eng', 'validation', 'gte.file', 'The :attribute field must be greater than or equal to :value kilobytes.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2917', '1', 'eng', 'validation', 'gte.numeric', 'The :attribute field must be greater than or equal to :value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2918', '1', 'eng', 'validation', 'gte.string', 'The :attribute field must be greater than or equal to :value characters.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2919', '1', 'eng', 'validation', 'hex_color', 'The :attribute field must be a valid hexadecimal color.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2920', '1', 'eng', 'validation', 'image', 'The :attribute field must be an image.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2921', '1', 'eng', 'validation', 'in', 'The selected :attribute is invalid.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2922', '1', 'eng', 'validation', 'in_array', 'The :attribute field must exist in :other.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2923', '1', 'eng', 'validation', 'integer', 'The :attribute field must be an integer.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2924', '1', 'eng', 'validation', 'ip', 'The :attribute field must be a valid IP address.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2925', '1', 'eng', 'validation', 'ipv4', 'The :attribute field must be a valid IPv4 address.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2926', '1', 'eng', 'validation', 'ipv6', 'The :attribute field must be a valid IPv6 address.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2927', '1', 'eng', 'validation', 'json', 'The :attribute field must be a valid JSON string.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2928', '1', 'eng', 'validation', 'list', 'The :attribute field must be a list.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2929', '1', 'eng', 'validation', 'lowercase', 'The :attribute field must be lowercase.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2930', '1', 'eng', 'validation', 'lt.array', 'The :attribute field must have less than :value items.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2931', '1', 'eng', 'validation', 'lt.file', 'The :attribute field must be less than :value kilobytes.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2932', '1', 'eng', 'validation', 'lt.numeric', 'The :attribute field must be less than :value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2933', '1', 'eng', 'validation', 'lt.string', 'The :attribute field must be less than :value characters.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2934', '1', 'eng', 'validation', 'lte.array', 'The :attribute field must not have more than :value items.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2935', '1', 'eng', 'validation', 'lte.file', 'The :attribute field must be less than or equal to :value kilobytes.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2936', '1', 'eng', 'validation', 'lte.numeric', 'The :attribute field must be less than or equal to :value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2937', '1', 'eng', 'validation', 'lte.string', 'The :attribute field must be less than or equal to :value characters.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2938', '1', 'eng', 'validation', 'mac_address', 'The :attribute field must be a valid MAC address.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2939', '1', 'eng', 'validation', 'max.array', 'The :attribute field must not have more than :max items.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2940', '1', 'eng', 'validation', 'max.file', 'The :attribute field must not be greater than :max kilobytes.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2941', '1', 'eng', 'validation', 'max.numeric', 'The :attribute field must not be greater than :max.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2942', '1', 'eng', 'validation', 'max.string', 'The :attribute field must not be greater than :max characters.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2943', '1', 'eng', 'validation', 'max_digits', 'The :attribute field must not have more than :max digits.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2944', '1', 'eng', 'validation', 'mimes', 'The :attribute field must be a file of type: :values.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2945', '1', 'eng', 'validation', 'mimetypes', 'The :attribute field must be a file of type: :values.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2946', '1', 'eng', 'validation', 'min.array', 'The :attribute field must have at least :min items.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2947', '1', 'eng', 'validation', 'min.file', 'The :attribute field must be at least :min kilobytes.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2948', '1', 'eng', 'validation', 'min.numeric', 'The :attribute field must be at least :min.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2949', '1', 'eng', 'validation', 'min.string', 'The :attribute field must be at least :min characters.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2950', '1', 'eng', 'validation', 'min_digits', 'The :attribute field must have at least :min digits.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2951', '1', 'eng', 'validation', 'missing', 'The :attribute field must be missing.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2952', '1', 'eng', 'validation', 'missing_if', 'The :attribute field must be missing when :other is :value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2953', '1', 'eng', 'validation', 'missing_unless', 'The :attribute field must be missing unless :other is :value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2954', '1', 'eng', 'validation', 'missing_with', 'The :attribute field must be missing when :values is present.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2955', '1', 'eng', 'validation', 'missing_with_all', 'The :attribute field must be missing when :values are present.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2956', '1', 'eng', 'validation', 'multiple_of', 'The :attribute field must be a multiple of :value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2957', '1', 'eng', 'validation', 'not_in', 'The selected :attribute is invalid.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2958', '1', 'eng', 'validation', 'not_regex', 'The :attribute field format is invalid.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2959', '1', 'eng', 'validation', 'numeric', 'The :attribute field must be a number.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2960', '1', 'eng', 'validation', 'password.letters', 'The :attribute field must contain at least one letter.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2961', '1', 'eng', 'validation', 'password.mixed', 'The :attribute field must contain at least one uppercase and one lowercase letter.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2962', '1', 'eng', 'validation', 'password.numbers', 'The :attribute field must contain at least one number.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2963', '1', 'eng', 'validation', 'password.symbols', 'The :attribute field must contain at least one symbol.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2964', '1', 'eng', 'validation', 'password.uncompromised', 'The given :attribute has appeared in a data leak. Please choose a different :attribute.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2965', '1', 'eng', 'validation', 'present', 'The :attribute field must be present.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2966', '1', 'eng', 'validation', 'present_if', 'The :attribute field must be present when :other is :value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2967', '1', 'eng', 'validation', 'present_unless', 'The :attribute field must be present unless :other is :value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2968', '1', 'eng', 'validation', 'present_with', 'The :attribute field must be present when :values is present.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2969', '1', 'eng', 'validation', 'present_with_all', 'The :attribute field must be present when :values are present.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2970', '1', 'eng', 'validation', 'prohibited', 'The :attribute field is prohibited.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2971', '1', 'eng', 'validation', 'prohibited_if', 'The :attribute field is prohibited when :other is :value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2972', '1', 'eng', 'validation', 'prohibited_unless', 'The :attribute field is prohibited unless :other is in :values.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2973', '1', 'eng', 'validation', 'prohibits', 'The :attribute field prohibits :other from being present.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2974', '1', 'eng', 'validation', 'regex', 'The :attribute field format is invalid.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2975', '1', 'eng', 'validation', 'required', 'The :attribute field is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2976', '1', 'eng', 'validation', 'required_array_keys', 'The :attribute field must contain entries for: :values.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2977', '1', 'eng', 'validation', 'required_if', 'The :attribute field is required when :other is :value.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2978', '1', 'eng', 'validation', 'required_if_accepted', 'The :attribute field is required when :other is accepted.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2979', '1', 'eng', 'validation', 'required_if_declined', 'The :attribute field is required when :other is declined.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2980', '1', 'eng', 'validation', 'required_unless', 'The :attribute field is required unless :other is in :values.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2981', '1', 'eng', 'validation', 'required_with', 'The :attribute field is required when :values is present.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2982', '1', 'eng', 'validation', 'required_with_all', 'The :attribute field is required when :values are present.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2983', '1', 'eng', 'validation', 'required_without', 'The :attribute field is required when :values is not present.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2984', '1', 'eng', 'validation', 'required_without_all', 'The :attribute field is required when none of :values are present.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2985', '1', 'eng', 'validation', 'same', 'The :attribute field must match :other.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2986', '1', 'eng', 'validation', 'size.array', 'The :attribute field must contain :size items.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2987', '1', 'eng', 'validation', 'size.file', 'The :attribute field must be :size kilobytes.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2988', '1', 'eng', 'validation', 'size.numeric', 'The :attribute field must be :size.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2989', '1', 'eng', 'validation', 'size.string', 'The :attribute field must be :size characters.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2990', '1', 'eng', 'validation', 'starts_with', 'The :attribute field must start with one of the following: :values.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2991', '1', 'eng', 'validation', 'string', 'The :attribute field must be a string.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2992', '1', 'eng', 'validation', 'timezone', 'The :attribute field must be a valid timezone.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2993', '1', 'eng', 'validation', 'unique', 'The :attribute has already been taken.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2994', '1', 'eng', 'validation', 'uploaded', 'The :attribute failed to upload.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2995', '1', 'eng', 'validation', 'uppercase', 'The :attribute field must be uppercase.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2996', '1', 'eng', 'validation', 'url', 'The :attribute field must be a valid URL.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2997', '1', 'eng', 'validation', 'ulid', 'The :attribute field must be a valid ULID.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2998', '1', 'eng', 'validation', 'uuid', 'The :attribute field must be a valid UUID.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('2999', '1', 'eng', 'validation', 'custom.attribute-name.rule-name', 'custom-message', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3000', '1', 'eng', 'validation', 'variationNameRequired', 'The variation name is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37');

INSERT INTO `ltm_translations` VALUES
('3001', '1', 'eng', 'validation', 'variationPriceRequired', 'The variation price is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3002', '1', 'eng', 'validation', 'variationPriceNumeric', 'The variation price must be a number.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3003', '1', 'eng', 'validation', 'itemNameRequired', 'The item name is required for the :language language.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3004', '1', 'eng', 'validation', 'menuNameRequired', 'The menu name is required for the :language language.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3005', '1', 'eng', 'validation', 'categoryNameRequired', 'The category name is required for the :language language.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3006', '1', 'eng', 'validation', 'categoryNameUnique', 'The category name for the :language language has already been taken.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3007', '1', 'eng', 'validation', 'alreadyAssociatedGroup', 'The selected modifier group is already associated with this menu item.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3008', '1', 'eng', 'validation', 'cannotRemoveTranslation', 'Cannot remove the :language translation as it is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3009', '1', 'eng', 'validation', 'InvalidFlutterwaveKeyOrSecret', 'Invalid Flutterwave key or secret.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3010', '1', 'eng', 'validation', 'flutterwaveStatusRequired', 'Flutterwave status is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3011', '1', 'eng', 'validation', 'flutterwaveModeRequired', 'Flutterwave mode is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3012', '1', 'eng', 'validation', 'liveFlutterwaveKeyRequired', 'Live Flutterwave key is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3013', '1', 'eng', 'validation', 'liveFlutterwaveSecretRequired', 'Live Flutterwave secret is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3014', '1', 'eng', 'validation', 'liveFlutterwaveHashRequired', 'Live Flutterwave hash is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3015', '1', 'eng', 'validation', 'testFlutterwaveKeyRequired', 'Test Flutterwave key is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3016', '1', 'eng', 'validation', 'testFlutterwaveSecretRequired', 'Test Flutterwave secret is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3017', '1', 'eng', 'validation', 'testFlutterwaveHashRequired', 'Test Flutterwave hash is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3018', '1', 'eng', 'validation', 'greaterThanPrevious', 'This field must be greater than the previous tier\'s maximum distance.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3019', '1', 'eng', 'validation', 'tiers.required', 'The tiers field is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3020', '1', 'eng', 'validation', 'modifierGroupNameRequired', 'Modifier group name is required for the :language language.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3021', '1', 'eng', 'validation', 'modifierOptionNameRequired', 'Option name is required for the :language language.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3022', '1', 'eng', 'validation', 'atLeastOneVariationRequired', 'At least one variation with name and price is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3023', '1', 'eng', 'validation', 'orderTypeNameRequired', 'Order type name is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3024', '1', 'eng', 'validation', 'orderTypeRequired', 'Order type is required.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3025', '1', 'eng', 'validation', 'invalidOrderType', 'The selected order type is invalid.', '2025-10-15 14:29:37', '2025-10-15 14:29:37'),
('3026', '1', 'eng', 'validation', 'requiredModifierGroup', 'The \':name\' modifier group is required. Please select at least one option.', '2025-10-15 14:29:37', '2025-10-15 14:29:37');


-- Table structure for table `menu_item_tax`
DROP TABLE IF EXISTS `menu_item_tax`;
CREATE TABLE `menu_item_tax` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `menu_item_id` bigint(20) unsigned NOT NULL,
  `tax_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `menu_item_tax_menu_item_id_foreign` (`menu_item_id`),
  KEY `menu_item_tax_tax_id_foreign` (`tax_id`),
  CONSTRAINT `menu_item_tax_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `menu_item_tax_tax_id_foreign` FOREIGN KEY (`tax_id`) REFERENCES `taxes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `menu_item_translations`
DROP TABLE IF EXISTS `menu_item_translations`;
CREATE TABLE `menu_item_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `menu_item_id` bigint(20) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `item_name` varchar(191) NOT NULL,
  `description` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `menu_item_translations_menu_item_id_locale_unique` (`menu_item_id`,`locale`),
  KEY `menu_item_translations_locale_index` (`locale`),
  CONSTRAINT `menu_item_translations_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `menu_item_translations`
INSERT INTO `menu_item_translations` VALUES
('1', '501', 'en', 'Margherita Pizza', NULL),
('3', '503', 'en', 'Butter Chicken', 'Rich creamy chicken curry with butter and spices.'),
('4', '504', 'en', 'Paneer Butter Masala', 'Paneer cubes cooked in buttery tomato gravy.'),
('5', '505', 'en', 'Dal Makhani', 'Black lentils simmered overnight with cream.'),
('6', '506', 'en', 'Rogan Josh', 'Spicy lamb curry from Kashmir.'),
('7', '507', 'en', 'Pani Puri', 'Crispy puris filled with tangy spiced water.'),
('8', '508', 'en', 'Aloo Tikki Chaat', 'Crispy potato patties topped with chutneys.');


-- Table structure for table `menu_item_variations`
DROP TABLE IF EXISTS `menu_item_variations`;
CREATE TABLE `menu_item_variations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `variation` varchar(191) NOT NULL,
  `price` decimal(16,2) NOT NULL,
  `menu_item_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `menu_item_variations_menu_item_id_foreign` (`menu_item_id`),
  CONSTRAINT `menu_item_variations_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `menu_item_variations`
INSERT INTO `menu_item_variations` VALUES
('1', 'Small', '130.00', '503', '2025-10-08 08:47:24', '2025-10-08 08:47:24'),
('2', 'Half', '250.00', '503', '2025-10-08 08:47:24', '2025-10-08 08:47:24'),
('3', 'Full', '400.00', '503', '2025-10-08 08:47:24', '2025-10-08 08:47:24'),
('4', 'Small', '120.00', '504', '2025-10-08 08:48:17', '2025-10-08 08:48:17'),
('5', 'Half', '210.00', '504', '2025-10-08 08:48:17', '2025-10-08 08:48:17'),
('6', 'Full', '400.00', '504', '2025-10-08 08:48:17', '2025-10-08 08:48:17'),
('7', 'Half', '110.00', '505', '2025-10-08 08:49:15', '2025-10-08 08:49:15'),
('8', 'Full', '200.00', '505', '2025-10-08 08:49:15', '2025-10-08 08:49:15'),
('9', 'Half', '300.00', '506', '2025-10-08 08:50:17', '2025-10-08 08:50:17'),
('10', 'Full', '500.00', '506', '2025-10-08 08:50:17', '2025-10-08 08:50:17');


-- Table structure for table `menu_items`
DROP TABLE IF EXISTS `menu_items`;
CREATE TABLE `menu_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `kot_place_id` bigint(20) unsigned DEFAULT NULL,
  `item_name` varchar(191) NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `type` enum('veg','non-veg','egg','drink','other','halal') DEFAULT NULL,
  `price` decimal(16,2) DEFAULT NULL,
  `menu_id` bigint(20) unsigned NOT NULL,
  `item_category_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `preparation_time` int(11) DEFAULT NULL,
  `is_available` tinyint(1) NOT NULL DEFAULT 1,
  `show_on_customer_site` tinyint(1) NOT NULL DEFAULT 1,
  `in_stock` tinyint(1) NOT NULL DEFAULT 1,
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0,
  `tax_inclusive` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `menu_items_menu_id_foreign` (`menu_id`),
  KEY `menu_items_item_category_id_foreign` (`item_category_id`),
  KEY `idx_branch_available` (`branch_id`,`is_available`),
  CONSTRAINT `menu_items_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `menu_items_item_category_id_foreign` FOREIGN KEY (`item_category_id`) REFERENCES `item_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `menu_items_menu_id_foreign` FOREIGN KEY (`menu_id`) REFERENCES `menus` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=509 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `menu_items`
INSERT INTO `menu_items` VALUES
('1', '1', '1', 'Paneer Butter Masala', NULL, 'Paneer Butter Masala from our Indian Veg Curries selection.', 'veg', '269.52', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('2', '1', '1', 'Kadai Paneer', NULL, 'Kadai Paneer from our Indian Veg Curries selection.', 'veg', '183.50', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('3', '1', '1', 'Shahi Paneer', NULL, 'Shahi Paneer from our Indian Veg Curries selection.', 'veg', '218.50', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('4', '1', '1', 'Palak Paneer', NULL, 'Palak Paneer from our Indian Veg Curries selection.', 'veg', '211.25', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('5', '1', '1', 'Matar Paneer', NULL, 'Matar Paneer from our Indian Veg Curries selection.', 'veg', '283.11', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('6', '1', '1', 'Paneer Tikka Masala', NULL, 'Paneer Tikka Masala from our Indian Veg Curries selection.', 'veg', '274.74', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('7', '1', '1', 'Dal Makhani', NULL, 'Dal Makhani from our Indian Veg Curries selection.', 'veg', '304.91', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('8', '1', '1', 'Dal Tadka', NULL, 'Dal Tadka from our Indian Veg Curries selection.', 'veg', '192.17', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('9', '1', '1', 'Chana Masala', NULL, 'Chana Masala from our Indian Veg Curries selection.', 'veg', '239.07', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('10', '1', '1', 'Aloo Gobi', NULL, 'Aloo Gobi from our Indian Veg Curries selection.', 'veg', '184.17', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('11', '1', '1', 'Baingan Bharta', NULL, 'Baingan Bharta from our Indian Veg Curries selection.', 'veg', '210.61', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('12', '1', '1', 'Bhindi Masala', NULL, 'Bhindi Masala from our Indian Veg Curries selection.', 'veg', '250.75', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('13', '1', '1', 'Mix Veg Curry', NULL, 'Mix Veg Curry from our Indian Veg Curries selection.', 'veg', '183.72', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('14', '1', '1', 'Malai Kofta', NULL, 'Malai Kofta from our Indian Veg Curries selection.', 'veg', '207.84', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('15', '1', '1', 'Veg Kolhapuri', NULL, 'Veg Kolhapuri from our Indian Veg Curries selection.', 'veg', '270.98', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('16', '1', '1', 'Navratan Korma', NULL, 'Navratan Korma from our Indian Veg Curries selection.', 'veg', '256.29', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('17', '1', '1', 'Methi Malai Matar', NULL, 'Methi Malai Matar from our Indian Veg Curries selection.', 'veg', '210.86', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('18', '1', '1', 'Kadhi Pakora', NULL, 'Kadhi Pakora from our Indian Veg Curries selection.', 'veg', '262.50', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('19', '1', '1', 'Paneer Lababdar', NULL, 'Paneer Lababdar from our Indian Veg Curries selection.', 'veg', '293.32', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('20', '1', '1', 'Veg Jaipuri', NULL, 'Veg Jaipuri from our Indian Veg Curries selection.', 'veg', '180.91', '1', '1', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('21', '1', '1', 'Butter Chicken', NULL, 'Butter Chicken from our Indian Non-Veg Curries selection.', 'non-veg', '381.16', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('22', '1', '1', 'Chicken Tikka Masala', NULL, 'Chicken Tikka Masala from our Indian Non-Veg Curries selection.', 'non-veg', '359.63', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('23', '1', '1', 'Chicken Korma', NULL, 'Chicken Korma from our Indian Non-Veg Curries selection.', 'non-veg', '288.05', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('24', '1', '1', 'Chicken Curry Home Style', NULL, 'Chicken Curry Home Style from our Indian Non-Veg Curries selection.', 'non-veg', '251.10', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('25', '1', '1', 'Chicken Chettinad', NULL, 'Chicken Chettinad from our Indian Non-Veg Curries selection.', 'non-veg', '411.44', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('26', '1', '1', 'Chicken Handi', NULL, 'Chicken Handi from our Indian Non-Veg Curries selection.', 'non-veg', '287.32', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('27', '1', '1', 'Chicken Bhuna', NULL, 'Chicken Bhuna from our Indian Non-Veg Curries selection.', 'non-veg', '238.55', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('28', '1', '1', 'Mutton Rogan Josh', NULL, 'Mutton Rogan Josh from our Indian Non-Veg Curries selection.', 'non-veg', '239.34', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('29', '1', '1', 'Mutton Korma', NULL, 'Mutton Korma from our Indian Non-Veg Curries selection.', 'non-veg', '389.50', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('30', '1', '1', 'Mutton Bhuna', NULL, 'Mutton Bhuna from our Indian Non-Veg Curries selection.', 'non-veg', '340.75', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('31', '1', '1', 'Fish Curry Goan', NULL, 'Fish Curry Goan from our Indian Non-Veg Curries selection.', 'non-veg', '381.43', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('32', '1', '1', 'Fish Curry Bengali', NULL, 'Fish Curry Bengali from our Indian Non-Veg Curries selection.', 'non-veg', '365.95', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('33', '1', '1', 'Prawn Masala', NULL, 'Prawn Masala from our Indian Non-Veg Curries selection.', 'non-veg', '327.25', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('34', '1', '1', 'Egg Curry', NULL, 'Egg Curry from our Indian Non-Veg Curries selection.', 'egg', '414.62', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('35', '1', '1', 'Keema Matar', NULL, 'Keema Matar from our Indian Non-Veg Curries selection.', 'non-veg', '295.71', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('36', '1', '1', 'Chicken Saagwala', NULL, 'Chicken Saagwala from our Indian Non-Veg Curries selection.', 'non-veg', '330.41', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('37', '1', '1', 'Chicken Vindaloo', NULL, 'Chicken Vindaloo from our Indian Non-Veg Curries selection.', 'non-veg', '385.88', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('38', '1', '1', 'Chicken Do Pyaza', NULL, 'Chicken Do Pyaza from our Indian Non-Veg Curries selection.', 'non-veg', '343.70', '1', '2', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('39', '1', '1', 'Idli Sambar', NULL, 'Idli Sambar from our South Indian selection.', 'veg', '200.64', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('40', '1', '1', 'Medu Vada Sambar', NULL, 'Medu Vada Sambar from our South Indian selection.', 'veg', '160.83', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('41', '1', '1', 'Plain Dosa', NULL, 'Plain Dosa from our South Indian selection.', 'veg', '178.64', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('42', '1', '1', 'Masala Dosa', NULL, 'Masala Dosa from our South Indian selection.', 'veg', '86.42', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('43', '1', '1', 'Onion Rava Dosa', NULL, 'Onion Rava Dosa from our South Indian selection.', 'veg', '111.91', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('44', '1', '1', 'Mysore Masala Dosa', NULL, 'Mysore Masala Dosa from our South Indian selection.', 'veg', '120.51', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('45', '1', '1', 'Ghee Roast Dosa', NULL, 'Ghee Roast Dosa from our South Indian selection.', 'veg', '91.17', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('46', '1', '1', 'Paper Dosa', NULL, 'Paper Dosa from our South Indian selection.', 'veg', '112.59', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('47', '1', '1', 'Paneer Dosa', NULL, 'Paneer Dosa from our South Indian selection.', 'veg', '94.14', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('48', '1', '1', 'Cheese Dosa', NULL, 'Cheese Dosa from our South Indian selection.', 'veg', '118.92', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('49', '1', '1', 'Uttapam Onion', NULL, 'Uttapam Onion from our South Indian selection.', 'veg', '169.00', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('50', '1', '1', 'Uttapam Mix Veg', NULL, 'Uttapam Mix Veg from our South Indian selection.', 'veg', '131.08', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('51', '1', '1', 'Pongal', NULL, 'Pongal from our South Indian selection.', 'veg', '131.83', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('52', '1', '1', 'Curd Rice', NULL, 'Curd Rice from our South Indian selection.', 'veg', '109.33', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('53', '1', '1', 'Lemon Rice', NULL, 'Lemon Rice from our South Indian selection.', 'veg', '117.38', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('54', '1', '1', 'Tamarind Rice', NULL, 'Tamarind Rice from our South Indian selection.', 'veg', '211.13', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('55', '1', '1', 'Sambar Rice', NULL, 'Sambar Rice from our South Indian selection.', 'veg', '170.72', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('56', '1', '1', 'Rasam Rice', NULL, 'Rasam Rice from our South Indian selection.', 'veg', '165.28', '1', '3', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('57', '1', '1', 'Veg Biryani', NULL, 'Veg Biryani from our Biryani & Rice selection.', 'veg', '164.50', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('58', '1', '1', 'Paneer Biryani', NULL, 'Paneer Biryani from our Biryani & Rice selection.', 'veg', '309.57', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('59', '1', '1', 'Mushroom Biryani', NULL, 'Mushroom Biryani from our Biryani & Rice selection.', 'veg', '162.48', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('60', '1', '1', 'Hyderabadi Veg Biryani', NULL, 'Hyderabadi Veg Biryani from our Biryani & Rice selection.', 'veg', '218.66', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('61', '1', '1', 'Jeera Rice', NULL, 'Jeera Rice from our Biryani & Rice selection.', 'veg', '377.28', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('62', '1', '1', 'Peas Pulao', NULL, 'Peas Pulao from our Biryani & Rice selection.', 'veg', '286.40', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('63', '1', '1', 'Veg Fried Rice', NULL, 'Veg Fried Rice from our Biryani & Rice selection.', 'veg', '264.81', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('64', '1', '1', 'Curd Rice Tempered', NULL, 'Curd Rice Tempered from our Biryani & Rice selection.', 'veg', '298.00', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('65', '1', '1', 'Chicken Biryani', NULL, 'Chicken Biryani from our Biryani & Rice selection.', 'non-veg', '339.14', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('66', '1', '1', 'Chicken Dum Biryani', NULL, 'Chicken Dum Biryani from our Biryani & Rice selection.', 'non-veg', '321.76', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('67', '1', '1', 'Chicken Tikka Biryani', NULL, 'Chicken Tikka Biryani from our Biryani & Rice selection.', 'non-veg', '179.55', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('68', '1', '1', 'Mutton Biryani', NULL, 'Mutton Biryani from our Biryani & Rice selection.', 'non-veg', '128.35', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('69', '1', '1', 'Egg Biryani', NULL, 'Egg Biryani from our Biryani & Rice selection.', 'egg', '202.02', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('70', '1', '1', 'Egg Fried Rice', NULL, 'Egg Fried Rice from our Biryani & Rice selection.', 'egg', '189.61', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('71', '1', '1', 'Prawn Biryani', NULL, 'Prawn Biryani from our Biryani & Rice selection.', 'non-veg', '174.86', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('72', '1', '1', 'Fish Biryani', NULL, 'Fish Biryani from our Biryani & Rice selection.', 'non-veg', '365.16', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('73', '1', '1', 'Schezwan Fried Rice', NULL, 'Schezwan Fried Rice from our Biryani & Rice selection.', 'veg', '347.86', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('74', '1', '1', 'Brown Rice Plain', NULL, 'Brown Rice Plain from our Biryani & Rice selection.', 'veg', '201.82', '1', '4', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('75', '1', '1', 'Tandoori Roti', NULL, 'Tandoori Roti from our Indian Breads selection.', 'veg', '85.54', '1', '5', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('76', '1', '1', 'Butter Roti', NULL, 'Butter Roti from our Indian Breads selection.', 'veg', '59.56', '1', '5', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('77', '1', '1', 'Plain Naan', NULL, 'Plain Naan from our Indian Breads selection.', 'veg', '111.45', '1', '5', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('78', '1', '1', 'Butter Naan', NULL, 'Butter Naan from our Indian Breads selection.', 'veg', '65.89', '1', '5', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('79', '1', '1', 'Garlic Naan', NULL, 'Garlic Naan from our Indian Breads selection.', 'veg', '46.49', '1', '5', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('80', '1', '1', 'Lachha Paratha', NULL, 'Lachha Paratha from our Indian Breads selection.', 'veg', '44.66', '1', '5', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('81', '1', '1', 'Aloo Paratha', NULL, 'Aloo Paratha from our Indian Breads selection.', 'veg', '76.14', '1', '5', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('82', '1', '1', 'Paneer Paratha', NULL, 'Paneer Paratha from our Indian Breads selection.', 'veg', '46.27', '1', '5', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('83', '1', '1', 'Missi Roti', NULL, 'Missi Roti from our Indian Breads selection.', 'veg', '78.46', '1', '5', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('84', '1', '1', 'Stuffed Kulcha', NULL, 'Stuffed Kulcha from our Indian Breads selection.', 'veg', '109.78', '1', '5', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('85', '1', '1', 'Amritsari Kulcha', NULL, 'Amritsari Kulcha from our Indian Breads selection.', 'veg', '59.94', '1', '5', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('86', '1', '1', 'Roomali Roti', NULL, 'Roomali Roti from our Indian Breads selection.', 'veg', '41.93', '1', '5', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('87', '1', '1', 'Pani Puri', NULL, 'Pani Puri from our Chaat & Street Food selection.', 'veg', '219.61', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('88', '1', '1', 'Sev Puri', NULL, 'Sev Puri from our Chaat & Street Food selection.', 'veg', '141.52', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('89', '1', '1', 'Dahi Puri', NULL, 'Dahi Puri from our Chaat & Street Food selection.', 'veg', '74.55', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('90', '1', '1', 'Bhel Puri', NULL, 'Bhel Puri from our Chaat & Street Food selection.', 'veg', '67.54', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('91', '1', '1', 'Ragda Pattice', NULL, 'Ragda Pattice from our Chaat & Street Food selection.', 'veg', '77.54', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('92', '1', '1', 'Aloo Tikki Chaat', NULL, 'Aloo Tikki Chaat from our Chaat & Street Food selection.', 'veg', '160.39', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('93', '1', '1', 'Papdi Chaat', NULL, 'Papdi Chaat from our Chaat & Street Food selection.', 'veg', '186.73', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('94', '1', '1', 'Dahi Bhalla', NULL, 'Dahi Bhalla from our Chaat & Street Food selection.', 'veg', '127.55', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('95', '1', '1', 'Samosa Chaat', NULL, 'Samosa Chaat from our Chaat & Street Food selection.', 'veg', '70.16', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('96', '1', '1', 'Chole Bhature', NULL, 'Chole Bhature from our Chaat & Street Food selection.', 'veg', '121.06', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('97', '1', '1', 'Pav Bhaji', NULL, 'Pav Bhaji from our Chaat & Street Food selection.', 'veg', '219.38', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('98', '1', '1', 'Vada Pav', NULL, 'Vada Pav from our Chaat & Street Food selection.', 'veg', '144.66', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('99', '1', '1', 'Kathi Roll Paneer', NULL, 'Kathi Roll Paneer from our Chaat & Street Food selection.', 'veg', '215.37', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('100', '1', '1', 'Kathi Roll Chicken', NULL, 'Kathi Roll Chicken from our Chaat & Street Food selection.', 'non-veg', '197.72', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('101', '1', '1', 'Kachori Sabzi', NULL, 'Kachori Sabzi from our Chaat & Street Food selection.', 'veg', '61.84', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('102', '1', '1', 'Poha Jalebi', NULL, 'Poha Jalebi from our Chaat & Street Food selection.', 'veg', '175.32', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('103', '1', '1', 'Kanda Poha', NULL, 'Kanda Poha from our Chaat & Street Food selection.', 'veg', '169.07', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('104', '1', '1', 'Raj Kachori', NULL, 'Raj Kachori from our Chaat & Street Food selection.', 'veg', '145.92', '1', '6', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('105', '1', '1', 'Paneer Tikka', NULL, 'Paneer Tikka from our Tandoor & Kebabs selection.', 'veg', '237.38', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('106', '1', '1', 'Paneer Malai Tikka', NULL, 'Paneer Malai Tikka from our Tandoor & Kebabs selection.', 'veg', '345.88', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('107', '1', '1', 'Soya Chaap Tikka', NULL, 'Soya Chaap Tikka from our Tandoor & Kebabs selection.', 'veg', '192.35', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('108', '1', '1', 'Tandoori Aloo', NULL, 'Tandoori Aloo from our Tandoor & Kebabs selection.', 'veg', '286.08', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('109', '1', '1', 'Veg Seekh Kebab', NULL, 'Veg Seekh Kebab from our Tandoor & Kebabs selection.', 'veg', '291.58', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('110', '1', '1', 'Achari Paneer Tikka', NULL, 'Achari Paneer Tikka from our Tandoor & Kebabs selection.', 'veg', '436.61', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('111', '1', '1', 'Chicken Tikka', NULL, 'Chicken Tikka from our Tandoor & Kebabs selection.', 'non-veg', '414.00', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('112', '1', '1', 'Chicken Malai Tikka', NULL, 'Chicken Malai Tikka from our Tandoor & Kebabs selection.', 'non-veg', '236.38', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('113', '1', '1', 'Chicken Seekh Kebab', NULL, 'Chicken Seekh Kebab from our Tandoor & Kebabs selection.', 'non-veg', '305.17', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('114', '1', '1', 'Tandoori Chicken Half', NULL, 'Tandoori Chicken Half from our Tandoor & Kebabs selection.', 'non-veg', '211.81', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('115', '1', '1', 'Tandoori Chicken Full', NULL, 'Tandoori Chicken Full from our Tandoor & Kebabs selection.', 'non-veg', '424.66', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('116', '1', '1', 'Mutton Seekh Kebab', NULL, 'Mutton Seekh Kebab from our Tandoor & Kebabs selection.', 'non-veg', '412.45', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('117', '1', '1', 'Fish Tikka', NULL, 'Fish Tikka from our Tandoor & Kebabs selection.', 'non-veg', '246.55', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('118', '1', '1', 'Amritsari Fish Fry', NULL, 'Amritsari Fish Fry from our Tandoor & Kebabs selection.', 'non-veg', '345.30', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('119', '1', '1', 'Prawn Tandoori', NULL, 'Prawn Tandoori from our Tandoor & Kebabs selection.', 'non-veg', '336.60', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('120', '1', '1', 'Afghani Chicken', NULL, 'Afghani Chicken from our Tandoor & Kebabs selection.', 'non-veg', '204.32', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('121', '1', '1', 'Tangdi Kebab', NULL, 'Tangdi Kebab from our Tandoor & Kebabs selection.', 'non-veg', '381.13', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('122', '1', '1', 'Kalmi Kebab', NULL, 'Kalmi Kebab from our Tandoor & Kebabs selection.', 'non-veg', '316.42', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('123', '1', '1', 'Tandoori Broccoli', NULL, 'Tandoori Broccoli from our Tandoor & Kebabs selection.', 'veg', '385.80', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('124', '1', '1', 'Stuffed Mushroom Tikka', NULL, 'Stuffed Mushroom Tikka from our Tandoor & Kebabs selection.', 'veg', '313.80', '1', '7', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('125', '1', '1', 'Veg Manchurian Gravy', NULL, 'Veg Manchurian Gravy from our Indo-Chinese selection.', 'veg', '140.13', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('126', '1', '1', 'Veg Manchurian Dry', NULL, 'Veg Manchurian Dry from our Indo-Chinese selection.', 'veg', '211.31', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('127', '1', '1', 'Chilli Paneer Gravy', NULL, 'Chilli Paneer Gravy from our Indo-Chinese selection.', 'veg', '144.28', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('128', '1', '1', 'Chilli Paneer Dry', NULL, 'Chilli Paneer Dry from our Indo-Chinese selection.', 'veg', '344.40', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('129', '1', '1', 'Gobi Manchurian', NULL, 'Gobi Manchurian from our Indo-Chinese selection.', 'veg', '333.32', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('130', '1', '1', 'Chilli Mushroom', NULL, 'Chilli Mushroom from our Indo-Chinese selection.', 'veg', '322.97', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('131', '1', '1', 'Hakka Noodles Veg', NULL, 'Hakka Noodles Veg from our Indo-Chinese selection.', 'veg', '207.65', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('132', '1', '1', 'Schezwan Noodles Veg', NULL, 'Schezwan Noodles Veg from our Indo-Chinese selection.', 'veg', '152.74', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('133', '1', '1', 'Triple Schezwan Rice Veg', NULL, 'Triple Schezwan Rice Veg from our Indo-Chinese selection.', 'veg', '333.16', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('134', '1', '1', 'American Chopsuey Veg', NULL, 'American Chopsuey Veg from our Indo-Chinese selection.', 'veg', '348.33', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('135', '1', '1', 'Chicken Lollipop', NULL, 'Chicken Lollipop from our Indo-Chinese selection.', 'non-veg', '158.84', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('136', '1', '1', 'Chilli Chicken Gravy', NULL, 'Chilli Chicken Gravy from our Indo-Chinese selection.', 'non-veg', '246.92', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('137', '1', '1', 'Chilli Chicken Dry', NULL, 'Chilli Chicken Dry from our Indo-Chinese selection.', 'non-veg', '155.23', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('138', '1', '1', 'Hakka Noodles Chicken', NULL, 'Hakka Noodles Chicken from our Indo-Chinese selection.', 'non-veg', '307.33', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('139', '1', '1', 'Schezwan Noodles Chicken', NULL, 'Schezwan Noodles Chicken from our Indo-Chinese selection.', 'non-veg', '308.48', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('140', '1', '1', 'Egg Hakka Noodles', NULL, 'Egg Hakka Noodles from our Indo-Chinese selection.', 'egg', '168.25', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('141', '1', '1', 'Egg Schezwan Noodles', NULL, 'Egg Schezwan Noodles from our Indo-Chinese selection.', 'egg', '244.56', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('142', '1', '1', 'Egg Chilli Garlic Fried Rice', NULL, 'Egg Chilli Garlic Fried Rice from our Indo-Chinese selection.', 'egg', '260.96', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('143', '1', '1', 'Prawn Chilli Garlic', NULL, 'Prawn Chilli Garlic from our Indo-Chinese selection.', 'non-veg', '198.31', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('144', '1', '1', 'Fish Chilli Basil', NULL, 'Fish Chilli Basil from our Indo-Chinese selection.', 'non-veg', '331.94', '1', '8', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('145', '1', '1', 'Penne Arrabbiata', NULL, 'Penne Arrabbiata from our Continental & Pastas selection.', 'veg', '294.25', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('146', '1', '1', 'Penne Alfredo', NULL, 'Penne Alfredo from our Continental & Pastas selection.', 'veg', '237.19', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('147', '1', '1', 'Spaghetti Aglio e Olio', NULL, 'Spaghetti Aglio e Olio from our Continental & Pastas selection.', 'veg', '325.61', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('148', '1', '1', 'Spaghetti Pomodoro', NULL, 'Spaghetti Pomodoro from our Continental & Pastas selection.', 'veg', '377.08', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('149', '1', '1', 'Fusilli Pesto', NULL, 'Fusilli Pesto from our Continental & Pastas selection.', 'veg', '234.31', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('150', '1', '1', 'Mac and Cheese', NULL, 'Mac and Cheese from our Continental & Pastas selection.', 'veg', '264.16', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('151', '1', '1', 'Veg Lasagna', NULL, 'Veg Lasagna from our Continental & Pastas selection.', 'veg', '448.69', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('152', '1', '1', 'Grilled Cottage Cheese Steak', NULL, 'Grilled Cottage Cheese Steak from our Continental & Pastas selection.', 'veg', '355.47', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('153', '1', '1', 'Sauteed Vegetables Plate', NULL, 'Sauteed Vegetables Plate from our Continental & Pastas selection.', 'veg', '298.29', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('154', '1', '1', 'Herb Rice with Veggies', NULL, 'Herb Rice with Veggies from our Continental & Pastas selection.', 'veg', '319.75', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('155', '1', '1', 'Chicken Alfredo Pasta', NULL, 'Chicken Alfredo Pasta from our Continental & Pastas selection.', 'non-veg', '212.67', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('156', '1', '1', 'Chicken Arrabbiata Pasta', NULL, 'Chicken Arrabbiata Pasta from our Continental & Pastas selection.', 'non-veg', '240.67', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('157', '1', '1', 'Grilled Chicken Breast', NULL, 'Grilled Chicken Breast from our Continental & Pastas selection.', 'non-veg', '271.28', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('158', '1', '1', 'Chicken Stroganoff', NULL, 'Chicken Stroganoff from our Continental & Pastas selection.', 'non-veg', '338.84', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('159', '1', '1', 'Fish and Chips', NULL, 'Fish and Chips from our Continental & Pastas selection.', 'non-veg', '242.13', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('160', '1', '1', 'Herb-Grilled Fish Fillet', NULL, 'Herb-Grilled Fish Fillet from our Continental & Pastas selection.', 'non-veg', '239.46', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('161', '1', '1', 'Chicken Caesar Salad', NULL, 'Chicken Caesar Salad from our Continental & Pastas selection.', 'non-veg', '199.17', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('162', '1', '1', 'Greek Salad', NULL, 'Greek Salad from our Continental & Pastas selection.', 'veg', '350.40', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('163', '1', '1', 'Mushroom Risotto', NULL, 'Mushroom Risotto from our Continental & Pastas selection.', 'veg', '241.81', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('164', '1', '1', 'Chicken Risotto', NULL, 'Chicken Risotto from our Continental & Pastas selection.', 'non-veg', '424.46', '1', '9', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('165', '1', '1', 'Margherita Pizza Personal', NULL, 'Margherita Pizza Personal from our Pizzas selection.', 'veg', '546.66', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('166', '1', '1', 'Margherita Pizza Medium', NULL, 'Margherita Pizza Medium from our Pizzas selection.', 'veg', '246.93', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('167', '1', '1', 'Farmhouse Pizza Personal', NULL, 'Farmhouse Pizza Personal from our Pizzas selection.', 'veg', '310.44', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('168', '1', '1', 'Farmhouse Pizza Medium', NULL, 'Farmhouse Pizza Medium from our Pizzas selection.', 'veg', '474.21', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('169', '1', '1', 'Veggie Supreme Pizza Personal', NULL, 'Veggie Supreme Pizza Personal from our Pizzas selection.', 'veg', '301.41', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('170', '1', '1', 'Veggie Supreme Pizza Medium', NULL, 'Veggie Supreme Pizza Medium from our Pizzas selection.', 'veg', '270.28', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('171', '1', '1', 'Paneer Tikka Pizza Personal', NULL, 'Paneer Tikka Pizza Personal from our Pizzas selection.', 'veg', '575.50', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('172', '1', '1', 'Paneer Tikka Pizza Medium', NULL, 'Paneer Tikka Pizza Medium from our Pizzas selection.', 'veg', '437.00', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('173', '1', '1', 'Corn & Cheese Pizza Personal', NULL, 'Corn & Cheese Pizza Personal from our Pizzas selection.', 'veg', '399.61', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('174', '1', '1', 'Corn & Cheese Pizza Medium', NULL, 'Corn & Cheese Pizza Medium from our Pizzas selection.', 'veg', '518.16', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('175', '1', '1', 'Pepperoni Pizza Personal', NULL, 'Pepperoni Pizza Personal from our Pizzas selection.', 'non-veg', '526.85', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('176', '1', '1', 'Pepperoni Pizza Medium', NULL, 'Pepperoni Pizza Medium from our Pizzas selection.', 'non-veg', '292.36', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('177', '1', '1', 'BBQ Chicken Pizza Personal', NULL, 'BBQ Chicken Pizza Personal from our Pizzas selection.', 'non-veg', '256.83', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('178', '1', '1', 'BBQ Chicken Pizza Medium', NULL, 'BBQ Chicken Pizza Medium from our Pizzas selection.', 'non-veg', '383.80', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('179', '1', '1', 'Chicken Tikka Pizza Personal', NULL, 'Chicken Tikka Pizza Personal from our Pizzas selection.', 'non-veg', '380.96', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('180', '1', '1', 'Chicken Tikka Pizza Medium', NULL, 'Chicken Tikka Pizza Medium from our Pizzas selection.', 'non-veg', '397.47', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('181', '1', '1', 'Four Cheese Pizza Medium', NULL, 'Four Cheese Pizza Medium from our Pizzas selection.', 'veg', '497.05', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('182', '1', '1', 'Mexican Green Wave Pizza Medium', NULL, 'Mexican Green Wave Pizza Medium from our Pizzas selection.', 'veg', '475.88', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('183', '1', '1', 'Peri Peri Paneer Pizza Medium', NULL, 'Peri Peri Paneer Pizza Medium from our Pizzas selection.', 'veg', '593.98', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('184', '1', '1', 'Tandoori Chicken Pizza Medium', NULL, 'Tandoori Chicken Pizza Medium from our Pizzas selection.', 'non-veg', '257.40', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('185', '1', '1', 'Garden Fresh Pizza Thin Crust', NULL, 'Garden Fresh Pizza Thin Crust from our Pizzas selection.', 'veg', '373.00', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('186', '1', '1', 'Smoked Chicken Pizza Thin Crust', NULL, 'Smoked Chicken Pizza Thin Crust from our Pizzas selection.', 'non-veg', '348.93', '1', '10', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('187', '1', '1', 'Classic Veg Burger', NULL, 'Classic Veg Burger from our Burgers & Sandwiches selection.', 'veg', '344.03', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('188', '1', '1', 'Cheese Veg Burger', NULL, 'Cheese Veg Burger from our Burgers & Sandwiches selection.', 'veg', '184.65', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('189', '1', '1', 'Crispy Paneer Burger', NULL, 'Crispy Paneer Burger from our Burgers & Sandwiches selection.', 'veg', '169.45', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('190', '1', '1', 'Aloo Tikki Burger', NULL, 'Aloo Tikki Burger from our Burgers & Sandwiches selection.', 'veg', '236.64', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('191', '1', '1', 'Mexican Veg Burger', NULL, 'Mexican Veg Burger from our Burgers & Sandwiches selection.', 'veg', '229.69', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('192', '1', '1', 'Grilled Veg Sandwich', NULL, 'Grilled Veg Sandwich from our Burgers & Sandwiches selection.', 'veg', '192.42', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('193', '1', '1', 'Bombay Masala Sandwich', NULL, 'Bombay Masala Sandwich from our Burgers & Sandwiches selection.', 'veg', '184.95', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('194', '1', '1', 'Paneer Tikka Sandwich', NULL, 'Paneer Tikka Sandwich from our Burgers & Sandwiches selection.', 'veg', '360.05', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('195', '1', '1', 'Club Sandwich Veg', NULL, 'Club Sandwich Veg from our Burgers & Sandwiches selection.', 'veg', '235.21', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('196', '1', '1', 'Chicken Burger Classic', NULL, 'Chicken Burger Classic from our Burgers & Sandwiches selection.', 'non-veg', '343.95', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('197', '1', '1', 'Chicken Burger Spicy', NULL, 'Chicken Burger Spicy from our Burgers & Sandwiches selection.', 'non-veg', '263.08', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('198', '1', '1', 'BBQ Chicken Burger', NULL, 'BBQ Chicken Burger from our Burgers & Sandwiches selection.', 'non-veg', '133.15', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('199', '1', '1', 'Crispy Chicken Burger', NULL, 'Crispy Chicken Burger from our Burgers & Sandwiches selection.', 'non-veg', '379.81', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('200', '1', '1', 'Peri Peri Chicken Burger', NULL, 'Peri Peri Chicken Burger from our Burgers & Sandwiches selection.', 'non-veg', '337.37', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('201', '1', '1', 'Egg Mayo Sandwich', NULL, 'Egg Mayo Sandwich from our Burgers & Sandwiches selection.', 'egg', '371.94', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('202', '1', '1', 'Chicken Club Sandwich', NULL, 'Chicken Club Sandwich from our Burgers & Sandwiches selection.', 'non-veg', '360.86', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('203', '1', '1', 'Tuna Sandwich', NULL, 'Tuna Sandwich from our Burgers & Sandwiches selection.', 'non-veg', '340.66', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('204', '1', '1', 'Grilled Chicken Sandwich', NULL, 'Grilled Chicken Sandwich from our Burgers & Sandwiches selection.', 'non-veg', '163.24', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('205', '1', '1', 'Double Patty Veg Burger', NULL, 'Double Patty Veg Burger from our Burgers & Sandwiches selection.', 'veg', '246.27', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('206', '1', '1', 'Paneer Kathi Roll', NULL, 'Paneer Kathi Roll from our Burgers & Sandwiches selection.', 'veg', '175.57', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('207', '1', '1', 'Chicken Kathi Roll', NULL, 'Chicken Kathi Roll from our Burgers & Sandwiches selection.', 'non-veg', '224.27', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('208', '1', '1', 'Egg Kathi Roll', NULL, 'Egg Kathi Roll from our Burgers & Sandwiches selection.', 'egg', '135.25', '1', '11', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('209', '1', '1', 'Gulab Jamun', NULL, 'Gulab Jamun from our Desserts selection.', 'veg', '148.22', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('210', '1', '1', 'Rasmalai', NULL, 'Rasmalai from our Desserts selection.', 'veg', '257.36', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('211', '1', '1', 'Rasgulla', NULL, 'Rasgulla from our Desserts selection.', 'veg', '127.74', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('212', '1', '1', 'Jalebi', NULL, 'Jalebi from our Desserts selection.', 'veg', '221.13', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('213', '1', '1', 'Gajar Halwa', NULL, 'Gajar Halwa from our Desserts selection.', 'veg', '161.90', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('214', '1', '1', 'Moong Dal Halwa', NULL, 'Moong Dal Halwa from our Desserts selection.', 'veg', '156.14', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('215', '1', '1', 'Kheer', NULL, 'Kheer from our Desserts selection.', 'veg', '252.32', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('216', '1', '1', 'Phirni', NULL, 'Phirni from our Desserts selection.', 'veg', '259.18', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('217', '1', '1', 'Kulfi Malai', NULL, 'Kulfi Malai from our Desserts selection.', 'veg', '180.04', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('218', '1', '1', 'Kulfi Pista', NULL, 'Kulfi Pista from our Desserts selection.', 'veg', '209.31', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('219', '1', '1', 'Matka Kulfi', NULL, 'Matka Kulfi from our Desserts selection.', 'veg', '107.86', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('220', '1', '1', 'Ice Cream Vanilla Scoop', NULL, 'Ice Cream Vanilla Scoop from our Desserts selection.', 'veg', '133.41', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('221', '1', '1', 'Ice Cream Chocolate Scoop', NULL, 'Ice Cream Chocolate Scoop from our Desserts selection.', 'veg', '254.37', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('222', '1', '1', 'Brownie with Ice Cream', NULL, 'Brownie with Ice Cream from our Desserts selection.', 'veg', '184.25', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('223', '1', '1', 'Sizzling Brownie', NULL, 'Sizzling Brownie from our Desserts selection.', 'veg', '177.60', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('224', '1', '1', 'Cheesecake Blueberry', NULL, 'Cheesecake Blueberry from our Desserts selection.', 'veg', '214.64', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('225', '1', '1', 'Tiramisu', NULL, 'Tiramisu from our Desserts selection.', 'veg', '90.29', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('226', '1', '1', 'Caramel Custard', NULL, 'Caramel Custard from our Desserts selection.', 'egg', '185.15', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('227', '1', '1', 'Apple Pie', NULL, 'Apple Pie from our Desserts selection.', 'veg', '170.51', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('228', '1', '1', 'Mysore Pak', NULL, 'Mysore Pak from our Desserts selection.', 'veg', '233.49', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('229', '1', '1', 'Shrikhand', NULL, 'Shrikhand from our Desserts selection.', 'veg', '108.34', '1', '12', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('230', '1', '1', 'Masala Chai', NULL, 'Masala Chai from our Beverages selection.', 'veg', '213.33', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('231', '1', '1', 'Ginger Tea', NULL, 'Ginger Tea from our Beverages selection.', 'veg', '63.62', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('232', '1', '1', 'Filter Coffee', NULL, 'Filter Coffee from our Beverages selection.', 'veg', '81.59', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('233', '1', '1', 'Cold Coffee Classic', NULL, 'Cold Coffee Classic from our Beverages selection.', 'veg', '151.16', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('234', '1', '1', 'Cold Coffee Frappe', NULL, 'Cold Coffee Frappe from our Beverages selection.', 'veg', '164.79', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('235', '1', '1', 'Iced Tea Lemon', NULL, 'Iced Tea Lemon from our Beverages selection.', 'veg', '89.98', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('236', '1', '1', 'Iced Tea Peach', NULL, 'Iced Tea Peach from our Beverages selection.', 'veg', '70.38', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('237', '1', '1', 'Fresh Lime Soda Sweet', NULL, 'Fresh Lime Soda Sweet from our Beverages selection.', 'veg', '201.35', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('238', '1', '1', 'Fresh Lime Soda Salted', NULL, 'Fresh Lime Soda Salted from our Beverages selection.', 'veg', '91.86', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('239', '1', '1', 'Sweet Lassi', NULL, 'Sweet Lassi from our Beverages selection.', 'veg', '151.07', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('240', '1', '1', 'Salted Lassi', NULL, 'Salted Lassi from our Beverages selection.', 'veg', '155.29', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('241', '1', '1', 'Mango Lassi', NULL, 'Mango Lassi from our Beverages selection.', 'veg', '121.27', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('242', '1', '1', 'Buttermilk Chaas', NULL, 'Buttermilk Chaas from our Beverages selection.', 'veg', '149.22', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('243', '1', '1', 'Thandai', NULL, 'Thandai from our Beverages selection.', 'veg', '138.87', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('244', '1', '1', 'Badam Milk', NULL, 'Badam Milk from our Beverages selection.', 'veg', '208.90', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('245', '1', '1', 'Watermelon Juice', NULL, 'Watermelon Juice from our Beverages selection.', 'veg', '84.72', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('246', '1', '1', 'Orange Juice', NULL, 'Orange Juice from our Beverages selection.', 'veg', '171.75', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('247', '1', '1', 'Pineapple Juice', NULL, 'Pineapple Juice from our Beverages selection.', 'veg', '90.58', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('248', '1', '1', 'Mint Mojito', NULL, 'Mint Mojito from our Beverages selection.', 'veg', '117.28', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('249', '1', '1', 'Strawberry Milkshake', NULL, 'Strawberry Milkshake from our Beverages selection.', 'veg', '164.19', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('250', '1', '1', 'Chocolate Milkshake', NULL, 'Chocolate Milkshake from our Beverages selection.', 'veg', '101.00', '1', '13', '2025-09-17 06:04:58', '2025-09-17 06:04:58', NULL, '1', '1', '1', '0', '0'),
('251', '3', '3', 'Paneer Butter Masala', NULL, 'Paneer Butter Masala from our Indian Veg Curries selection.', 'veg', '269.52', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('252', '3', '3', 'Kadai Paneer', NULL, 'Kadai Paneer from our Indian Veg Curries selection.', 'veg', '183.50', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('253', '3', '3', 'Shahi Paneer', NULL, 'Shahi Paneer from our Indian Veg Curries selection.', 'veg', '218.50', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('254', '3', '3', 'Palak Paneer', NULL, 'Palak Paneer from our Indian Veg Curries selection.', 'veg', '211.25', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('255', '3', '3', 'Matar Paneer', NULL, 'Matar Paneer from our Indian Veg Curries selection.', 'veg', '283.11', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('256', '3', '3', 'Paneer Tikka Masala', NULL, 'Paneer Tikka Masala from our Indian Veg Curries selection.', 'veg', '274.74', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('257', '3', '3', 'Dal Makhani', NULL, 'Dal Makhani from our Indian Veg Curries selection.', 'veg', '304.91', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('258', '3', '3', 'Dal Tadka', NULL, 'Dal Tadka from our Indian Veg Curries selection.', 'veg', '192.17', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('259', '3', '3', 'Chana Masala', NULL, 'Chana Masala from our Indian Veg Curries selection.', 'veg', '239.07', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('260', '3', '3', 'Aloo Gobi', NULL, 'Aloo Gobi from our Indian Veg Curries selection.', 'veg', '184.17', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('261', '3', '3', 'Baingan Bharta', NULL, 'Baingan Bharta from our Indian Veg Curries selection.', 'veg', '210.61', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('262', '3', '3', 'Bhindi Masala', NULL, 'Bhindi Masala from our Indian Veg Curries selection.', 'veg', '250.75', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('263', '3', '3', 'Mix Veg Curry', NULL, 'Mix Veg Curry from our Indian Veg Curries selection.', 'veg', '183.72', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('264', '3', '3', 'Malai Kofta', NULL, 'Malai Kofta from our Indian Veg Curries selection.', 'veg', '207.84', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('265', '3', '3', 'Veg Kolhapuri', NULL, 'Veg Kolhapuri from our Indian Veg Curries selection.', 'veg', '270.98', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('266', '3', '3', 'Navratan Korma', NULL, 'Navratan Korma from our Indian Veg Curries selection.', 'veg', '256.29', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('267', '3', '3', 'Methi Malai Matar', NULL, 'Methi Malai Matar from our Indian Veg Curries selection.', 'veg', '210.86', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('268', '3', '3', 'Kadhi Pakora', NULL, 'Kadhi Pakora from our Indian Veg Curries selection.', 'veg', '262.50', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('269', '3', '3', 'Paneer Lababdar', NULL, 'Paneer Lababdar from our Indian Veg Curries selection.', 'veg', '293.32', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('270', '3', '3', 'Veg Jaipuri', NULL, 'Veg Jaipuri from our Indian Veg Curries selection.', 'veg', '180.91', '2', '14', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('271', '3', '3', 'Butter Chicken', NULL, 'Butter Chicken from our Indian Non-Veg Curries selection.', 'non-veg', '381.16', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('272', '3', '3', 'Chicken Tikka Masala', NULL, 'Chicken Tikka Masala from our Indian Non-Veg Curries selection.', 'non-veg', '359.63', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('273', '3', '3', 'Chicken Korma', NULL, 'Chicken Korma from our Indian Non-Veg Curries selection.', 'non-veg', '288.05', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('274', '3', '3', 'Chicken Curry Home Style', NULL, 'Chicken Curry Home Style from our Indian Non-Veg Curries selection.', 'non-veg', '251.10', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('275', '3', '3', 'Chicken Chettinad', NULL, 'Chicken Chettinad from our Indian Non-Veg Curries selection.', 'non-veg', '411.44', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('276', '3', '3', 'Chicken Handi', NULL, 'Chicken Handi from our Indian Non-Veg Curries selection.', 'non-veg', '287.32', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('277', '3', '3', 'Chicken Bhuna', NULL, 'Chicken Bhuna from our Indian Non-Veg Curries selection.', 'non-veg', '238.55', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('278', '3', '3', 'Mutton Rogan Josh', NULL, 'Mutton Rogan Josh from our Indian Non-Veg Curries selection.', 'non-veg', '239.34', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('279', '3', '3', 'Mutton Korma', NULL, 'Mutton Korma from our Indian Non-Veg Curries selection.', 'non-veg', '389.50', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('280', '3', '3', 'Mutton Bhuna', NULL, 'Mutton Bhuna from our Indian Non-Veg Curries selection.', 'non-veg', '340.75', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('281', '3', '3', 'Fish Curry Goan', NULL, 'Fish Curry Goan from our Indian Non-Veg Curries selection.', 'non-veg', '381.43', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('282', '3', '3', 'Fish Curry Bengali', NULL, 'Fish Curry Bengali from our Indian Non-Veg Curries selection.', 'non-veg', '365.95', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('283', '3', '3', 'Prawn Masala', NULL, 'Prawn Masala from our Indian Non-Veg Curries selection.', 'non-veg', '327.25', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('284', '3', '3', 'Egg Curry', NULL, 'Egg Curry from our Indian Non-Veg Curries selection.', 'egg', '414.62', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('285', '3', '3', 'Keema Matar', NULL, 'Keema Matar from our Indian Non-Veg Curries selection.', 'non-veg', '295.71', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('286', '3', '3', 'Chicken Saagwala', NULL, 'Chicken Saagwala from our Indian Non-Veg Curries selection.', 'non-veg', '330.41', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('287', '3', '3', 'Chicken Vindaloo', NULL, 'Chicken Vindaloo from our Indian Non-Veg Curries selection.', 'non-veg', '385.88', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('288', '3', '3', 'Chicken Do Pyaza', NULL, 'Chicken Do Pyaza from our Indian Non-Veg Curries selection.', 'non-veg', '343.70', '2', '15', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('289', '3', '3', 'Idli Sambar', NULL, 'Idli Sambar from our South Indian selection.', 'veg', '200.64', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('290', '3', '3', 'Medu Vada Sambar', NULL, 'Medu Vada Sambar from our South Indian selection.', 'veg', '160.83', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('291', '3', '3', 'Plain Dosa', NULL, 'Plain Dosa from our South Indian selection.', 'veg', '178.64', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('292', '3', '3', 'Masala Dosa', NULL, 'Masala Dosa from our South Indian selection.', 'veg', '86.42', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('293', '3', '3', 'Onion Rava Dosa', NULL, 'Onion Rava Dosa from our South Indian selection.', 'veg', '111.91', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('294', '3', '3', 'Mysore Masala Dosa', NULL, 'Mysore Masala Dosa from our South Indian selection.', 'veg', '120.51', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('295', '3', '3', 'Ghee Roast Dosa', NULL, 'Ghee Roast Dosa from our South Indian selection.', 'veg', '91.17', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('296', '3', '3', 'Paper Dosa', NULL, 'Paper Dosa from our South Indian selection.', 'veg', '112.59', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('297', '3', '3', 'Paneer Dosa', NULL, 'Paneer Dosa from our South Indian selection.', 'veg', '94.14', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('298', '3', '3', 'Cheese Dosa', NULL, 'Cheese Dosa from our South Indian selection.', 'veg', '118.92', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('299', '3', '3', 'Uttapam Onion', NULL, 'Uttapam Onion from our South Indian selection.', 'veg', '169.00', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('300', '3', '3', 'Uttapam Mix Veg', NULL, 'Uttapam Mix Veg from our South Indian selection.', 'veg', '131.08', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('301', '3', '3', 'Pongal', NULL, 'Pongal from our South Indian selection.', 'veg', '131.83', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('302', '3', '3', 'Curd Rice', NULL, 'Curd Rice from our South Indian selection.', 'veg', '109.33', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('303', '3', '3', 'Lemon Rice', NULL, 'Lemon Rice from our South Indian selection.', 'veg', '117.38', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('304', '3', '3', 'Tamarind Rice', NULL, 'Tamarind Rice from our South Indian selection.', 'veg', '211.13', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('305', '3', '3', 'Sambar Rice', NULL, 'Sambar Rice from our South Indian selection.', 'veg', '170.72', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('306', '3', '3', 'Rasam Rice', NULL, 'Rasam Rice from our South Indian selection.', 'veg', '165.28', '2', '16', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('307', '3', '3', 'Veg Biryani', NULL, 'Veg Biryani from our Biryani & Rice selection.', 'veg', '164.50', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('308', '3', '3', 'Paneer Biryani', NULL, 'Paneer Biryani from our Biryani & Rice selection.', 'veg', '309.57', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('309', '3', '3', 'Mushroom Biryani', NULL, 'Mushroom Biryani from our Biryani & Rice selection.', 'veg', '162.48', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('310', '3', '3', 'Hyderabadi Veg Biryani', NULL, 'Hyderabadi Veg Biryani from our Biryani & Rice selection.', 'veg', '218.66', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('311', '3', '3', 'Jeera Rice', NULL, 'Jeera Rice from our Biryani & Rice selection.', 'veg', '377.28', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('312', '3', '3', 'Peas Pulao', NULL, 'Peas Pulao from our Biryani & Rice selection.', 'veg', '286.40', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('313', '3', '3', 'Veg Fried Rice', NULL, 'Veg Fried Rice from our Biryani & Rice selection.', 'veg', '264.81', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('314', '3', '3', 'Curd Rice Tempered', NULL, 'Curd Rice Tempered from our Biryani & Rice selection.', 'veg', '298.00', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('315', '3', '3', 'Chicken Biryani', NULL, 'Chicken Biryani from our Biryani & Rice selection.', 'non-veg', '339.14', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('316', '3', '3', 'Chicken Dum Biryani', NULL, 'Chicken Dum Biryani from our Biryani & Rice selection.', 'non-veg', '321.76', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('317', '3', '3', 'Chicken Tikka Biryani', NULL, 'Chicken Tikka Biryani from our Biryani & Rice selection.', 'non-veg', '179.55', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('318', '3', '3', 'Mutton Biryani', NULL, 'Mutton Biryani from our Biryani & Rice selection.', 'non-veg', '128.35', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('319', '3', '3', 'Egg Biryani', NULL, 'Egg Biryani from our Biryani & Rice selection.', 'egg', '202.02', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('320', '3', '3', 'Egg Fried Rice', NULL, 'Egg Fried Rice from our Biryani & Rice selection.', 'egg', '189.61', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('321', '3', '3', 'Prawn Biryani', NULL, 'Prawn Biryani from our Biryani & Rice selection.', 'non-veg', '174.86', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('322', '3', '3', 'Fish Biryani', NULL, 'Fish Biryani from our Biryani & Rice selection.', 'non-veg', '365.16', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('323', '3', '3', 'Schezwan Fried Rice', NULL, 'Schezwan Fried Rice from our Biryani & Rice selection.', 'veg', '347.86', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('324', '3', '3', 'Brown Rice Plain', NULL, 'Brown Rice Plain from our Biryani & Rice selection.', 'veg', '201.82', '2', '17', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('325', '3', '3', 'Tandoori Roti', NULL, 'Tandoori Roti from our Indian Breads selection.', 'veg', '85.54', '2', '18', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('326', '3', '3', 'Butter Roti', NULL, 'Butter Roti from our Indian Breads selection.', 'veg', '59.56', '2', '18', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('327', '3', '3', 'Plain Naan', NULL, 'Plain Naan from our Indian Breads selection.', 'veg', '111.45', '2', '18', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('328', '3', '3', 'Butter Naan', NULL, 'Butter Naan from our Indian Breads selection.', 'veg', '65.89', '2', '18', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('329', '3', '3', 'Garlic Naan', NULL, 'Garlic Naan from our Indian Breads selection.', 'veg', '46.49', '2', '18', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('330', '3', '3', 'Lachha Paratha', NULL, 'Lachha Paratha from our Indian Breads selection.', 'veg', '44.66', '2', '18', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('331', '3', '3', 'Aloo Paratha', NULL, 'Aloo Paratha from our Indian Breads selection.', 'veg', '76.14', '2', '18', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('332', '3', '3', 'Paneer Paratha', NULL, 'Paneer Paratha from our Indian Breads selection.', 'veg', '46.27', '2', '18', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('333', '3', '3', 'Missi Roti', NULL, 'Missi Roti from our Indian Breads selection.', 'veg', '78.46', '2', '18', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('334', '3', '3', 'Stuffed Kulcha', NULL, 'Stuffed Kulcha from our Indian Breads selection.', 'veg', '109.78', '2', '18', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('335', '3', '3', 'Amritsari Kulcha', NULL, 'Amritsari Kulcha from our Indian Breads selection.', 'veg', '59.94', '2', '18', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('336', '3', '3', 'Roomali Roti', NULL, 'Roomali Roti from our Indian Breads selection.', 'veg', '41.93', '2', '18', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('337', '3', '3', 'Pani Puri', NULL, 'Pani Puri from our Chaat & Street Food selection.', 'veg', '219.61', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('338', '3', '3', 'Sev Puri', NULL, 'Sev Puri from our Chaat & Street Food selection.', 'veg', '141.52', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('339', '3', '3', 'Dahi Puri', NULL, 'Dahi Puri from our Chaat & Street Food selection.', 'veg', '74.55', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('340', '3', '3', 'Bhel Puri', NULL, 'Bhel Puri from our Chaat & Street Food selection.', 'veg', '67.54', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('341', '3', '3', 'Ragda Pattice', NULL, 'Ragda Pattice from our Chaat & Street Food selection.', 'veg', '77.54', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('342', '3', '3', 'Aloo Tikki Chaat', NULL, 'Aloo Tikki Chaat from our Chaat & Street Food selection.', 'veg', '160.39', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('343', '3', '3', 'Papdi Chaat', NULL, 'Papdi Chaat from our Chaat & Street Food selection.', 'veg', '186.73', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('344', '3', '3', 'Dahi Bhalla', NULL, 'Dahi Bhalla from our Chaat & Street Food selection.', 'veg', '127.55', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('345', '3', '3', 'Samosa Chaat', NULL, 'Samosa Chaat from our Chaat & Street Food selection.', 'veg', '70.16', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('346', '3', '3', 'Chole Bhature', NULL, 'Chole Bhature from our Chaat & Street Food selection.', 'veg', '121.06', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('347', '3', '3', 'Pav Bhaji', NULL, 'Pav Bhaji from our Chaat & Street Food selection.', 'veg', '219.38', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('348', '3', '3', 'Vada Pav', NULL, 'Vada Pav from our Chaat & Street Food selection.', 'veg', '144.66', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('349', '3', '3', 'Kathi Roll Paneer', NULL, 'Kathi Roll Paneer from our Chaat & Street Food selection.', 'veg', '215.37', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('350', '3', '3', 'Kathi Roll Chicken', NULL, 'Kathi Roll Chicken from our Chaat & Street Food selection.', 'non-veg', '197.72', '2', '19', '2025-09-19 20:04:20', '2025-09-19 20:04:20', NULL, '1', '1', '1', '0', '0'),
('351', '3', '3', 'Kachori Sabzi', NULL, 'Kachori Sabzi from our Chaat & Street Food selection.', 'veg', '61.84', '2', '19', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('352', '3', '3', 'Poha Jalebi', NULL, 'Poha Jalebi from our Chaat & Street Food selection.', 'veg', '175.32', '2', '19', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('353', '3', '3', 'Kanda Poha', NULL, 'Kanda Poha from our Chaat & Street Food selection.', 'veg', '169.07', '2', '19', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('354', '3', '3', 'Raj Kachori', NULL, 'Raj Kachori from our Chaat & Street Food selection.', 'veg', '145.92', '2', '19', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('355', '3', '3', 'Paneer Tikka', NULL, 'Paneer Tikka from our Tandoor & Kebabs selection.', 'veg', '237.38', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('356', '3', '3', 'Paneer Malai Tikka', NULL, 'Paneer Malai Tikka from our Tandoor & Kebabs selection.', 'veg', '345.88', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('357', '3', '3', 'Soya Chaap Tikka', NULL, 'Soya Chaap Tikka from our Tandoor & Kebabs selection.', 'veg', '192.35', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('358', '3', '3', 'Tandoori Aloo', NULL, 'Tandoori Aloo from our Tandoor & Kebabs selection.', 'veg', '286.08', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('359', '3', '3', 'Veg Seekh Kebab', NULL, 'Veg Seekh Kebab from our Tandoor & Kebabs selection.', 'veg', '291.58', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('360', '3', '3', 'Achari Paneer Tikka', NULL, 'Achari Paneer Tikka from our Tandoor & Kebabs selection.', 'veg', '436.61', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('361', '3', '3', 'Chicken Tikka', NULL, 'Chicken Tikka from our Tandoor & Kebabs selection.', 'non-veg', '414.00', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('362', '3', '3', 'Chicken Malai Tikka', NULL, 'Chicken Malai Tikka from our Tandoor & Kebabs selection.', 'non-veg', '236.38', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('363', '3', '3', 'Chicken Seekh Kebab', NULL, 'Chicken Seekh Kebab from our Tandoor & Kebabs selection.', 'non-veg', '305.17', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('364', '3', '3', 'Tandoori Chicken Half', NULL, 'Tandoori Chicken Half from our Tandoor & Kebabs selection.', 'non-veg', '211.81', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('365', '3', '3', 'Tandoori Chicken Full', NULL, 'Tandoori Chicken Full from our Tandoor & Kebabs selection.', 'non-veg', '424.66', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('366', '3', '3', 'Mutton Seekh Kebab', NULL, 'Mutton Seekh Kebab from our Tandoor & Kebabs selection.', 'non-veg', '412.45', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('367', '3', '3', 'Fish Tikka', NULL, 'Fish Tikka from our Tandoor & Kebabs selection.', 'non-veg', '246.55', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('368', '3', '3', 'Amritsari Fish Fry', NULL, 'Amritsari Fish Fry from our Tandoor & Kebabs selection.', 'non-veg', '345.30', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('369', '3', '3', 'Prawn Tandoori', NULL, 'Prawn Tandoori from our Tandoor & Kebabs selection.', 'non-veg', '336.60', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('370', '3', '3', 'Afghani Chicken', NULL, 'Afghani Chicken from our Tandoor & Kebabs selection.', 'non-veg', '204.32', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('371', '3', '3', 'Tangdi Kebab', NULL, 'Tangdi Kebab from our Tandoor & Kebabs selection.', 'non-veg', '381.13', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('372', '3', '3', 'Kalmi Kebab', NULL, 'Kalmi Kebab from our Tandoor & Kebabs selection.', 'non-veg', '316.42', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('373', '3', '3', 'Tandoori Broccoli', NULL, 'Tandoori Broccoli from our Tandoor & Kebabs selection.', 'veg', '385.80', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('374', '3', '3', 'Stuffed Mushroom Tikka', NULL, 'Stuffed Mushroom Tikka from our Tandoor & Kebabs selection.', 'veg', '313.80', '2', '20', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('375', '3', '3', 'Veg Manchurian Gravy', NULL, 'Veg Manchurian Gravy from our Indo-Chinese selection.', 'veg', '140.13', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('376', '3', '3', 'Veg Manchurian Dry', NULL, 'Veg Manchurian Dry from our Indo-Chinese selection.', 'veg', '211.31', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('377', '3', '3', 'Chilli Paneer Gravy', NULL, 'Chilli Paneer Gravy from our Indo-Chinese selection.', 'veg', '144.28', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('378', '3', '3', 'Chilli Paneer Dry', NULL, 'Chilli Paneer Dry from our Indo-Chinese selection.', 'veg', '344.40', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('379', '3', '3', 'Gobi Manchurian', NULL, 'Gobi Manchurian from our Indo-Chinese selection.', 'veg', '333.32', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('380', '3', '3', 'Chilli Mushroom', NULL, 'Chilli Mushroom from our Indo-Chinese selection.', 'veg', '322.97', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('381', '3', '3', 'Hakka Noodles Veg', NULL, 'Hakka Noodles Veg from our Indo-Chinese selection.', 'veg', '207.65', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('382', '3', '3', 'Schezwan Noodles Veg', NULL, 'Schezwan Noodles Veg from our Indo-Chinese selection.', 'veg', '152.74', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('383', '3', '3', 'Triple Schezwan Rice Veg', NULL, 'Triple Schezwan Rice Veg from our Indo-Chinese selection.', 'veg', '333.16', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('384', '3', '3', 'American Chopsuey Veg', NULL, 'American Chopsuey Veg from our Indo-Chinese selection.', 'veg', '348.33', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('385', '3', '3', 'Chicken Lollipop', NULL, 'Chicken Lollipop from our Indo-Chinese selection.', 'non-veg', '158.84', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('386', '3', '3', 'Chilli Chicken Gravy', NULL, 'Chilli Chicken Gravy from our Indo-Chinese selection.', 'non-veg', '246.92', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('387', '3', '3', 'Chilli Chicken Dry', NULL, 'Chilli Chicken Dry from our Indo-Chinese selection.', 'non-veg', '155.23', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('388', '3', '3', 'Hakka Noodles Chicken', NULL, 'Hakka Noodles Chicken from our Indo-Chinese selection.', 'non-veg', '307.33', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('389', '3', '3', 'Schezwan Noodles Chicken', NULL, 'Schezwan Noodles Chicken from our Indo-Chinese selection.', 'non-veg', '308.48', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('390', '3', '3', 'Egg Hakka Noodles', NULL, 'Egg Hakka Noodles from our Indo-Chinese selection.', 'egg', '168.25', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('391', '3', '3', 'Egg Schezwan Noodles', NULL, 'Egg Schezwan Noodles from our Indo-Chinese selection.', 'egg', '244.56', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('392', '3', '3', 'Egg Chilli Garlic Fried Rice', NULL, 'Egg Chilli Garlic Fried Rice from our Indo-Chinese selection.', 'egg', '260.96', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('393', '3', '3', 'Prawn Chilli Garlic', NULL, 'Prawn Chilli Garlic from our Indo-Chinese selection.', 'non-veg', '198.31', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('394', '3', '3', 'Fish Chilli Basil', NULL, 'Fish Chilli Basil from our Indo-Chinese selection.', 'non-veg', '331.94', '2', '21', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('395', '3', '3', 'Penne Arrabbiata', NULL, 'Penne Arrabbiata from our Continental & Pastas selection.', 'veg', '294.25', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('396', '3', '3', 'Penne Alfredo', NULL, 'Penne Alfredo from our Continental & Pastas selection.', 'veg', '237.19', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('397', '3', '3', 'Spaghetti Aglio e Olio', NULL, 'Spaghetti Aglio e Olio from our Continental & Pastas selection.', 'veg', '325.61', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('398', '3', '3', 'Spaghetti Pomodoro', NULL, 'Spaghetti Pomodoro from our Continental & Pastas selection.', 'veg', '377.08', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('399', '3', '3', 'Fusilli Pesto', NULL, 'Fusilli Pesto from our Continental & Pastas selection.', 'veg', '234.31', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('400', '3', '3', 'Mac and Cheese', NULL, 'Mac and Cheese from our Continental & Pastas selection.', 'veg', '264.16', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('401', '3', '3', 'Veg Lasagna', NULL, 'Veg Lasagna from our Continental & Pastas selection.', 'veg', '448.69', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('402', '3', '3', 'Grilled Cottage Cheese Steak', NULL, 'Grilled Cottage Cheese Steak from our Continental & Pastas selection.', 'veg', '355.47', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('403', '3', '3', 'Sauteed Vegetables Plate', NULL, 'Sauteed Vegetables Plate from our Continental & Pastas selection.', 'veg', '298.29', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('404', '3', '3', 'Herb Rice with Veggies', NULL, 'Herb Rice with Veggies from our Continental & Pastas selection.', 'veg', '319.75', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('405', '3', '3', 'Chicken Alfredo Pasta', NULL, 'Chicken Alfredo Pasta from our Continental & Pastas selection.', 'non-veg', '212.67', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('406', '3', '3', 'Chicken Arrabbiata Pasta', NULL, 'Chicken Arrabbiata Pasta from our Continental & Pastas selection.', 'non-veg', '240.67', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('407', '3', '3', 'Grilled Chicken Breast', NULL, 'Grilled Chicken Breast from our Continental & Pastas selection.', 'non-veg', '271.28', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('408', '3', '3', 'Chicken Stroganoff', NULL, 'Chicken Stroganoff from our Continental & Pastas selection.', 'non-veg', '338.84', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('409', '3', '3', 'Fish and Chips', NULL, 'Fish and Chips from our Continental & Pastas selection.', 'non-veg', '242.13', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('410', '3', '3', 'Herb-Grilled Fish Fillet', NULL, 'Herb-Grilled Fish Fillet from our Continental & Pastas selection.', 'non-veg', '239.46', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('411', '3', '3', 'Chicken Caesar Salad', NULL, 'Chicken Caesar Salad from our Continental & Pastas selection.', 'non-veg', '199.17', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('412', '3', '3', 'Greek Salad', NULL, 'Greek Salad from our Continental & Pastas selection.', 'veg', '350.40', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('413', '3', '3', 'Mushroom Risotto', NULL, 'Mushroom Risotto from our Continental & Pastas selection.', 'veg', '241.81', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('414', '3', '3', 'Chicken Risotto', NULL, 'Chicken Risotto from our Continental & Pastas selection.', 'non-veg', '424.46', '2', '22', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('415', '3', '3', 'Margherita Pizza Personal', NULL, 'Margherita Pizza Personal from our Pizzas selection.', 'veg', '546.66', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('416', '3', '3', 'Margherita Pizza Medium', NULL, 'Margherita Pizza Medium from our Pizzas selection.', 'veg', '246.93', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('417', '3', '3', 'Farmhouse Pizza Personal', NULL, 'Farmhouse Pizza Personal from our Pizzas selection.', 'veg', '310.44', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('418', '3', '3', 'Farmhouse Pizza Medium', NULL, 'Farmhouse Pizza Medium from our Pizzas selection.', 'veg', '474.21', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('419', '3', '3', 'Veggie Supreme Pizza Personal', NULL, 'Veggie Supreme Pizza Personal from our Pizzas selection.', 'veg', '301.41', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('420', '3', '3', 'Veggie Supreme Pizza Medium', NULL, 'Veggie Supreme Pizza Medium from our Pizzas selection.', 'veg', '270.28', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('421', '3', '3', 'Paneer Tikka Pizza Personal', NULL, 'Paneer Tikka Pizza Personal from our Pizzas selection.', 'veg', '575.50', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('422', '3', '3', 'Paneer Tikka Pizza Medium', NULL, 'Paneer Tikka Pizza Medium from our Pizzas selection.', 'veg', '437.00', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('423', '3', '3', 'Corn & Cheese Pizza Personal', NULL, 'Corn & Cheese Pizza Personal from our Pizzas selection.', 'veg', '399.61', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('424', '3', '3', 'Corn & Cheese Pizza Medium', NULL, 'Corn & Cheese Pizza Medium from our Pizzas selection.', 'veg', '518.16', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('425', '3', '3', 'Pepperoni Pizza Personal', NULL, 'Pepperoni Pizza Personal from our Pizzas selection.', 'non-veg', '526.85', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('426', '3', '3', 'Pepperoni Pizza Medium', NULL, 'Pepperoni Pizza Medium from our Pizzas selection.', 'non-veg', '292.36', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('427', '3', '3', 'BBQ Chicken Pizza Personal', NULL, 'BBQ Chicken Pizza Personal from our Pizzas selection.', 'non-veg', '256.83', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('428', '3', '3', 'BBQ Chicken Pizza Medium', NULL, 'BBQ Chicken Pizza Medium from our Pizzas selection.', 'non-veg', '383.80', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('429', '3', '3', 'Chicken Tikka Pizza Personal', NULL, 'Chicken Tikka Pizza Personal from our Pizzas selection.', 'non-veg', '380.96', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('430', '3', '3', 'Chicken Tikka Pizza Medium', NULL, 'Chicken Tikka Pizza Medium from our Pizzas selection.', 'non-veg', '397.47', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('431', '3', '3', 'Four Cheese Pizza Medium', NULL, 'Four Cheese Pizza Medium from our Pizzas selection.', 'veg', '497.05', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('432', '3', '3', 'Mexican Green Wave Pizza Medium', NULL, 'Mexican Green Wave Pizza Medium from our Pizzas selection.', 'veg', '475.88', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('433', '3', '3', 'Peri Peri Paneer Pizza Medium', NULL, 'Peri Peri Paneer Pizza Medium from our Pizzas selection.', 'veg', '593.98', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('434', '3', '3', 'Tandoori Chicken Pizza Medium', NULL, 'Tandoori Chicken Pizza Medium from our Pizzas selection.', 'non-veg', '257.40', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('435', '3', '3', 'Garden Fresh Pizza Thin Crust', NULL, 'Garden Fresh Pizza Thin Crust from our Pizzas selection.', 'veg', '373.00', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('436', '3', '3', 'Smoked Chicken Pizza Thin Crust', NULL, 'Smoked Chicken Pizza Thin Crust from our Pizzas selection.', 'non-veg', '348.93', '2', '23', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('437', '3', '3', 'Classic Veg Burger', NULL, 'Classic Veg Burger from our Burgers & Sandwiches selection.', 'veg', '344.03', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('438', '3', '3', 'Cheese Veg Burger', NULL, 'Cheese Veg Burger from our Burgers & Sandwiches selection.', 'veg', '184.65', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('439', '3', '3', 'Crispy Paneer Burger', NULL, 'Crispy Paneer Burger from our Burgers & Sandwiches selection.', 'veg', '169.45', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('440', '3', '3', 'Aloo Tikki Burger', NULL, 'Aloo Tikki Burger from our Burgers & Sandwiches selection.', 'veg', '236.64', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('441', '3', '3', 'Mexican Veg Burger', NULL, 'Mexican Veg Burger from our Burgers & Sandwiches selection.', 'veg', '229.69', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('442', '3', '3', 'Grilled Veg Sandwich', NULL, 'Grilled Veg Sandwich from our Burgers & Sandwiches selection.', 'veg', '192.42', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('443', '3', '3', 'Bombay Masala Sandwich', NULL, 'Bombay Masala Sandwich from our Burgers & Sandwiches selection.', 'veg', '184.95', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('444', '3', '3', 'Paneer Tikka Sandwich', NULL, 'Paneer Tikka Sandwich from our Burgers & Sandwiches selection.', 'veg', '360.05', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('445', '3', '3', 'Club Sandwich Veg', NULL, 'Club Sandwich Veg from our Burgers & Sandwiches selection.', 'veg', '235.21', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('446', '3', '3', 'Chicken Burger Classic', NULL, 'Chicken Burger Classic from our Burgers & Sandwiches selection.', 'non-veg', '343.95', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('447', '3', '3', 'Chicken Burger Spicy', NULL, 'Chicken Burger Spicy from our Burgers & Sandwiches selection.', 'non-veg', '263.08', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('448', '3', '3', 'BBQ Chicken Burger', NULL, 'BBQ Chicken Burger from our Burgers & Sandwiches selection.', 'non-veg', '133.15', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('449', '3', '3', 'Crispy Chicken Burger', NULL, 'Crispy Chicken Burger from our Burgers & Sandwiches selection.', 'non-veg', '379.81', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('450', '3', '3', 'Peri Peri Chicken Burger', NULL, 'Peri Peri Chicken Burger from our Burgers & Sandwiches selection.', 'non-veg', '337.37', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('451', '3', '3', 'Egg Mayo Sandwich', NULL, 'Egg Mayo Sandwich from our Burgers & Sandwiches selection.', 'egg', '371.94', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('452', '3', '3', 'Chicken Club Sandwich', NULL, 'Chicken Club Sandwich from our Burgers & Sandwiches selection.', 'non-veg', '360.86', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('453', '3', '3', 'Tuna Sandwich', NULL, 'Tuna Sandwich from our Burgers & Sandwiches selection.', 'non-veg', '340.66', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('454', '3', '3', 'Grilled Chicken Sandwich', NULL, 'Grilled Chicken Sandwich from our Burgers & Sandwiches selection.', 'non-veg', '163.24', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('455', '3', '3', 'Double Patty Veg Burger', NULL, 'Double Patty Veg Burger from our Burgers & Sandwiches selection.', 'veg', '246.27', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('456', '3', '3', 'Paneer Kathi Roll', NULL, 'Paneer Kathi Roll from our Burgers & Sandwiches selection.', 'veg', '175.57', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('457', '3', '3', 'Chicken Kathi Roll', NULL, 'Chicken Kathi Roll from our Burgers & Sandwiches selection.', 'non-veg', '224.27', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('458', '3', '3', 'Egg Kathi Roll', NULL, 'Egg Kathi Roll from our Burgers & Sandwiches selection.', 'egg', '135.25', '2', '24', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('459', '3', '3', 'Gulab Jamun', NULL, 'Gulab Jamun from our Desserts selection.', 'veg', '148.22', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('460', '3', '3', 'Rasmalai', NULL, 'Rasmalai from our Desserts selection.', 'veg', '257.36', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('461', '3', '3', 'Rasgulla', NULL, 'Rasgulla from our Desserts selection.', 'veg', '127.74', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('462', '3', '3', 'Jalebi', NULL, 'Jalebi from our Desserts selection.', 'veg', '221.13', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('463', '3', '3', 'Gajar Halwa', NULL, 'Gajar Halwa from our Desserts selection.', 'veg', '161.90', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('464', '3', '3', 'Moong Dal Halwa', NULL, 'Moong Dal Halwa from our Desserts selection.', 'veg', '156.14', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('465', '3', '3', 'Kheer', NULL, 'Kheer from our Desserts selection.', 'veg', '252.32', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('466', '3', '3', 'Phirni', NULL, 'Phirni from our Desserts selection.', 'veg', '259.18', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('467', '3', '3', 'Kulfi Malai', NULL, 'Kulfi Malai from our Desserts selection.', 'veg', '180.04', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('468', '3', '3', 'Kulfi Pista', NULL, 'Kulfi Pista from our Desserts selection.', 'veg', '209.31', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('469', '3', '3', 'Matka Kulfi', NULL, 'Matka Kulfi from our Desserts selection.', 'veg', '107.86', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('470', '3', '3', 'Ice Cream Vanilla Scoop', NULL, 'Ice Cream Vanilla Scoop from our Desserts selection.', 'veg', '133.41', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('471', '3', '3', 'Ice Cream Chocolate Scoop', NULL, 'Ice Cream Chocolate Scoop from our Desserts selection.', 'veg', '254.37', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('472', '3', '3', 'Brownie with Ice Cream', NULL, 'Brownie with Ice Cream from our Desserts selection.', 'veg', '184.25', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('473', '3', '3', 'Sizzling Brownie', NULL, 'Sizzling Brownie from our Desserts selection.', 'veg', '177.60', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('474', '3', '3', 'Cheesecake Blueberry', NULL, 'Cheesecake Blueberry from our Desserts selection.', 'veg', '214.64', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('475', '3', '3', 'Tiramisu', NULL, 'Tiramisu from our Desserts selection.', 'veg', '90.29', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('476', '3', '3', 'Caramel Custard', NULL, 'Caramel Custard from our Desserts selection.', 'egg', '185.15', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('477', '3', '3', 'Apple Pie', NULL, 'Apple Pie from our Desserts selection.', 'veg', '170.51', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('478', '3', '3', 'Mysore Pak', NULL, 'Mysore Pak from our Desserts selection.', 'veg', '233.49', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('479', '3', '3', 'Shrikhand', NULL, 'Shrikhand from our Desserts selection.', 'veg', '108.34', '2', '25', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('480', '3', '3', 'Masala Chai', NULL, 'Masala Chai from our Beverages selection.', 'veg', '213.33', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('481', '3', '3', 'Ginger Tea', NULL, 'Ginger Tea from our Beverages selection.', 'veg', '63.62', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('482', '3', '3', 'Filter Coffee', NULL, 'Filter Coffee from our Beverages selection.', 'veg', '81.59', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('483', '3', '3', 'Cold Coffee Classic', NULL, 'Cold Coffee Classic from our Beverages selection.', 'veg', '151.16', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('484', '3', '3', 'Cold Coffee Frappe', NULL, 'Cold Coffee Frappe from our Beverages selection.', 'veg', '164.79', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('485', '3', '3', 'Iced Tea Lemon', NULL, 'Iced Tea Lemon from our Beverages selection.', 'veg', '89.98', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('486', '3', '3', 'Iced Tea Peach', NULL, 'Iced Tea Peach from our Beverages selection.', 'veg', '70.38', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('487', '3', '3', 'Fresh Lime Soda Sweet', NULL, 'Fresh Lime Soda Sweet from our Beverages selection.', 'veg', '201.35', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('488', '3', '3', 'Fresh Lime Soda Salted', NULL, 'Fresh Lime Soda Salted from our Beverages selection.', 'veg', '91.86', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('489', '3', '3', 'Sweet Lassi', NULL, 'Sweet Lassi from our Beverages selection.', 'veg', '151.07', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('490', '3', '3', 'Salted Lassi', NULL, 'Salted Lassi from our Beverages selection.', 'veg', '155.29', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('491', '3', '3', 'Mango Lassi', NULL, 'Mango Lassi from our Beverages selection.', 'veg', '121.27', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('492', '3', '3', 'Buttermilk Chaas', NULL, 'Buttermilk Chaas from our Beverages selection.', 'veg', '149.22', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('493', '3', '3', 'Thandai', NULL, 'Thandai from our Beverages selection.', 'veg', '138.87', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('494', '3', '3', 'Badam Milk', NULL, 'Badam Milk from our Beverages selection.', 'veg', '208.90', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('495', '3', '3', 'Watermelon Juice', NULL, 'Watermelon Juice from our Beverages selection.', 'veg', '84.72', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('496', '3', '3', 'Orange Juice', NULL, 'Orange Juice from our Beverages selection.', 'veg', '171.75', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('497', '3', '3', 'Pineapple Juice', NULL, 'Pineapple Juice from our Beverages selection.', 'veg', '90.58', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('498', '3', '3', 'Mint Mojito', NULL, 'Mint Mojito from our Beverages selection.', 'veg', '117.28', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('499', '3', '3', 'Strawberry Milkshake', NULL, 'Strawberry Milkshake from our Beverages selection.', 'veg', '164.19', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('500', '3', '3', 'Chocolate Milkshake', NULL, 'Chocolate Milkshake from our Beverages selection.', 'veg', '101.00', '2', '26', '2025-09-19 20:04:21', '2025-09-19 20:04:21', NULL, '1', '1', '1', '0', '0'),
('501', '4', '1', 'Margherita Pizza', NULL, NULL, 'veg', '100.00', '3', '27', '2025-09-20 12:59:59', '2025-10-15 12:17:29', NULL, '1', '1', '1', '0', '0'),
('503', '5', '5', 'Butter Chicken', 'd53454ebe29fd1e1a47b90f692d86a6d.jpeg', 'Rich creamy chicken curry with butter and spices.', 'non-veg', '0.00', '4', '30', '2025-10-08 08:47:24', '2025-10-08 08:47:24', '10', '1', '1', '1', '0', '0'),
('504', '5', '5', 'Paneer Butter Masala', '4892a1ba87cee5b2016d3505c120e7ae.jpeg', 'Paneer cubes cooked in buttery tomato gravy.', 'veg', '0.00', '4', '30', '2025-10-08 08:48:17', '2025-10-08 08:48:17', '10', '1', '1', '1', '0', '0'),
('505', '5', '5', 'Dal Makhani', '4f724ef832d4425388dab42acfde2c3a.jpeg', 'Black lentils simmered overnight with cream.', 'veg', '0.00', '4', '30', '2025-10-08 08:49:15', '2025-10-08 08:49:15', '4', '1', '1', '1', '0', '0'),
('506', '5', '5', 'Rogan Josh', '32b2d8f2eb55ef6c04737415608e768b.jpeg', 'Spicy lamb curry from Kashmir.', 'halal', '0.00', '4', '30', '2025-10-08 08:50:17', '2025-10-08 08:50:17', '6', '1', '1', '1', '0', '0'),
('507', '5', '5', 'Pani Puri', '48cf1b5a9b4fde5d842184d3961bc5f3.jpeg', 'Crispy puris filled with tangy spiced water.', 'veg', '60.00', '4', '31', '2025-10-08 08:53:49', '2025-10-08 08:53:49', '1', '1', '1', '1', '0', '0'),
('508', '5', '5', 'Aloo Tikki Chaat', NULL, 'Crispy potato patties topped with chutneys.', 'veg', '90.00', '4', '31', '2025-10-08 08:55:20', '2025-10-08 08:55:40', NULL, '1', '1', '1', '0', '0');


-- Table structure for table `menus`
DROP TABLE IF EXISTS `menus`;
CREATE TABLE `menus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `menu_name` text DEFAULT NULL,
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `menus_branch_id_foreign` (`branch_id`),
  CONSTRAINT `menus_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `menus`
INSERT INTO `menus` VALUES
('1', '1', '{\"en\":\"Main Menu\"}', '0', '2025-09-17 06:04:57', '2025-09-17 06:04:57'),
('2', '3', '{\"en\":\"Main Menu\"}', '0', '2025-09-19 20:04:20', '2025-09-19 20:04:20'),
('3', '4', '{\"en\":\"Breakfast\"}', '0', '2025-09-20 12:58:54', '2025-09-20 12:58:54'),
('4', '5', '{\"en\":\"Vada pao\"}', '0', '2025-10-07 15:01:24', '2025-10-07 15:01:24');


-- Table structure for table `migrations`
DROP TABLE IF EXISTS `migrations`;
CREATE TABLE `migrations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(191) NOT NULL,
  `batch` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=265 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `migrations`
INSERT INTO `migrations` VALUES
('1', '0001_01_01_000000_create_users_table', '1'),
('2', '0001_01_01_000001_create_cache_table', '1'),
('3', '0001_01_01_000002_create_jobs_table', '1'),
('4', '2014_04_02_193005_create_translations_table', '1'),
('5', '2024_01_01_create_printers_table', '1'),
('6', '2024_03_13_000002_create_expense_categories_table', '1'),
('7', '2024_07_01_060651_add_two_factor_columns_to_users_table', '1'),
('8', '2024_07_01_060707_create_personal_access_tokens_table', '1'),
('9', '2024_07_02_064204_create_menus_table', '1'),
('10', '2024_07_12_070634_create_areas_table', '1'),
('11', '2024_07_16_103816_create_orders_table', '1'),
('12', '2024_07_21_083459_add_user_type_column', '1'),
('13', '2024_07_24_131631_create_payments_table', '1'),
('14', '2024_07_31_081306_add_email_otp_column', '1'),
('15', '2024_08_02_061808_create_countries_table', '1'),
('16', '2024_08_02_071637_create_restaurant_settings_table', '1'),
('17', '2024_08_04_104258_create_razorpay_payments_table', '1'),
('18', '2024_08_05_092258_create_stripe_payments_table', '1'),
('19', '2024_08_05_110157_create_payment_gateway_credentials_table', '1'),
('20', '2024_08_13_033139_create_global_settings_table', '1'),
('21', '2024_08_13_073129_update_settings_add_envato_key', '1'),
('22', '2024_08_13_073129_update_settings_add_support_key', '1'),
('23', '2024_08_14_073129_update_settings_add_email', '1'),
('24', '2024_08_14_073129_update_settings_add_last_verified_key', '1'),
('25', '2024_09_13_081726_create_modules_table', '1'),
('26', '2024_09_14_130619_create_permission_tables', '1'),
('27', '2024_09_27_071339_create_reservations_table', '1'),
('28', '2024_10_02_090924_create_email_settings_table', '1'),
('29', '2024_10_03_073837_create_notification_settings_table', '1'),
('30', '2024_10_11_100539_create_branches_table', '1'),
('31', '2024_10_14_121135_create_onboarding_steps_table', '1'),
('32', '2024_10_15_071238_add_restaurant_hash_column', '1'),
('33', '2024_10_15_071238_storage', '1'),
('34', '2024_10_15_100639_create_restaurant_payments_table', '1'),
('35', '2024_10_27_101326_create_packages_table', '1'),
('36', '2024_11_02_112920_create_language_settings_table', '1'),
('37', '2024_11_02_120314_create_flags_table', '1'),
('38', '2024_11_02_120314_email_settings_table', '1'),
('39', '2024_11_08_071617_add_customer_login_required_column', '1'),
('40', '2024_11_08_093032_create_superadmin_payment_gateways_table', '1'),
('41', '2024_11_08_133506_add_stripe_column_for_license', '1'),
('42', '2024_11_12_055119_create_delivery_executives_table', '1'),
('43', '2024_11_12_055632_add_order_types_column', '1'),
('44', '2024_11_12_060500_create_order_histories_table', '1'),
('45', '2024_11_12_060500_global_license_type_table', '1'),
('46', '2024_11_12_060500_global_purchase_on_table', '1'),
('47', '2024_11_12_060500_global_setting_timezone_table', '1'),
('48', '2024_11_17_052707_currency_position', '1'),
('49', '2024_11_17_052707_move_qr_code', '1'),
('50', '2024_11_19_113852_add_is_active_to_restaurants_table', '1'),
('51', '2024_11_20_114816_add_staff_welcome_email_notification', '1'),
('52', '2024_11_25_061322_create_pusher_settings_table', '1'),
('53', '2024_11_26_090216_create_global_currencies_table', '1'),
('54', '2024_12_03_085842_add_about_us_column', '1'),
('55', '2024_12_03_104817_add_currency_id_packages', '1'),
('56', '2024_12_04_080223_add_allow_customer_delivery_orders', '1'),
('57', '2024_12_04_115601_add_preparation_time_column', '1'),
('58', '2024_12_11_110000_create_tables_for_subscription_table', '1'),
('59', '2024_12_11_131225_add_disable_landing_site_columns', '1'),
('60', '2024_12_12_090840_create_waiter_requests_table', '1'),
('61', '2024_12_13_090840_add_domain_global_setting', '1'),
('62', '2024_12_16_080201_create_lifetime_subscriptions_for_paid_restaurants', '1'),
('63', '2024_12_23_124452_add_payment_enabled_columns_to_payment_settings_table', '1'),
('64', '2024_12_27_054246_add_table_reservation_default_status_to_restaurants_table', '1'),
('65', '2024_12_30_074018_create_split_orders_table', '1'),
('66', '2024_12_30_200942_create_restaurant_settings_table', '1'),
('67', '2025_01_03_050139_add_social_media_links_to_reataurants_table', '1'),
('68', '2025_01_03_093938_add_social_media_links_to_global_settings_table', '1'),
('69', '2025_01_06_111550_create_receipt_settings_table', '1'),
('70', '2025_01_09_073145_generate_qr_codes_for_existing_branches', '1'),
('71', '2025_01_09_115652_update_receipt_settings_for_existing_restaurants', '1'),
('72', '2025_01_10_064103_add_table_required_column_to_customer_settings_table', '1'),
('73', '2025_01_10_100552_insert_to_file_storage_settings_default_values', '1'),
('74', '2025_01_11_063817_add_default_currency_column', '1'),
('75', '2025_01_15_000000_create_cart_header_settings_table', '1'),
('76', '2025_01_15_000001_create_cart_header_images_table', '1'),
('77', '2025_01_16_125322_add_is_enabled_to_menu_items_table', '1'),
('78', '2025_01_16_131100_regenrate_qr_codes', '1'),
('79', '2025_01_20_000000_add_restaurant_id_to_roles', '1'),
('80', '2025_01_20_071544_add_branch_limit_to_packages_table', '1'),
('81', '2025_01_20_091630_update_item_type', '1'),
('82', '2025_01_20_125429_add_discount_columns_to_orders_table', '1'),
('83', '2025_01_21_064139_add_show_logo_text_column', '1'),
('84', '2025_01_21_064256_add_offline_payment', '1'),
('85', '2025_01_21_132218_fix_user_roles', '1'),
('86', '2025_01_22_114720_add_show_tax_to_receipt_setting', '1'),
('87', '2025_01_23_065746_create_modifier_groups_table', '1'),
('88', '2025_01_23_085333_create_restaurant_taxes_table', '1'),
('89', '2025_01_23_090554_create_modifier_options_table', '1'),
('90', '2025_01_23_094318_create_item_modifiers_table', '1'),
('91', '2025_01_23_121154_create_order_item_modifier_options_table', '1'),
('92', '2025_01_27_065822_add_balance_column_to_payment', '1'),
('93', '2025_01_28_111039_add_allow_dine_in_orders_to_restaurant', '1'),
('94', '2025_01_30_050755_add_yelp_icon_to_global_settings', '1'),
('95', '2025_01_30_055744_add_yelp_link_to_restaurants', '1'),
('96', '2025_01_30_100556_fix_package_price_length', '1'),
('97', '2025_01_30_104043_add_meta_data_to_global_settings', '1'),
('98', '2025_01_31_000001_create_predefined_amounts_table', '1'),
('99', '2025_02_03_062109_add_is_cash_payment_enabled_to_payment', '1'),
('100', '2025_02_04_140538_add_transaction_id_kot', '1'),
('101', '2025_02_15_121956_add_hide_new_orders_option_to_restaurant', '1'),
('102', '2025_02_17_052801_create_restaurant_charges_settings_table', '1'),
('103', '2025_02_17_093729_add_favicon_to_restaurant', '1'),
('104', '2025_02_19_091730_update_menu_name_to_json', '1'),
('105', '2025_02_20_095321_add_waiter_request_options_to_restaurant', '1'),
('106', '2025_02_21_051534_add_hash_to_global_settings_table', '1'),
('107', '2025_02_21_102116_add_column_to_settings', '1'),
('108', '2025_02_24_063827_add_payment_qr_to_receipt_settings', '1'),
('109', '2025_02_24_111946_add_permissions_to_customers', '1'),
('110', '2025_03_04_114535_add_is_enabled_to_restaurant_charges', '1'),
('111', '2025_03_10_055100_add_tip_column_to_orders_table', '1'),
('112', '2025_03_10_100727_add_is_pwa_intall_alert_show_column_in_restaurants_table', '1'),
('113', '2025_03_17_090450_add_meta_title_to_global_settings', '1'),
('114', '2025_03_18_044410_create_expenses_table', '1'),
('115', '2025_03_19_092459_create_custom_menus_table', '1'),
('116', '2025_03_19_103047_update_additional_modules', '1'),
('117', '2025_03_24_084350_add_show_payments_column_to_receipt_settings_table', '1'),
('118', '2025_04_01_050059_add_branch_id_to_expense_category', '1'),
('119', '2025_04_01_051356_add_branch_id_to_expenses', '1'),
('120', '2025_04_02_071911_update_kot_status_enum', '1'),
('121', '2025_04_07_112351_add_payment_recived_status_to_orders_table', '1'),
('122', '2025_04_08_063624_update_meta_keywords', '1'),
('123', '2025_04_10_065753_add_flutterwave_payment_gateway_columns_and_tables', '1'),
('124', '2025_04_15_084543_create_front_details_table', '1'),
('125', '2025_04_22_065157_create_front_reviews_setting_table', '1'),
('126', '2025_04_22_091055_create_branch_delivery_settings_table', '1'),
('127', '2025_04_22_091146_create_customer_addresses_table', '1'),
('128', '2025_04_22_091223_create_delivery_fee_tiers_table', '1'),
('129', '2025_04_22_091258_add_delivery_columns_to_orders_table', '1'),
('130', '2025_04_29_102014_add_landing_type_column_in_global_settings_table', '1'),
('131', '2025_04_29_114538_add_front_data_in_front_details_table', '1'),
('132', '2025_05_14_094039_update_printers_settings_columns_to_printers_table', '1'),
('133', '2025_05_15_071027_create_kot_places_table', '1'),
('134', '2025_05_23_124746_add_in_stock_column', '1'),
('135', '2025_05_26_105151_relocate_map_api_key_to_superadmin_settings', '1'),
('136', '2025_05_26_114443_modify_kot_places_table', '1'),
('137', '2025_05_30_081624_add_show_item_on_customer_site_to_menu_items', '1'),
('138', '2025_06_02_081928_add_session_driver_column_to_global_settings', '1'),
('139', '2025_06_02_112147_add_columns_to_superadmin_payment_gateways_table', '1'),
('140', '2025_06_02_112903_add_paypal_payment_column_to_payment_gateway_credentials', '1'),
('141', '2025_06_02_113108_create_paypal_payments_table', '1'),
('142', '2025_06_02_114326_add_paypal_payment_in_payment_method_to_payments', '1'),
('143', '2025_06_03_095923_add_status_column_kot_item', '1'),
('144', '2025_06_04_065130_add_columns_payfast_in_superadmin_payment_gateways_table', '1'),
('145', '2025_06_05_063256_add_sort_order_columns_in_menu_and_items', '1'),
('146', '2025_06_05_112055_create_kot_settings_table', '1'),
('147', '2025_06_06_050159_add_payfast_payment_column_to_payment_gateway_credentials', '1'),
('148', '2025_06_06_051204_create_payfast_payments_table', '1'),
('149', '2025_06_10_093131_change_delete_cascade_for_orders', '1'),
('150', '2025_06_11_061716_add_uuid_to_orders_table', '1'),
('151', '2025_06_11_062354_add_columns_paystack_in_superadmin_payment_gateways_table', '1'),
('152', '2025_06_13_112612_add_phone_to_users', '1'),
('153', '2025_06_13_113200_add_column_paystack_payments_to_payment_gateway_credentials', '1'),
('154', '2025_06_13_113240_create_paystack_payments_table', '1'),
('155', '2025_06_16_104533_add_note_columns_to_kot_items_and_order_items', '1'),
('156', '2025_06_18_112425_add_payment_gateways_to_restaurants_table', '1'),
('157', '2025_06_19_070518_add_position_to_custom_menus_table', '1'),
('158', '2025_06_20_060452_add_columns_to_branch_table', '1'),
('159', '2025_06_20_092521_add_others_type_to_payments_table', '1'),
('160', '2025_06_23_101041_create_kot_cancel_reasons_table', '1'),
('161', '2025_06_23_120021_update_kot_place_id_in_menu_items', '1'),
('162', '2025_06_24_092521_disable_printer', '1'),
('163', '2025_06_24_092811_add_column_cancel_kot_reason_to_kots_table', '1'),
('164', '2025_06_24_102830_update_enum_status_to_kots_table', '1'),
('165', '2025_06_25_094311_add_column_cancellation_reason_to_orders_table', '1'),
('166', '2025_06_26_060831_add_custom_delivery_options_to_restaurants_table', '1'),
('167', '2025_06_27_084541_insert_sample_kot_cancel_reasons_data', '1'),
('168', '2025_07_01_112529_create_print_jobs_table', '1'),
('169', '2025_07_01_133114_add_placed_via_column_orders_table', '1'),
('170', '2025_07_02_090709_create_order_types_table', '1'),
('171', '2025_07_02_105440_add_translations_columns_for_modifier_group', '1'),
('172', '2025_07_02_114040_add_unique_hash_to_branches_table', '1'),
('173', '2025_07_03_123829_update_kot_place_id_for_cloned_menu_items', '1'),
('174', '2025_07_04_064350_update_order_type_id_in_orders', '1'),
('175', '2025_07_04_081809_add_tax_mode_to_restaurants_table', '1'),
('176', '2025_07_04_131541_create_desktop_applications_table', '1'),
('177', '2025_07_07_070122_add_pusher_broadcast_to_pusher_settings_table', '1'),
('178', '2025_07_07_110131_create_menu_item_taxes_table', '1'),
('179', '2025_07_14_082950_add_columns_to_restaurants_table', '1'),
('180', '2025_07_14_124125_add_pick_up_date_range_in_restaurants_table', '1'),
('181', '2025_07_17_122331_create_order_number_settings', '1'),
('182', '2025_07_29_063129_modify_item_type_in-menus', '1'),
('183', '2025_07_29_082605_add_show_halal_and_veg_option_to_restaurants', '1'),
('184', '2025_07_30_125616_add_tax_mode_to_orders', '1'),
('185', '2025_08_01_114055_add_reservation_column_to_restaurants_table', '1'),
('186', '2025_08_04_131541_create_desktop_applications_update_table', '1'),
('187', '2025_08_05_081541_modify_split_orders_table_add_bank_transfer', '1'),
('188', '2025_08_06_065323_change_payment_method_to_string_in_payments_table', '1'),
('189', '2025_08_07_033322_add_column_disable_slot_minutes_to_restaurants_table', '1'),
('190', '2025_08_08_115502_add_variation_id_to_item_modifiers', '1'),
('191', '2025_08_12_133228_change_package_description_length', '1'),
('192', '2025_08_13_060315_rename_payfast_columns_in_superadmin_payment_gateways_table', '1'),
('193', '2025_08_13_110934_add_default_expense_categories_to_existing_branches', '1'),
('194', '2025_08_16_110310_add_slot_time_difference_to_reservations', '1'),
('195', '2025_08_19_071639_fix_tax_percent_to_unlimited_decimal', '1'),
('196', '2025_08_19_131541_create_desktop_applications_mac_update_table', '1'),
('197', '2025_08_20_000001_add_quantity_to_split_order_items', '1'),
('198', '2025_08_21_100452_add_html_content_print_job', '1'),
('199', '2025_08_25_050939_add_hide_menu_item_image_columns_to_restaurants_table', '1'),
('200', '2025_08_25_060934_add_xendit_payment_gateway_to_payment_gateway_credentials_table', '1'),
('201', '2025_08_25_061405_add_xendit_to_global_settings_table', '1'),
('202', '2025_08_25_061500_create_xendit_payments_table', '1'),
('203', '2025_08_25_062000_add_xendit_webhook_verification_tokens', '1'),
('204', '2025_01_15_000000_create_database_backups_table', '2'),
('205', '2025_01_15_000001_create_database_backup_settings_table', '2'),
('206', '2025_01_01_121040_inventory_global_settings', '3'),
('207', '2025_02_06_095827_create_invetory_module_table', '3'),
('208', '2025_02_12_create_purchase_orders_tables', '3'),
('209', '2025_03_02_181226_create_inventory_settings_table', '3'),
('210', '2025_03_05_100018_create_inventory_settings_table', '3'),
('211', '2025_03_19_113535_soft_delete_supplier', '3'),
('212', '2025_03_20_113535_permission_supplier', '3'),
('213', '2025_07_07_000000_add_variation_support_to_recipes_table', '3'),
('214', '2025_07_07_000001_add_modifier_option_support_to_recipes_table', '3'),
('215', '2025_07_07_000002_make_menu_item_id_nullable_in_recipes_table', '3'),
('216', '2025_01_01_121040_kitchen_global_settings', '4'),
('217', '2025_05_19_163251_add_permission_to_kot_places', '4'),
('218', '2025_06_12_094512_add_kitchen_place_id_to_kot', '4'),
('219', '2025_06_16_121348_update_kot_place_id_in_menu_items', '4'),
('220', '2023_10_09_114356_create_language_pack_settings_table', '5'),
('221', '2023_11_02_094141_language_pack_notify_update_global_settings', '5'),
('222', '2023_11_28_094141_language_license_type_update_global_settings', '5'),
('223', '2023_12_19_091940_purchased_on_language_setting_table', '5'),
('224', '2020_04_09_121040_subdomain_settings', '6'),
('225', '2024_11_01_000000_add_sub_domain_in_companies_table', '6'),
('226', '2025_09_11_094443_remove_phone_unique', '7'),
('227', '2025_09_15_100452_remove_extra_content_print_job', '7'),
('228', '2025_09_17_094034_create_cart_session_tables', '7'),
('229', '2025_08_01_164051_create_kiosk_setting_tables', '8'),
('230', '2025_09_26_164051_create_kiosk_tables', '8'),
('231', '2025_09_26_164052_create_kiosk_promos_tables', '8'),
('232', '2025_08_29_091315_add_phone_code_to_customers_table', '9'),
('233', '2025_09_02_085025_add_xendit_payment_column_to_superadmin_payment_gateways_table', '9'),
('234', '2025_09_02_113846_add_xendit_payments_column_to_packages_table', '9'),
('235', '2025_09_02_130000_create_otps_table', '9'),
('236', '2025_09_18_083624_add_table_lock_columns_and_settings', '9'),
('237', '2025_09_25_063220_add_xendit_webhook_token_to_superadmin_payment_gateways', '9'),
('238', '2025_09_26_115847_add_token_number_to_orders_table', '9'),
('239', '2025_09_26_115854_add_enable_token_number_to_order_types_table', '9'),
('240', '2025_10_07_070000_add_reference_id_to_payment_tables', '9'),
('241', '2025_10_07_094006_add_token_number_to_kots_table', '9'),
('242', '2025_10_07_094018_remove_token_number_from_orders_table', '9'),
('243', '2025_10_08_095954_add_columns_paddle_payment_keys_to_superadmin_payment_gateways', '9'),
('244', '2025_10_08_102000_add_paddle_client_token_columns_to_superadmin_payment_gateways', '9'),
('245', '2025_10_09_041734_add_enable_paddle_to_global_settings_table', '9'),
('246', '2025_10_09_065853_remove_payload_from_print_jobs', '9'),
('247', '2025_10_09_084200_add_package_id_to_restaurant_payments_table', '9'),
('248', '2025_10_09_091500_add_paddle_price_ids_to_packages_table', '9'),
('249', '2025_10_10_100000_add_paddle_webhook_secret_to_superadmin_payment_gateways', '9'),
('250', '2025_10_10_122321_add_privacy_policy_link_to_global_settings_table', '9'),
('251', '2025_10_14_071228_add_consent_fields_to_users_table', '9'),
('252', '2025_10_15_045419_sms_count_packages', '10'),
('253', '2023_10_17_073008_create_universal_bundle_settings_table', '11'),
('254', '2025_09_01_073008_create_global_settings_table', '12'),
('255', '2025_09_16_000001_create_cash_register_module', '12'),
('256', '2025_09_16_000001_create_cash_registers_tables', '12'),
('257', '2025_09_18_000002_add_approval_columns_to_cash_register_sessions', '12'),
('258', '2025_09_20_000003_create_denominations_table', '12'),
('259', '2025_09_26_043532_create_cash_register_settings_table', '12'),
('260', '2025_09_29_120001_add_order_id_to_cash_register_transactions_table', '12'),
('261', '2025_10_08_070529_add_open_register_permission_to_cash_register_module', '12'),
('262', '2025_10_08_080000_rename_cash_register_permissions', '12'),
('263', '2025_10_10_120000_drop_currency_from_denominations', '12'),
('264', '2025_10_08_164052_create_kiosks', '13');


-- Table structure for table `model_has_permissions`
DROP TABLE IF EXISTS `model_has_permissions`;
CREATE TABLE `model_has_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL,
  `model_type` varchar(191) NOT NULL,
  `model_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`permission_id`,`model_id`,`model_type`),
  KEY `model_has_permissions_model_id_model_type_index` (`model_id`,`model_type`),
  CONSTRAINT `model_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `model_has_roles`
DROP TABLE IF EXISTS `model_has_roles`;
CREATE TABLE `model_has_roles` (
  `role_id` bigint(20) unsigned NOT NULL,
  `model_type` varchar(191) NOT NULL,
  `model_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`role_id`,`model_id`,`model_type`),
  KEY `model_has_roles_model_id_model_type_index` (`model_id`,`model_type`),
  CONSTRAINT `model_has_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `model_has_roles`
INSERT INTO `model_has_roles` VALUES
('1', 'App\\Models\\User', '1'),
('2', 'App\\Models\\User', '2'),
('4', 'App\\Models\\User', '3'),
('6', 'App\\Models\\User', '4'),
('8', 'App\\Models\\User', '5'),
('10', 'App\\Models\\User', '6'),
('14', 'App\\Models\\User', '7');


-- Table structure for table `modifier_group_translations`
DROP TABLE IF EXISTS `modifier_group_translations`;
CREATE TABLE `modifier_group_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `modifier_group_id` bigint(20) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `modifier_group_translations_modifier_group_id_locale_unique` (`modifier_group_id`,`locale`),
  KEY `modifier_group_translations_locale_index` (`locale`),
  CONSTRAINT `modifier_group_translations_modifier_group_id_foreign` FOREIGN KEY (`modifier_group_id`) REFERENCES `modifier_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `modifier_groups`
DROP TABLE IF EXISTS `modifier_groups`;
CREATE TABLE `modifier_groups` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `description` text DEFAULT NULL,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `modifier_groups_branch_id_foreign` (`branch_id`),
  CONSTRAINT `modifier_groups_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `modifier_options`
DROP TABLE IF EXISTS `modifier_options`;
CREATE TABLE `modifier_options` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `modifier_group_id` bigint(20) unsigned NOT NULL,
  `name` text DEFAULT NULL,
  `price` decimal(16,2) NOT NULL,
  `is_available` tinyint(1) NOT NULL DEFAULT 1,
  `sort_order` int(11) NOT NULL DEFAULT 0,
  `is_preselected` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `modifier_options_modifier_group_id_foreign` (`modifier_group_id`),
  CONSTRAINT `modifier_options_modifier_group_id_foreign` FOREIGN KEY (`modifier_group_id`) REFERENCES `modifier_groups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `modules`
DROP TABLE IF EXISTS `modules`;
CREATE TABLE `modules` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `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;

-- Dumping data for table `modules`
INSERT INTO `modules` VALUES
('1', 'Menu', NULL, NULL),
('2', 'Menu Item', NULL, NULL),
('3', 'Item Category', NULL, NULL),
('4', 'Area', NULL, NULL),
('5', 'Table', NULL, NULL),
('6', 'Reservation', NULL, NULL),
('7', 'KOT', NULL, NULL),
('8', 'Order', NULL, NULL),
('9', 'Customer', NULL, NULL),
('10', 'Staff', NULL, NULL),
('11', 'Payment', NULL, NULL),
('12', 'Report', NULL, NULL),
('13', 'Settings', NULL, NULL),
('14', 'Delivery Executive', NULL, NULL),
('15', 'Waiter Request', NULL, NULL),
('16', 'Expense', NULL, NULL),
('17', 'Inventory', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('18', 'Kitchen', '2025-09-17 05:48:21', '2025-09-17 05:48:21'),
('19', 'Kiosk', '2025-09-28 12:08:47', '2025-09-28 12:08:47'),
('20', 'Cash Register', '2025-10-15 12:16:30', '2025-10-15 12:16:30');


-- Table structure for table `notification_settings`
DROP TABLE IF EXISTS `notification_settings`;
CREATE TABLE `notification_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `type` varchar(191) NOT NULL,
  `send_email` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `notification_settings_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `notification_settings_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `notification_settings`
INSERT INTO `notification_settings` VALUES
('1', '1', 'order_received', '1', NULL, NULL),
('2', '1', 'reservation_confirmed', '1', NULL, NULL),
('3', '1', 'new_reservation', '1', NULL, NULL),
('4', '1', 'order_bill_sent', '1', NULL, NULL),
('5', '1', 'staff_welcome', '1', NULL, NULL),
('6', '2', 'order_received', '1', NULL, NULL),
('7', '2', 'reservation_confirmed', '1', NULL, NULL),
('8', '2', 'new_reservation', '1', NULL, NULL),
('9', '2', 'order_bill_sent', '1', NULL, NULL),
('10', '2', 'staff_welcome', '1', NULL, NULL),
('11', '3', 'order_received', '1', NULL, NULL),
('12', '3', 'reservation_confirmed', '1', NULL, NULL),
('13', '3', 'new_reservation', '1', NULL, NULL),
('14', '3', 'order_bill_sent', '1', NULL, NULL),
('15', '3', 'staff_welcome', '1', NULL, NULL),
('16', '4', 'order_received', '1', NULL, NULL),
('17', '4', 'reservation_confirmed', '1', NULL, NULL),
('18', '4', 'new_reservation', '1', NULL, NULL),
('19', '4', 'order_bill_sent', '1', NULL, NULL),
('20', '4', 'staff_welcome', '1', NULL, NULL);


-- Table structure for table `offline_payment_methods`
DROP TABLE IF EXISTS `offline_payment_methods`;
CREATE TABLE `offline_payment_methods` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `description` text DEFAULT NULL,
  `status` enum('active','inactive') NOT NULL DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `offline_payment_methods_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `offline_payment_methods_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `offline_plan_changes`
DROP TABLE IF EXISTS `offline_plan_changes`;
CREATE TABLE `offline_plan_changes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `package_id` bigint(20) unsigned NOT NULL,
  `package_type` varchar(191) NOT NULL,
  `amount` decimal(16,2) DEFAULT NULL,
  `pay_date` date DEFAULT NULL,
  `next_pay_date` date DEFAULT NULL,
  `invoice_id` bigint(20) unsigned DEFAULT NULL,
  `offline_method_id` bigint(20) unsigned DEFAULT NULL,
  `file_name` varchar(191) DEFAULT NULL,
  `status` enum('verified','pending','rejected') NOT NULL DEFAULT 'pending',
  `remark` text DEFAULT NULL,
  `description` mediumtext NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `offline_plan_changes_restaurant_id_foreign` (`restaurant_id`),
  KEY `offline_plan_changes_package_id_foreign` (`package_id`),
  KEY `offline_plan_changes_invoice_id_foreign` (`invoice_id`),
  KEY `offline_plan_changes_offline_method_id_foreign` (`offline_method_id`),
  CONSTRAINT `offline_plan_changes_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `global_invoices` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `offline_plan_changes_offline_method_id_foreign` FOREIGN KEY (`offline_method_id`) REFERENCES `offline_payment_methods` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `offline_plan_changes_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `offline_plan_changes_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `onboarding_steps`
DROP TABLE IF EXISTS `onboarding_steps`;
CREATE TABLE `onboarding_steps` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `add_area_completed` tinyint(1) NOT NULL DEFAULT 0,
  `add_table_completed` tinyint(1) NOT NULL DEFAULT 0,
  `add_menu_completed` tinyint(1) NOT NULL DEFAULT 0,
  `add_menu_items_completed` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `onboarding_steps_branch_id_foreign` (`branch_id`),
  CONSTRAINT `onboarding_steps_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `onboarding_steps`
INSERT INTO `onboarding_steps` VALUES
('1', '1', '0', '0', '0', '0', '2025-09-17 05:36:43', '2025-09-17 05:36:43'),
('2', '1', '0', '0', '0', '0', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('3', '2', '0', '0', '0', '0', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('4', '2', '0', '0', '0', '0', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('5', '3', '0', '0', '0', '0', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('6', '4', '1', '1', '1', '1', '2025-09-20 12:56:44', '2025-09-20 13:00:00'),
('7', '5', '1', '1', '1', '1', '2025-10-07 15:00:09', '2025-10-07 15:05:09');


-- Table structure for table `order_charges`
DROP TABLE IF EXISTS `order_charges`;
CREATE TABLE `order_charges` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `charge_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `order_charges_order_id_foreign` (`order_id`),
  KEY `order_charges_charge_id_foreign` (`charge_id`),
  CONSTRAINT `order_charges_charge_id_foreign` FOREIGN KEY (`charge_id`) REFERENCES `restaurant_charges` (`id`) ON DELETE CASCADE,
  CONSTRAINT `order_charges_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `order_histories`
DROP TABLE IF EXISTS `order_histories`;
CREATE TABLE `order_histories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `status` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_histories_order_id_foreign` (`order_id`),
  CONSTRAINT `order_histories_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `order_item_modifier_options`
DROP TABLE IF EXISTS `order_item_modifier_options`;
CREATE TABLE `order_item_modifier_options` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `modifier_option_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_item_modifier_options_order_item_id_foreign` (`order_item_id`),
  KEY `order_item_modifier_options_modifier_option_id_foreign` (`modifier_option_id`),
  CONSTRAINT `order_item_modifier_options_modifier_option_id_foreign` FOREIGN KEY (`modifier_option_id`) REFERENCES `modifier_options` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `order_item_modifier_options_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `order_items`
DROP TABLE IF EXISTS `order_items`;
CREATE TABLE `order_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `menu_item_id` bigint(20) unsigned NOT NULL,
  `menu_item_variation_id` bigint(20) unsigned DEFAULT NULL,
  `note` text DEFAULT NULL,
  `quantity` int(11) NOT NULL,
  `price` decimal(16,2) NOT NULL,
  `amount` decimal(16,2) NOT NULL,
  `tax_amount` decimal(15,2) DEFAULT NULL,
  `tax_percentage` decimal(8,4) DEFAULT NULL,
  `tax_breakup` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`tax_breakup`)),
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_items_order_id_foreign` (`order_id`),
  KEY `order_items_menu_item_id_foreign` (`menu_item_id`),
  KEY `order_items_menu_item_variation_id_foreign` (`menu_item_variation_id`),
  KEY `order_items_branch_id_foreign` (`branch_id`),
  CONSTRAINT `order_items_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `order_items_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE,
  CONSTRAINT `order_items_menu_item_variation_id_foreign` FOREIGN KEY (`menu_item_variation_id`) REFERENCES `menu_item_variations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `order_items_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `order_items`
INSERT INTO `order_items` VALUES
('3', '3', '1', NULL, '251', NULL, NULL, '1', '269.52', '269.52', NULL, NULL, NULL, '2025-09-20 12:27:12', '2025-09-20 12:27:12'),
('4', '3', '1', NULL, '252', NULL, NULL, '1', '183.50', '183.50', NULL, NULL, NULL, '2025-09-20 12:27:12', '2025-09-20 12:27:12'),
('5', '4', '2', NULL, '501', NULL, '', '1', '100.00', '100.00', NULL, NULL, NULL, '2025-09-20 13:00:18', '2025-09-20 13:00:18'),
('8', '5', '4', 'TXN_68e62861d3eb76.37324333_776395', '503', '2', '', '1', '250.00', '250.00', NULL, NULL, NULL, '2025-10-08 09:01:22', '2025-10-08 09:01:22'),
('9', '5', '4', 'TXN_68e62861d3eb76.37324333_776395', '504', '6', '', '1', '400.00', '400.00', NULL, NULL, NULL, '2025-10-08 09:01:22', '2025-10-08 09:01:22'),
('10', '5', '4', 'TXN_68e62861d3eb76.37324333_776395', '506', '10', '', '1', '500.00', '500.00', NULL, NULL, NULL, '2025-10-08 09:01:22', '2025-10-08 09:01:22'),
('11', '5', '5', 'TXN_68e63e3e517e69.31196617_301189', '504', '4', '', '1', '120.00', '120.00', NULL, NULL, NULL, '2025-10-08 10:34:38', '2025-10-08 10:34:38'),
('12', '5', '6', NULL, '503', '2', NULL, '1', '250.00', '250.00', NULL, NULL, NULL, '2025-10-15 12:32:51', '2025-10-15 12:32:51'),
('13', '5', '7', NULL, '507', NULL, NULL, '1', '60.00', '60.00', NULL, NULL, NULL, '2025-10-15 12:34:09', '2025-10-15 12:34:09'),
('14', '5', '8', 'KIOSK_TXN_68ef9521a16ec0.32691058', '503', NULL, NULL, '1', '0.00', '0.00', NULL, NULL, NULL, '2025-10-15 12:35:45', '2025-10-15 12:35:45'),
('15', '5', '8', 'KIOSK_TXN_68ef9521a16ec0.32691058', '504', NULL, NULL, '2', '0.00', '0.00', NULL, NULL, NULL, '2025-10-15 12:35:45', '2025-10-15 12:35:45'),
('16', '5', '9', 'KIOSK_TXN_68ef95b8481505.85338088', '503', '3', NULL, '2', '400.00', '800.00', NULL, NULL, NULL, '2025-10-15 12:38:16', '2025-10-15 12:38:16'),
('17', '5', '9', 'KIOSK_TXN_68ef95b8481505.85338088', '503', '2', NULL, '2', '250.00', '500.00', NULL, NULL, NULL, '2025-10-15 12:38:16', '2025-10-15 12:38:16'),
('18', '5', '10', NULL, '504', '4', NULL, '1', '120.00', '120.00', NULL, NULL, NULL, '2025-10-15 12:40:33', '2025-10-15 12:40:33');


-- Table structure for table `order_number_settings`
DROP TABLE IF EXISTS `order_number_settings`;
CREATE TABLE `order_number_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `enable_feature` tinyint(1) NOT NULL DEFAULT 0,
  `prefix` varchar(191) NOT NULL DEFAULT 'ORD',
  `digits` tinyint(3) unsigned NOT NULL DEFAULT 3,
  `separator` varchar(191) NOT NULL DEFAULT '-',
  `include_date` tinyint(1) NOT NULL DEFAULT 0,
  `show_year` tinyint(1) NOT NULL DEFAULT 0,
  `show_month` tinyint(1) NOT NULL DEFAULT 0,
  `show_day` tinyint(1) NOT NULL DEFAULT 0,
  `show_time` tinyint(1) NOT NULL DEFAULT 0,
  `reset_daily` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_number_settings_branch_id_foreign` (`branch_id`),
  CONSTRAINT `order_number_settings_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `order_places`
DROP TABLE IF EXISTS `order_places`;
CREATE TABLE `order_places` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `printer_id` bigint(20) unsigned DEFAULT NULL,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `type` varchar(191) DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_places_branch_id_foreign` (`branch_id`),
  KEY `order_places_printer_id_foreign` (`printer_id`),
  CONSTRAINT `order_places_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `order_places_printer_id_foreign` FOREIGN KEY (`printer_id`) REFERENCES `printers` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `order_places`
INSERT INTO `order_places` VALUES
('1', NULL, '1', 'Default POS Terminal', 'vegetarian', '1', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('2', NULL, '2', 'Default POS Terminal', 'vegetarian', '1', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('3', NULL, '3', 'Default POS Terminal', 'vegetarian', '1', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('4', NULL, '4', 'Default POS Terminal', 'vegetarian', '1', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('5', NULL, '5', 'Default POS Terminal', 'vegetarian', '1', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09');


-- Table structure for table `order_taxes`
DROP TABLE IF EXISTS `order_taxes`;
CREATE TABLE `order_taxes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `order_taxes_order_id_foreign` (`order_id`),
  KEY `order_taxes_tax_id_foreign` (`tax_id`),
  CONSTRAINT `order_taxes_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `order_taxes_tax_id_foreign` FOREIGN KEY (`tax_id`) REFERENCES `taxes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `order_taxes`
INSERT INTO `order_taxes` VALUES
('1', '3', '6'),
('2', '3', '7'),
('3', '4', '6'),
('4', '4', '7'),
('5', '5', '6'),
('6', '5', '7'),
('7', '6', '6'),
('8', '6', '7'),
('9', '7', '6'),
('10', '7', '7'),
('11', '8', '6'),
('12', '8', '7'),
('13', '9', '6'),
('14', '9', '7'),
('15', '10', '6'),
('16', '10', '7');


-- Table structure for table `order_types`
DROP TABLE IF EXISTS `order_types`;
CREATE TABLE `order_types` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `order_type_name` varchar(191) NOT NULL,
  `slug` varchar(191) NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  `enable_token_number` tinyint(1) NOT NULL DEFAULT 0,
  `type` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_types_branch_id_foreign` (`branch_id`),
  CONSTRAINT `order_types_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `order_types`
INSERT INTO `order_types` VALUES
('1', '1', 'Dine In', 'dine_in', '1', '1', '0', 'dine_in', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('2', '1', 'Delivery', 'delivery', '1', '1', '0', 'delivery', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('3', '1', 'Pickup', 'pickup', '1', '1', '0', 'pickup', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('4', '2', 'Dine In', 'dine_in', '1', '1', '0', 'dine_in', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('5', '2', 'Delivery', 'delivery', '1', '1', '0', 'delivery', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('6', '2', 'Pickup', 'pickup', '1', '1', '0', 'pickup', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('7', '3', 'Dine In', 'dine_in', '1', '1', '0', 'dine_in', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('8', '3', 'Delivery', 'delivery', '1', '1', '0', 'delivery', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('9', '3', 'Pickup', 'pickup', '1', '1', '0', 'pickup', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('10', '4', 'Dine In', 'dine_in', '1', '1', '0', 'dine_in', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('11', '4', 'Delivery', 'delivery', '1', '1', '0', 'delivery', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('12', '4', 'Pickup', 'pickup', '1', '1', '0', 'pickup', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('13', '5', 'Dine In', 'dine_in', '1', '1', '1', 'dine_in', '2025-10-07 15:00:09', '2025-10-15 12:40:11'),
('14', '5', 'Delivery', 'delivery', '1', '1', '1', 'delivery', '2025-10-07 15:00:09', '2025-10-15 12:40:11'),
('15', '5', 'Pickup', 'pickup', '1', '1', '1', 'pickup', '2025-10-07 15:00:09', '2025-10-15 12:40:11');


-- Table structure for table `orders`
DROP TABLE IF EXISTS `orders`;
CREATE TABLE `orders` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `uuid` char(36) DEFAULT NULL,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `order_number` varchar(191) NOT NULL,
  `formatted_order_number` varchar(191) DEFAULT NULL,
  `date_time` datetime NOT NULL,
  `table_id` bigint(20) unsigned DEFAULT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `number_of_pax` int(11) DEFAULT NULL,
  `waiter_id` bigint(20) unsigned DEFAULT NULL,
  `status` enum('draft','kot','billed','paid','canceled','payment_due','ready','out_for_delivery','delivered','pending_verification') NOT NULL DEFAULT 'kot',
  `placed_via` enum('pos','shop','kiosk') DEFAULT NULL,
  `sub_total` decimal(16,2) NOT NULL,
  `tip_amount` decimal(16,2) DEFAULT 0.00,
  `total_tax_amount` decimal(16,2) DEFAULT 0.00,
  `tax_mode` varchar(191) DEFAULT NULL,
  `tip_note` text DEFAULT NULL,
  `total` decimal(16,2) NOT NULL,
  `amount_paid` decimal(16,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `order_type_id` bigint(20) unsigned DEFAULT NULL,
  `custom_order_type_name` varchar(191) DEFAULT NULL,
  `order_type` varchar(191) DEFAULT NULL,
  `pickup_date` datetime DEFAULT NULL,
  `delivery_executive_id` bigint(20) unsigned DEFAULT NULL,
  `delivery_address` text DEFAULT NULL,
  `delivery_time` datetime DEFAULT NULL,
  `estimated_delivery_time` datetime DEFAULT NULL,
  `split_type` enum('even','custom','items') DEFAULT NULL,
  `discount_type` varchar(191) DEFAULT NULL,
  `discount_value` decimal(16,2) DEFAULT NULL,
  `discount_amount` decimal(16,2) DEFAULT NULL,
  `order_status` varchar(191) NOT NULL DEFAULT 'placed',
  `delivery_fee` decimal(8,2) NOT NULL DEFAULT 0.00,
  `customer_lat` decimal(10,7) DEFAULT NULL,
  `customer_lng` decimal(10,7) DEFAULT NULL,
  `is_within_radius` tinyint(1) NOT NULL DEFAULT 0,
  `delivery_started_at` timestamp NULL DEFAULT NULL,
  `delivered_at` timestamp NULL DEFAULT NULL,
  `estimated_eta_min` int(11) DEFAULT NULL,
  `estimated_eta_max` int(11) DEFAULT NULL,
  `cancel_reason_id` bigint(20) unsigned DEFAULT NULL,
  `cancel_reason_text` varchar(191) DEFAULT NULL,
  `reservation_id` bigint(20) unsigned DEFAULT NULL,
  `kiosk_id` bigint(20) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `orders_uuid_unique` (`uuid`),
  KEY `orders_table_id_foreign` (`table_id`),
  KEY `orders_customer_id_foreign` (`customer_id`),
  KEY `orders_delivery_executive_id_foreign` (`delivery_executive_id`),
  KEY `orders_waiter_id_foreign` (`waiter_id`),
  KEY `orders_cancel_reason_id_foreign` (`cancel_reason_id`),
  KEY `idx_branch_date` (`branch_id`,`date_time`),
  KEY `orders_order_type_id_foreign` (`order_type_id`),
  KEY `orders_reservation_id_foreign` (`reservation_id`),
  KEY `orders_kiosk_id_foreign` (`kiosk_id`),
  CONSTRAINT `orders_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `orders_cancel_reason_id_foreign` FOREIGN KEY (`cancel_reason_id`) REFERENCES `kot_cancel_reasons` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `orders_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `orders_delivery_executive_id_foreign` FOREIGN KEY (`delivery_executive_id`) REFERENCES `delivery_executives` (`id`) ON DELETE SET NULL,
  CONSTRAINT `orders_kiosk_id_foreign` FOREIGN KEY (`kiosk_id`) REFERENCES `kiosks` (`id`) ON DELETE SET NULL,
  CONSTRAINT `orders_order_type_id_foreign` FOREIGN KEY (`order_type_id`) REFERENCES `order_types` (`id`) ON DELETE SET NULL,
  CONSTRAINT `orders_reservation_id_foreign` FOREIGN KEY (`reservation_id`) REFERENCES `reservations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `orders_table_id_foreign` FOREIGN KEY (`table_id`) REFERENCES `tables` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `orders_waiter_id_foreign` FOREIGN KEY (`waiter_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `orders`
INSERT INTO `orders` VALUES
('1', '762ceab8-435f-4269-9e6e-c2b6120e1320', '3', '1', NULL, '2025-09-20 12:27:12', '1', NULL, '4', NULL, 'paid', 'shop', '453.02', '0.00', '0.00', 'order', NULL, '453.02', '906.04', '2025-09-20 12:25:05', '2025-09-20 12:27:46', '1', 'dine_in', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('2', 'fd9ca8d7-145d-4c7c-b94d-cecc98000c40', '4', '1', NULL, '2025-09-20 13:00:18', NULL, '1', '1', '6', 'paid', 'pos', '100.00', '0.00', '0.00', 'order', NULL, '100.00', '100.00', '2025-09-20 13:00:18', '2025-09-20 13:00:43', '10', 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'preparing', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('3', '3f6e0bb4-e221-4bd6-b2e1-cb8d03ae49a1', '5', '1', NULL, '2025-10-07 15:13:31', '5', NULL, NULL, NULL, 'paid', 'shop', '4.00', '0.00', '0.00', 'order', NULL, '4.20', '4.20', '2025-10-07 15:13:31', '2025-10-07 15:41:42', '1', 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('4', '7ef53383-e964-451d-93e7-dc1a1a0d4e63', '5', '2', NULL, '2025-10-08 09:01:21', '5', NULL, NULL, NULL, 'paid', 'shop', '1150.00', '0.00', '0.00', 'order', NULL, '1207.50', '1207.50', '2025-10-08 09:01:21', '2025-10-08 09:02:13', '1', 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('5', '61f919bc-be4d-42c6-979f-e5f21a4386bb', '5', '3', NULL, '2025-10-08 10:34:38', '5', '2', NULL, NULL, 'paid', 'shop', '120.00', '0.00', '0.00', 'order', NULL, '126.00', '126.00', '2025-10-08 10:34:38', '2025-10-15 12:34:44', '1', 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('6', '6afee693-7983-4062-8925-16c8fa7345f7', '5', '4', NULL, '2025-10-15 12:32:50', NULL, '2', '1', '7', 'paid', 'pos', '250.00', '0.00', '12.50', 'order', NULL, '262.50', '262.50', '2025-10-15 12:32:50', '2025-10-15 12:33:11', '13', 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('7', '7732a0d7-ec82-42da-b462-64715964a20f', '5', '5', NULL, '2025-10-15 12:34:09', '6', '2', NULL, '7', 'billed', 'pos', '60.00', '0.00', '3.00', 'order', NULL, '63.00', '0.00', '2025-10-15 12:33:28', '2025-10-15 12:34:54', '13', 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('8', '41483780-3735-49c1-9627-4788069a5f1e', '5', '6', NULL, '2025-10-15 12:35:45', NULL, '3', NULL, NULL, 'paid', 'kiosk', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2025-10-15 12:35:45', '2025-10-15 12:36:40', '13', 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '5'),
('9', '7857a0d0-73f8-450d-9467-267ea3d54dfc', '5', '7', NULL, '2025-10-15 12:38:16', NULL, '3', NULL, NULL, 'paid', 'kiosk', '1300.00', '0.00', '65.00', 'order', NULL, '1365.00', '1365.00', '2025-10-15 12:38:16', '2025-10-15 12:39:27', '15', 'Pickup', 'pickup', '2025-10-15 12:38:16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'delivered', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '5'),
('10', 'b79da98c-3df3-4ae5-8cc5-e4515ccb80a3', '5', '8', NULL, '2025-10-15 12:40:33', NULL, NULL, '1', '7', 'paid', 'pos', '120.00', '0.00', '0.00', 'order', NULL, '126.00', '126.00', '2025-10-15 12:40:33', '2025-10-15 12:40:41', '13', 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'preparing', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);


-- Table structure for table `otps`
DROP TABLE IF EXISTS `otps`;
CREATE TABLE `otps` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `identifier` varchar(191) NOT NULL,
  `token` varchar(191) NOT NULL,
  `type` varchar(191) NOT NULL DEFAULT 'login',
  `expires_at` timestamp NOT NULL,
  `used` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `otps_identifier_type_index` (`identifier`,`type`),
  KEY `otps_token_index` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `package_modules`
DROP TABLE IF EXISTS `package_modules`;
CREATE TABLE `package_modules` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `package_id` bigint(20) unsigned DEFAULT NULL,
  `module_id` bigint(20) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `package_modules_package_id_foreign` (`package_id`),
  KEY `package_modules_module_id_foreign` (`module_id`),
  CONSTRAINT `package_modules_module_id_foreign` FOREIGN KEY (`module_id`) REFERENCES `modules` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `package_modules_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `package_modules`
INSERT INTO `package_modules` VALUES
('1', '1', '1', NULL, NULL),
('2', '1', '2', NULL, NULL),
('3', '1', '3', NULL, NULL),
('4', '1', '4', NULL, NULL),
('5', '1', '5', NULL, NULL),
('6', '1', '6', NULL, NULL),
('7', '1', '7', NULL, NULL),
('8', '1', '8', NULL, NULL),
('9', '1', '9', NULL, NULL),
('10', '1', '10', NULL, NULL),
('11', '1', '11', NULL, NULL),
('12', '1', '12', NULL, NULL),
('13', '1', '13', NULL, NULL),
('14', '1', '14', NULL, NULL),
('15', '1', '15', NULL, NULL),
('16', '1', '16', NULL, NULL),
('17', '2', '1', NULL, NULL),
('18', '2', '2', NULL, NULL),
('19', '2', '3', NULL, NULL),
('20', '2', '4', NULL, NULL),
('21', '2', '5', NULL, NULL),
('22', '2', '6', NULL, NULL),
('23', '2', '7', NULL, NULL),
('24', '2', '8', NULL, NULL),
('25', '2', '9', NULL, NULL),
('26', '2', '10', NULL, NULL),
('27', '2', '11', NULL, NULL),
('28', '2', '12', NULL, NULL),
('29', '2', '13', NULL, NULL),
('30', '2', '14', NULL, NULL),
('31', '2', '15', NULL, NULL),
('32', '2', '16', NULL, NULL),
('33', '3', '1', NULL, NULL),
('34', '3', '2', NULL, NULL),
('35', '3', '3', NULL, NULL),
('36', '3', '4', NULL, NULL),
('37', '3', '5', NULL, NULL),
('38', '3', '6', NULL, NULL),
('39', '3', '7', NULL, NULL),
('40', '3', '8', NULL, NULL),
('41', '3', '9', NULL, NULL),
('42', '3', '10', NULL, NULL),
('43', '3', '11', NULL, NULL),
('44', '3', '12', NULL, NULL),
('45', '3', '13', NULL, NULL),
('46', '3', '14', NULL, NULL),
('47', '3', '15', NULL, NULL),
('48', '3', '16', NULL, NULL),
('49', '4', '1', NULL, NULL),
('50', '4', '2', NULL, NULL),
('51', '4', '3', NULL, NULL),
('52', '4', '4', NULL, NULL),
('53', '4', '5', NULL, NULL),
('54', '4', '6', NULL, NULL),
('55', '4', '7', NULL, NULL),
('56', '4', '8', NULL, NULL),
('57', '4', '9', NULL, NULL),
('58', '4', '10', NULL, NULL),
('59', '4', '11', NULL, NULL),
('60', '4', '12', NULL, NULL),
('61', '4', '13', NULL, NULL),
('62', '4', '14', NULL, NULL),
('63', '4', '15', NULL, NULL),
('64', '4', '16', NULL, NULL),
('65', '5', '1', NULL, NULL),
('66', '5', '2', NULL, NULL),
('67', '5', '3', NULL, NULL),
('68', '5', '4', NULL, NULL),
('69', '5', '5', NULL, NULL),
('70', '5', '6', NULL, NULL),
('71', '5', '7', NULL, NULL),
('72', '5', '8', NULL, NULL),
('73', '5', '9', NULL, NULL),
('74', '5', '10', NULL, NULL),
('75', '5', '11', NULL, NULL),
('76', '5', '12', NULL, NULL),
('77', '5', '13', NULL, NULL),
('78', '5', '14', NULL, NULL),
('79', '5', '15', NULL, NULL),
('80', '5', '16', NULL, NULL),
('81', '3', '17', NULL, NULL),
('82', '3', '18', NULL, NULL),
('83', '3', '19', NULL, NULL),
('84', '3', '20', NULL, NULL);


-- Table structure for table `packages`
DROP TABLE IF EXISTS `packages`;
CREATE TABLE `packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `package_name` varchar(191) NOT NULL,
  `price` decimal(16,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `currency_id` bigint(20) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `annual_price` decimal(16,2) DEFAULT NULL,
  `monthly_price` decimal(16,2) DEFAULT NULL,
  `monthly_status` varchar(191) DEFAULT '1',
  `annual_status` varchar(191) DEFAULT '1',
  `stripe_annual_plan_id` varchar(191) DEFAULT NULL,
  `stripe_monthly_plan_id` varchar(191) DEFAULT NULL,
  `razorpay_annual_plan_id` varchar(191) DEFAULT NULL,
  `razorpay_monthly_plan_id` varchar(191) DEFAULT NULL,
  `flutterwave_annual_plan_id` varchar(191) DEFAULT NULL,
  `flutterwave_monthly_plan_id` varchar(191) DEFAULT NULL,
  `paystack_annual_plan_id` varchar(191) DEFAULT NULL,
  `paystack_monthly_plan_id` varchar(191) DEFAULT NULL,
  `xendit_annual_plan_id` varchar(191) DEFAULT NULL,
  `xendit_monthly_plan_id` varchar(191) DEFAULT NULL,
  `paddle_annual_price_id` varchar(191) DEFAULT NULL,
  `paddle_monthly_price_id` varchar(191) DEFAULT NULL,
  `paddle_lifetime_price_id` varchar(191) DEFAULT NULL,
  `stripe_lifetime_plan_id` varchar(191) DEFAULT NULL,
  `razorpay_lifetime_plan_id` varchar(191) DEFAULT NULL,
  `billing_cycle` tinyint(3) unsigned DEFAULT NULL,
  `sort_order` int(10) unsigned DEFAULT NULL,
  `is_private` tinyint(1) NOT NULL DEFAULT 0,
  `is_free` tinyint(1) NOT NULL DEFAULT 0,
  `is_recommended` tinyint(1) NOT NULL DEFAULT 0,
  `package_type` varchar(191) NOT NULL DEFAULT 'standard',
  `trial_status` tinyint(1) DEFAULT NULL,
  `trial_days` int(11) DEFAULT NULL,
  `trial_notification_before_days` int(11) DEFAULT NULL,
  `trial_message` varchar(191) DEFAULT NULL,
  `additional_features` longtext DEFAULT NULL,
  `branch_limit` int(11) DEFAULT -1,
  `sms_count` int(11) NOT NULL DEFAULT 0,
  `carry_forward_sms` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `packages_currency_id_foreign` (`currency_id`),
  CONSTRAINT `packages_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `global_currencies` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `packages`
INSERT INTO `packages` VALUES
('1', 'Default', '0.00', '2025-09-17 05:36:43', '2025-09-17 05:36:43', '1', 'Its a default package and cannot be deleted', NULL, NULL, '0', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '12', '1', '0', '1', '0', 'default', NULL, NULL, NULL, NULL, NULL, '-1', '0', '0'),
('2', 'Subscription Package', '0.00', '2025-09-17 05:36:43', '2025-09-17 05:36:43', '1', 'This is a subscription package', '100.00', '10.00', '1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '10', '2', '0', '0', '1', 'standard', NULL, NULL, NULL, NULL, NULL, '-1', '0', '0'),
('3', 'Life Time', '199.00', '2025-09-17 05:36:43', '2025-10-15 12:18:51', '1', 'This is a lifetime access package', NULL, NULL, '0', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '3', '0', '0', '1', 'lifetime', NULL, NULL, NULL, NULL, '[\"Change Branch\",\"Export Report\",\"Table Reservation\",\"Payment Gateway Integration\",\"Theme Setting\",\"Customer Display\"]', '-1', '-1', '0'),
('4', 'Private Package', '0.00', '2025-09-17 05:36:43', '2025-09-17 05:36:43', '1', 'This is a private package', '50.00', '5.00', '1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '12', '4', '1', '0', '0', 'standard', NULL, NULL, NULL, NULL, NULL, '-1', '0', '0'),
('5', 'Trial Package', '0.00', '2025-09-17 05:36:43', '2025-09-17 05:36:43', '1', 'This is a trial package', NULL, NULL, '0', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, '0', '1', '0', 'trial', '1', '30', '5', '30 Days Free Trial', '[\"Change Branch\",\"Export Report\",\"Table Reservation\",\"Payment Gateway Integration\",\"Theme Setting\",\"Customer Display\"]', '-1', '0', '0');


-- Table structure for table `password_reset_tokens`
DROP TABLE IF EXISTS `password_reset_tokens`;
CREATE TABLE `password_reset_tokens` (
  `email` varchar(191) NOT NULL,
  `token` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `payfast_payments`
DROP TABLE IF EXISTS `payfast_payments`;
CREATE TABLE `payfast_payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payfast_payment_id` varchar(191) DEFAULT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `payment_status` enum('pending','completed','failed') NOT NULL DEFAULT 'pending',
  `payment_date` timestamp NULL DEFAULT NULL,
  `payment_error_response` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`payment_error_response`)),
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `payfast_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `payfast_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `payment_gateway_credentials`
DROP TABLE IF EXISTS `payment_gateway_credentials`;
CREATE TABLE `payment_gateway_credentials` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `razorpay_key` text DEFAULT NULL,
  `razorpay_secret` text DEFAULT NULL,
  `razorpay_status` tinyint(1) NOT NULL DEFAULT 0,
  `stripe_key` text DEFAULT NULL,
  `stripe_secret` text DEFAULT NULL,
  `stripe_status` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `is_dine_in_payment_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `is_delivery_payment_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `is_pickup_payment_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `is_cash_payment_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `is_qr_payment_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `is_offline_payment_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `offline_payment_detail` varchar(191) DEFAULT NULL,
  `qr_code_image` varchar(191) DEFAULT NULL,
  `flutterwave_status` tinyint(1) NOT NULL DEFAULT 0,
  `flutterwave_mode` enum('test','live') NOT NULL DEFAULT 'test',
  `test_flutterwave_key` varchar(191) DEFAULT NULL,
  `test_flutterwave_secret` varchar(191) DEFAULT NULL,
  `test_flutterwave_hash` varchar(191) DEFAULT NULL,
  `live_flutterwave_key` varchar(191) DEFAULT NULL,
  `live_flutterwave_secret` varchar(191) DEFAULT NULL,
  `live_flutterwave_hash` varchar(191) DEFAULT NULL,
  `flutterwave_webhook_secret_hash` varchar(191) DEFAULT NULL,
  `paypal_client_id` varchar(191) DEFAULT NULL,
  `paypal_secret` varchar(191) DEFAULT NULL,
  `paypal_status` tinyint(1) NOT NULL DEFAULT 0,
  `paypal_mode` enum('sandbox','live') NOT NULL DEFAULT 'sandbox',
  `sandbox_paypal_client_id` varchar(191) DEFAULT NULL,
  `sandbox_paypal_secret` varchar(191) DEFAULT NULL,
  `payfast_merchant_id` varchar(191) DEFAULT NULL,
  `payfast_merchant_key` varchar(191) DEFAULT NULL,
  `payfast_passphrase` varchar(191) DEFAULT NULL,
  `payfast_mode` enum('sandbox','live') NOT NULL DEFAULT 'sandbox',
  `payfast_status` tinyint(1) NOT NULL DEFAULT 0,
  `test_payfast_merchant_id` varchar(191) DEFAULT NULL,
  `test_payfast_merchant_key` varchar(191) DEFAULT NULL,
  `test_payfast_passphrase` varchar(191) DEFAULT NULL,
  `paystack_key` varchar(191) DEFAULT NULL,
  `paystack_secret` varchar(191) DEFAULT NULL,
  `paystack_merchant_email` varchar(191) DEFAULT NULL,
  `paystack_status` tinyint(1) NOT NULL DEFAULT 0,
  `paystack_mode` enum('sandbox','live') NOT NULL DEFAULT 'sandbox',
  `test_paystack_key` varchar(191) DEFAULT NULL,
  `test_paystack_secret` varchar(191) DEFAULT NULL,
  `test_paystack_merchant_email` varchar(191) DEFAULT NULL,
  `paystack_payment_url` varchar(191) DEFAULT 'https://api.paystack.co',
  `xendit_status` tinyint(1) NOT NULL DEFAULT 0,
  `xendit_mode` enum('sandbox','live') NOT NULL DEFAULT 'sandbox',
  `test_xendit_public_key` varchar(191) DEFAULT NULL,
  `test_xendit_secret_key` varchar(191) DEFAULT NULL,
  `live_xendit_public_key` varchar(191) DEFAULT NULL,
  `live_xendit_secret_key` varchar(191) DEFAULT NULL,
  `test_xendit_webhook_token` varchar(191) DEFAULT NULL,
  `live_xendit_webhook_token` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `payment_gateway_credentials_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `payment_gateway_credentials_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `payment_gateway_credentials`
INSERT INTO `payment_gateway_credentials` VALUES
('1', '1', NULL, NULL, '0', NULL, NULL, '0', '2025-09-17 05:36:43', '2025-09-17 05:36:43', '0', '0', '0', '0', '0', '0', NULL, NULL, '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL),
('2', '1', NULL, NULL, '0', NULL, NULL, '0', '2025-09-17 05:36:44', '2025-09-17 05:36:44', '0', '0', '0', '0', '0', '0', NULL, NULL, '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL),
('3', '2', NULL, NULL, '0', NULL, NULL, '0', '2025-09-17 10:02:45', '2025-09-20 12:28:22', '0', '0', '0', '1', '0', '0', NULL, NULL, '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL),
('4', '3', NULL, NULL, '0', NULL, NULL, '0', '2025-09-20 12:56:44', '2025-09-20 12:56:44', '0', '0', '0', '0', '0', '0', NULL, NULL, '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL),
('5', '4', 'eyJpdiI6Im9JQzA0dHRQSlFaamJLR01Wb212dUE9PSIsInZhbHVlIjoiSUZqSS8vcDFwRjA2NlZNRHM0UHNqWE9aUEhQV3F4WkZZbTJ1N0Eyek5yYz0iLCJtYWMiOiI5ZjJlOWRjYzhiOTYzZGU3OGQ3ODVlNWVmOTBiMjBiYjk0MzA1YmJiNTUwZmM4ZDE4MjM3NzBhNGNjNGI3NDU5IiwidGFnIjoiIn0=', 'eyJpdiI6ImpPalpWeVZCL1hYUC84QTF5aCtzeUE9PSIsInZhbHVlIjoiRE93eWFoQ2NVNExlMjk3SFBGVVJjOFZadDRXMlRqUVFjTWhEUndhTVNOYz0iLCJtYWMiOiIzMTU1ZDQ1Y2JhNTI1N2QzMmVkZTk0ZDgxZGMxYTYzYmFkNDdiOTliN2Q1MGI2NzBiNzRjMmUzMGY4YjIxYjVmIiwidGFnIjoiIn0=', '1', NULL, NULL, '0', '2025-10-07 15:00:09', '2025-10-15 12:49:05', '1', '1', '1', '0', '0', '0', NULL, NULL, '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL);


-- Table structure for table `payments`
DROP TABLE IF EXISTS `payments`;
CREATE TABLE `payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `payment_method` varchar(191) DEFAULT 'cash',
  `amount` decimal(16,2) NOT NULL,
  `balance` decimal(16,2) DEFAULT 0.00,
  `transaction_id` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `payments_order_id_foreign` (`order_id`),
  KEY `payments_branch_id_foreign` (`branch_id`),
  CONSTRAINT `payments_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `payments`
INSERT INTO `payments` VALUES
('1', '3', '1', 'cash', '453.02', '0.00', NULL, '2025-09-20 12:27:27', '2025-09-20 12:27:27'),
('2', '3', '1', 'card', '453.02', '0.00', NULL, '2025-09-20 12:27:46', '2025-09-20 12:27:46'),
('3', '4', '2', 'cash', '100.00', '0.00', NULL, '2025-09-20 13:00:23', '2025-09-20 13:00:23'),
('4', '5', '3', 'razorpay', '4.20', '0.00', 'pay_RQdFvyYfrbz90B', '2025-10-07 15:27:22', '2025-10-07 15:27:22'),
('5', '5', '4', 'razorpay', '1207.50', '0.00', 'pay_RQvDmpMUMiPPoz', '2025-10-08 09:01:47', '2025-10-08 09:01:47'),
('6', '5', '5', 'razorpay', '126.00', '0.00', 'pay_RQwocGZ0pLkBZU', '2025-10-08 10:35:27', '2025-10-08 10:35:27'),
('7', '5', '6', 'upi', '262.50', '0.00', NULL, '2025-10-15 12:33:02', '2025-10-15 12:33:02'),
('9', '5', '8', 'upi', '0.00', '0.00', NULL, '2025-10-15 12:36:19', '2025-10-15 12:36:19'),
('11', '5', '9', 'cash', '1365.00', '0.00', NULL, '2025-10-15 12:39:12', '2025-10-15 12:39:12'),
('12', '5', '10', 'cash', '126.00', '0.00', NULL, '2025-10-15 12:40:41', '2025-10-15 12:40:41');


-- Table structure for table `paypal_payments`
DROP TABLE IF EXISTS `paypal_payments`;
CREATE TABLE `paypal_payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `paypal_payment_id` varchar(191) DEFAULT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `payment_status` enum('pending','completed','failed') NOT NULL DEFAULT 'pending',
  `payment_date` timestamp NULL DEFAULT NULL,
  `payment_error_response` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`payment_error_response`)),
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `paypal_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `paypal_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `paystack_payments`
DROP TABLE IF EXISTS `paystack_payments`;
CREATE TABLE `paystack_payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `paystack_payment_id` varchar(191) DEFAULT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `payment_status` enum('pending','completed','failed') NOT NULL DEFAULT 'pending',
  `payment_date` timestamp NULL DEFAULT NULL,
  `payment_error_response` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`payment_error_response`)),
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `paystack_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `paystack_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `permissions`
DROP TABLE IF EXISTS `permissions`;
CREATE TABLE `permissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `guard_name` varchar(191) NOT NULL,
  `module_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `permissions_name_guard_name_unique` (`name`,`guard_name`),
  KEY `permissions_module_id_foreign` (`module_id`),
  CONSTRAINT `permissions_module_id_foreign` FOREIGN KEY (`module_id`) REFERENCES `modules` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=90 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `permissions`
INSERT INTO `permissions` VALUES
('1', 'Create Menu', 'web', '1', NULL, NULL),
('2', 'Show Menu', 'web', '1', NULL, NULL),
('3', 'Update Menu', 'web', '1', NULL, NULL),
('4', 'Delete Menu', 'web', '1', NULL, NULL),
('5', 'Create Menu Item', 'web', '2', NULL, NULL),
('6', 'Show Menu Item', 'web', '2', NULL, NULL),
('7', 'Update Menu Item', 'web', '2', NULL, NULL),
('8', 'Delete Menu Item', 'web', '2', NULL, NULL),
('9', 'Create Item Category', 'web', '3', NULL, NULL),
('10', 'Show Item Category', 'web', '3', NULL, NULL),
('11', 'Update Item Category', 'web', '3', NULL, NULL),
('12', 'Delete Item Category', 'web', '3', NULL, NULL),
('13', 'Create Area', 'web', '4', NULL, NULL),
('14', 'Show Area', 'web', '4', NULL, NULL),
('15', 'Update Area', 'web', '4', NULL, NULL),
('16', 'Delete Area', 'web', '4', NULL, NULL),
('17', 'Create Table', 'web', '5', NULL, NULL),
('18', 'Show Table', 'web', '5', NULL, NULL),
('19', 'Update Table', 'web', '5', NULL, NULL),
('20', 'Delete Table', 'web', '5', NULL, NULL),
('21', 'Create Reservation', 'web', '6', NULL, NULL),
('22', 'Show Reservation', 'web', '6', NULL, NULL),
('23', 'Update Reservation', 'web', '6', NULL, NULL),
('24', 'Delete Reservation', 'web', '6', NULL, NULL),
('25', 'Manage KOT', 'web', '7', NULL, NULL),
('26', 'Create Order', 'web', '8', NULL, NULL),
('27', 'Show Order', 'web', '8', NULL, NULL),
('28', 'Update Order', 'web', '8', NULL, NULL),
('29', 'Delete Order', 'web', '8', NULL, NULL),
('30', 'Create Customer', 'web', '9', NULL, NULL),
('31', 'Show Customer', 'web', '9', NULL, NULL),
('32', 'Update Customer', 'web', '9', NULL, NULL),
('33', 'Delete Customer', 'web', '9', NULL, NULL),
('34', 'Create Staff Member', 'web', '10', NULL, NULL),
('35', 'Show Staff Member', 'web', '10', NULL, NULL),
('36', 'Update Staff Member', 'web', '10', NULL, NULL),
('37', 'Delete Staff Member', 'web', '10', NULL, NULL),
('38', 'Create Delivery Executive', 'web', '14', NULL, NULL),
('39', 'Show Delivery Executive', 'web', '14', NULL, NULL),
('40', 'Update Delivery Executive', 'web', '14', NULL, NULL),
('41', 'Delete Delivery Executive', 'web', '14', NULL, NULL),
('42', 'Show Payments', 'web', '11', NULL, NULL),
('43', 'Show Reports', 'web', '12', NULL, NULL),
('44', 'Manage Settings', 'web', '13', NULL, NULL),
('45', 'Manage Waiter Request', 'web', '15', NULL, NULL),
('46', 'Create Expense', 'web', '16', NULL, NULL),
('47', 'Show Expense', 'web', '16', NULL, NULL),
('48', 'Update Expense', 'web', '16', NULL, NULL),
('49', 'Delete Expense', 'web', '16', NULL, NULL),
('50', 'Create Expense Category', 'web', '16', NULL, NULL),
('51', 'Show Expense Category', 'web', '16', NULL, NULL),
('52', 'Update Expense Category', 'web', '16', NULL, NULL),
('53', 'Delete Expense Category', 'web', '16', NULL, NULL),
('54', 'Create Inventory Item', 'web', '17', NULL, NULL),
('55', 'Show Inventory Item', 'web', '17', NULL, NULL),
('56', 'Update Inventory Item', 'web', '17', NULL, NULL),
('57', 'Delete Inventory Item', 'web', '17', NULL, NULL),
('58', 'Create Inventory Movement', 'web', '17', NULL, NULL),
('59', 'Show Inventory Movement', 'web', '17', NULL, NULL),
('60', 'Update Inventory Movement', 'web', '17', NULL, NULL),
('61', 'Delete Inventory Movement', 'web', '17', NULL, NULL),
('62', 'Show Inventory Stock', 'web', '17', NULL, NULL),
('63', 'Create Unit', 'web', '17', NULL, NULL),
('64', 'Show Unit', 'web', '17', NULL, NULL),
('65', 'Update Unit', 'web', '17', NULL, NULL),
('66', 'Delete Unit', 'web', '17', NULL, NULL),
('67', 'Create Recipe', 'web', '17', NULL, NULL),
('68', 'Show Recipe', 'web', '17', NULL, NULL),
('69', 'Update Recipe', 'web', '17', NULL, NULL),
('70', 'Delete Recipe', 'web', '17', NULL, NULL),
('71', 'Create Purchase Order', 'web', '17', NULL, NULL),
('72', 'Show Purchase Order', 'web', '17', NULL, NULL),
('73', 'Update Purchase Order', 'web', '17', NULL, NULL),
('74', 'Delete Purchase Order', 'web', '17', NULL, NULL),
('75', 'Show Inventory Report', 'web', '17', NULL, NULL),
('76', 'Update Inventory Settings', 'web', '17', NULL, NULL),
('77', 'Show Supplier', 'web', '17', NULL, NULL),
('78', 'Create Supplier', 'web', '17', NULL, NULL),
('79', 'Update Supplier', 'web', '17', NULL, NULL),
('80', 'Delete Supplier', 'web', '17', NULL, NULL),
('81', 'Show Kitchen Place', 'web', '18', '2025-09-17 05:48:21', '2025-09-17 05:48:21'),
('82', 'Create Kitchen Place', 'web', '18', '2025-09-17 05:48:21', '2025-09-17 05:48:21'),
('83', 'Update Kitchen Place', 'web', '18', '2025-09-17 05:48:21', '2025-09-17 05:48:21'),
('84', 'Delete Kitchen Place', 'web', '18', '2025-09-17 05:48:21', '2025-09-17 05:48:21'),
('85', 'Manage Cash Register Settings', 'web', '20', '2025-10-15 12:16:30', '2025-10-15 12:16:30'),
('86', 'View Cash Register Reports', 'web', '20', '2025-10-15 12:16:30', '2025-10-15 12:16:30'),
('87', 'Manage Cash Denominations', 'web', '20', '2025-10-15 12:16:30', '2025-10-15 12:16:30'),
('88', 'Approve Cash Register', 'web', '20', '2025-10-15 12:16:30', '2025-10-15 12:16:30'),
('89', 'Open Cash Register', 'web', '20', '2025-10-15 12:16:30', '2025-10-15 12:16:30');


-- Table structure for table `personal_access_tokens`
DROP TABLE IF EXISTS `personal_access_tokens`;
CREATE TABLE `personal_access_tokens` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tokenable_type` varchar(191) NOT NULL,
  `tokenable_id` bigint(20) unsigned NOT NULL,
  `name` varchar(191) NOT NULL,
  `token` varchar(64) NOT NULL,
  `abilities` text DEFAULT NULL,
  `last_used_at` timestamp NULL DEFAULT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  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;


-- Table structure for table `predefined_amounts`
DROP TABLE IF EXISTS `predefined_amounts`;
CREATE TABLE `predefined_amounts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `predefined_amounts_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `predefined_amounts_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `predefined_amounts`
INSERT INTO `predefined_amounts` VALUES
('1', '1', '50.00', '2025-09-17 05:36:43', '2025-09-17 05:36:43'),
('2', '1', '100.00', '2025-09-17 05:36:43', '2025-09-17 05:36:43'),
('3', '1', '500.00', '2025-09-17 05:36:43', '2025-09-17 05:36:43'),
('4', '1', '1000.00', '2025-09-17 05:36:43', '2025-09-17 05:36:43'),
('5', '2', '50.00', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('6', '2', '100.00', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('7', '2', '500.00', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('8', '2', '1000.00', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('9', '3', '50.00', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('10', '3', '100.00', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('11', '3', '500.00', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('12', '3', '1000.00', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('13', '4', '50.00', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('14', '4', '100.00', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('15', '4', '500.00', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('16', '4', '1000.00', '2025-10-07 15:00:09', '2025-10-07 15:00:09');


-- Table structure for table `print_jobs`
DROP TABLE IF EXISTS `print_jobs`;
CREATE TABLE `print_jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `printer_id` bigint(20) unsigned DEFAULT NULL,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `status` varchar(191) NOT NULL DEFAULT 'pending',
  `error` text DEFAULT NULL,
  `response_printer` varchar(191) DEFAULT NULL,
  `image_filename` varchar(191) DEFAULT NULL,
  `printed_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `print_jobs_printer_id_foreign` (`printer_id`),
  KEY `print_jobs_restaurant_id_foreign` (`restaurant_id`),
  KEY `print_jobs_branch_id_foreign` (`branch_id`),
  CONSTRAINT `print_jobs_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `print_jobs_printer_id_foreign` FOREIGN KEY (`printer_id`) REFERENCES `printers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `print_jobs_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `printers`
DROP TABLE IF EXISTS `printers`;
CREATE TABLE `printers` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `printing_choice` varchar(191) DEFAULT NULL,
  `kots` text DEFAULT NULL,
  `orders` text DEFAULT NULL,
  `print_format` varchar(191) DEFAULT NULL,
  `invoice_qr_code` int(11) DEFAULT NULL,
  `open_cash_drawer` enum('yes','no') DEFAULT NULL,
  `ipv4_address` varchar(191) DEFAULT NULL,
  `thermal_or_nonthermal` varchar(191) DEFAULT NULL,
  `share_name` varchar(191) DEFAULT NULL,
  `type` enum('network','windows','linux','default') DEFAULT NULL,
  `profile` enum('default','simple','SP2000','TEP-200M','P822D') DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  `char_per_line` int(11) DEFAULT NULL,
  `ip_address` varchar(191) DEFAULT NULL,
  `port` int(11) DEFAULT NULL,
  `path` varchar(191) DEFAULT NULL,
  `printer_name` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `printers_restaurant_id_foreign` (`restaurant_id`),
  KEY `printers_branch_id_foreign` (`branch_id`),
  CONSTRAINT `printers_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `printers_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `printers`
INSERT INTO `printers` VALUES
('1', '1', '1', 'Default Thermal Printer', 'browserPopupPrint', '[1]', '[1]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', NULL, NULL, NULL, NULL, NULL, '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('2', '1', '2', 'Default Thermal Printer', 'browserPopupPrint', '[2]', '[2]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', NULL, NULL, NULL, NULL, NULL, '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('3', '2', '3', 'Default Thermal Printer', 'browserPopupPrint', '[3]', '[3]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', NULL, NULL, NULL, NULL, NULL, '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('4', '3', '4', 'Default Thermal Printer', 'browserPopupPrint', '[4]', '[4]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', NULL, NULL, NULL, NULL, NULL, '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('5', '4', '5', 'Default Thermal Printer', 'browserPopupPrint', '[5]', '[5]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:00:09', '2025-10-07 15:00:09');


-- Table structure for table `purchase_order_items`
DROP TABLE IF EXISTS `purchase_order_items`;
CREATE TABLE `purchase_order_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `purchase_order_id` bigint(20) unsigned NOT NULL,
  `inventory_item_id` bigint(20) unsigned NOT NULL,
  `quantity` decimal(10,2) NOT NULL,
  `received_quantity` decimal(10,2) NOT NULL DEFAULT 0.00,
  `unit_price` decimal(10,2) NOT NULL,
  `subtotal` decimal(10,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `purchase_order_items_purchase_order_id_foreign` (`purchase_order_id`),
  KEY `purchase_order_items_inventory_item_id_foreign` (`inventory_item_id`),
  CONSTRAINT `purchase_order_items_inventory_item_id_foreign` FOREIGN KEY (`inventory_item_id`) REFERENCES `inventory_items` (`id`),
  CONSTRAINT `purchase_order_items_purchase_order_id_foreign` FOREIGN KEY (`purchase_order_id`) REFERENCES `purchase_orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `purchase_orders`
DROP TABLE IF EXISTS `purchase_orders`;
CREATE TABLE `purchase_orders` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `po_number` varchar(191) NOT NULL,
  `branch_id` bigint(20) unsigned NOT NULL,
  `supplier_id` bigint(20) unsigned NOT NULL,
  `order_date` date NOT NULL,
  `expected_delivery_date` date DEFAULT NULL,
  `total_amount` decimal(10,2) NOT NULL DEFAULT 0.00,
  `status` enum('draft','sent','received','partially_received','cancelled') NOT NULL DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `purchase_orders_po_number_unique` (`po_number`),
  KEY `purchase_orders_branch_id_foreign` (`branch_id`),
  KEY `purchase_orders_supplier_id_foreign` (`supplier_id`),
  KEY `purchase_orders_created_by_foreign` (`created_by`),
  CONSTRAINT `purchase_orders_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `purchase_orders_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`),
  CONSTRAINT `purchase_orders_supplier_id_foreign` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `pusher_settings`
DROP TABLE IF EXISTS `pusher_settings`;
CREATE TABLE `pusher_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `beamer_status` tinyint(1) NOT NULL DEFAULT 0,
  `instance_id` varchar(191) DEFAULT NULL,
  `beam_secret` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `pusher_broadcast` tinyint(1) NOT NULL DEFAULT 0,
  `pusher_app_id` varchar(191) DEFAULT NULL,
  `pusher_key` varchar(191) DEFAULT NULL,
  `pusher_secret` varchar(191) DEFAULT NULL,
  `pusher_cluster` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `pusher_settings`
INSERT INTO `pusher_settings` VALUES
('1', '1', 'd40201a7-4c2b-485d-b83e-b6df413123b9', '14A81FF2A4C0B8BAB9765B9499E25E4A635B35203593A1BF9E2FF0D177D88FC7', '2025-09-17 05:36:40', '2025-09-20 14:32:42', '1', '1700836', '74e36e339f0d30ae3742', 'e210d079d07f180d0b75', 'mt1'),
('2', '0', NULL, NULL, '2025-09-17 05:36:44', '2025-09-17 05:36:44', '0', NULL, NULL, NULL, NULL);


-- Table structure for table `razorpay_payments`
DROP TABLE IF EXISTS `razorpay_payments`;
CREATE TABLE `razorpay_payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `payment_date` datetime DEFAULT NULL,
  `amount` decimal(16,2) DEFAULT NULL,
  `payment_status` enum('pending','requested','declined','completed') NOT NULL DEFAULT 'pending',
  `payment_error_response` text DEFAULT NULL,
  `razorpay_order_id` varchar(191) DEFAULT NULL,
  `razorpay_payment_id` varchar(191) DEFAULT NULL,
  `razorpay_signature` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `razorpay_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `razorpay_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `razorpay_payments`
INSERT INTO `razorpay_payments` VALUES
('1', '3', '2025-10-07 15:27:21', '4.20', 'completed', NULL, 'order_RQdEjK4mFoyb5X', 'pay_RQdFvyYfrbz90B', 'ab3a863408775751c5e84d3f76868ec971c2549f2446b5fa3621311bc12169bf', '2025-10-07 15:25:57', '2025-10-07 15:27:21'),
('2', '4', '2025-10-08 09:01:47', '1207.50', 'completed', NULL, 'order_RQvDdMEnjpcAar', 'pay_RQvDmpMUMiPPoz', '22ab9b169944f12675b46dcd8b13f54436eae52074b0aa7be217795fffa97a7c', '2025-10-08 09:01:24', '2025-10-08 09:01:47'),
('3', '5', '2025-10-08 10:35:27', '126.00', 'completed', NULL, 'order_RQwoDoAZZBXGHS', 'pay_RQwocGZ0pLkBZU', '81827097b034d78a88c62054e893f7ee7cd9b731a79ac938a0e8034f69ef5377', '2025-10-08 10:34:44', '2025-10-08 10:35:27');


-- Table structure for table `receipt_settings`
DROP TABLE IF EXISTS `receipt_settings`;
CREATE TABLE `receipt_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `show_customer_name` tinyint(1) NOT NULL DEFAULT 0,
  `show_customer_address` tinyint(1) NOT NULL DEFAULT 0,
  `show_table_number` tinyint(1) NOT NULL DEFAULT 0,
  `payment_qr_code` varchar(191) DEFAULT NULL,
  `show_payment_qr_code` tinyint(1) NOT NULL DEFAULT 0,
  `show_waiter` tinyint(1) NOT NULL DEFAULT 0,
  `show_total_guest` tinyint(1) NOT NULL DEFAULT 0,
  `show_restaurant_logo` tinyint(1) NOT NULL DEFAULT 0,
  `show_tax` tinyint(1) NOT NULL DEFAULT 0,
  `show_payment_details` tinyint(1) NOT NULL DEFAULT 1,
  `show_order_type` tinyint(1) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `receipt_settings_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `receipt_settings_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `receipt_settings`
INSERT INTO `receipt_settings` VALUES
('1', '1', '0', '0', '0', NULL, '0', '0', '0', '0', '0', '1', '0', '2025-09-17 05:36:43', '2025-09-17 05:36:43'),
('2', '2', '0', '0', '0', NULL, '0', '0', '0', '0', '0', '1', '0', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('3', '3', '0', '0', '0', NULL, '0', '0', '0', '0', '1', '1', '0', '2025-09-20 12:56:44', '2025-09-20 13:01:44'),
('4', '4', '1', '0', '1', NULL, '0', '1', '1', '1', '1', '1', '1', '2025-10-07 15:00:09', '2025-10-07 15:32:04');


-- Table structure for table `recipes`
DROP TABLE IF EXISTS `recipes`;
CREATE TABLE `recipes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `menu_item_id` bigint(20) unsigned DEFAULT NULL,
  `menu_item_variation_id` bigint(20) unsigned DEFAULT NULL,
  `modifier_option_id` bigint(20) unsigned DEFAULT NULL,
  `inventory_item_id` bigint(20) unsigned NOT NULL,
  `quantity` decimal(16,2) NOT NULL DEFAULT 0.00,
  `unit_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `recipes_menu_item_id_foreign` (`menu_item_id`),
  KEY `recipes_inventory_item_id_foreign` (`inventory_item_id`),
  KEY `recipes_unit_id_foreign` (`unit_id`),
  KEY `recipes_menu_item_variation_id_foreign` (`menu_item_variation_id`),
  KEY `recipes_modifier_option_id_foreign` (`modifier_option_id`),
  CONSTRAINT `recipes_inventory_item_id_foreign` FOREIGN KEY (`inventory_item_id`) REFERENCES `inventory_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `recipes_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `recipes_menu_item_variation_id_foreign` FOREIGN KEY (`menu_item_variation_id`) REFERENCES `menu_item_variations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `recipes_modifier_option_id_foreign` FOREIGN KEY (`modifier_option_id`) REFERENCES `modifier_options` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `recipes_unit_id_foreign` FOREIGN KEY (`unit_id`) REFERENCES `units` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `reservation_settings`
DROP TABLE IF EXISTS `reservation_settings`;
CREATE TABLE `reservation_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `day_of_week` enum('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday') NOT NULL,
  `time_slot_start` time NOT NULL,
  `time_slot_end` time NOT NULL,
  `time_slot_difference` int(11) NOT NULL,
  `slot_type` enum('Breakfast','Lunch','Dinner') NOT NULL,
  `available` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `reservation_settings_branch_id_foreign` (`branch_id`),
  CONSTRAINT `reservation_settings_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=148 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `reservation_settings`
INSERT INTO `reservation_settings` VALUES
('1', '1', 'Monday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('2', '1', 'Monday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('3', '1', 'Monday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('4', '1', 'Tuesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('5', '1', 'Tuesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('6', '1', 'Tuesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('7', '1', 'Wednesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('8', '1', 'Wednesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('9', '1', 'Wednesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('10', '1', 'Thursday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('11', '1', 'Thursday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('12', '1', 'Thursday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('13', '1', 'Friday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('14', '1', 'Friday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('15', '1', 'Friday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('16', '1', 'Saturday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('17', '1', 'Saturday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('18', '1', 'Saturday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('19', '1', 'Sunday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('20', '1', 'Sunday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('21', '1', 'Sunday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('22', '2', 'Monday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('23', '2', 'Monday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('24', '2', 'Monday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('25', '2', 'Tuesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('26', '2', 'Tuesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('27', '2', 'Tuesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('28', '2', 'Wednesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('29', '2', 'Wednesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('30', '2', 'Wednesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('31', '2', 'Thursday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('32', '2', 'Thursday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('33', '2', 'Thursday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('34', '2', 'Friday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('35', '2', 'Friday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('36', '2', 'Friday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('37', '2', 'Saturday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('38', '2', 'Saturday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('39', '2', 'Saturday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('40', '2', 'Sunday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('41', '2', 'Sunday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('42', '2', 'Sunday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('43', '1', 'Monday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('44', '1', 'Monday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('45', '1', 'Monday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('46', '1', 'Tuesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('47', '1', 'Tuesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('48', '1', 'Tuesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('49', '1', 'Wednesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('50', '1', 'Wednesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('51', '1', 'Wednesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('52', '1', 'Thursday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('53', '1', 'Thursday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('54', '1', 'Thursday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('55', '1', 'Friday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('56', '1', 'Friday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('57', '1', 'Friday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('58', '1', 'Saturday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('59', '1', 'Saturday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('60', '1', 'Saturday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('61', '1', 'Sunday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('62', '1', 'Sunday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('63', '1', 'Sunday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('64', '3', 'Monday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('65', '3', 'Monday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('66', '3', 'Monday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('67', '3', 'Tuesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('68', '3', 'Tuesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('69', '3', 'Tuesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('70', '3', 'Wednesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('71', '3', 'Wednesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('72', '3', 'Wednesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('73', '3', 'Thursday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('74', '3', 'Thursday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('75', '3', 'Thursday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('76', '3', 'Friday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('77', '3', 'Friday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('78', '3', 'Friday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('79', '3', 'Saturday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('80', '3', 'Saturday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('81', '3', 'Saturday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('82', '3', 'Sunday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('83', '3', 'Sunday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('84', '3', 'Sunday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('85', '4', 'Monday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('86', '4', 'Monday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('87', '4', 'Monday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('88', '4', 'Tuesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('89', '4', 'Tuesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('90', '4', 'Tuesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('91', '4', 'Wednesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('92', '4', 'Wednesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('93', '4', 'Wednesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('94', '4', 'Thursday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('95', '4', 'Thursday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('96', '4', 'Thursday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('97', '4', 'Friday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('98', '4', 'Friday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('99', '4', 'Friday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('100', '4', 'Saturday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('101', '4', 'Saturday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('102', '4', 'Saturday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('103', '4', 'Sunday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('104', '4', 'Sunday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('105', '4', 'Sunday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('106', '5', 'Monday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('107', '5', 'Monday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('108', '5', 'Monday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('109', '5', 'Tuesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('110', '5', 'Tuesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('111', '5', 'Tuesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('112', '5', 'Wednesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('113', '5', 'Wednesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('114', '5', 'Wednesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('115', '5', 'Thursday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('116', '5', 'Thursday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('117', '5', 'Thursday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('118', '5', 'Friday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('119', '5', 'Friday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('120', '5', 'Friday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('121', '5', 'Saturday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('122', '5', 'Saturday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('123', '5', 'Saturday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('124', '5', 'Sunday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('125', '5', 'Sunday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('126', '5', 'Sunday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-10-07 15:00:09', '2025-10-07 15:00:09');


-- Table structure for table `reservations`
DROP TABLE IF EXISTS `reservations`;
CREATE TABLE `reservations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `table_id` bigint(20) unsigned DEFAULT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `reservation_date_time` datetime NOT NULL,
  `party_size` int(11) NOT NULL,
  `special_requests` text DEFAULT NULL,
  `reservation_status` enum('Pending','Confirmed','Checked_In','Cancelled','No_Show') NOT NULL DEFAULT 'Confirmed',
  `reservation_slot_type` enum('Breakfast','Lunch','Dinner') NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `slot_time_difference` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `reservations_table_id_foreign` (`table_id`),
  KEY `reservations_customer_id_foreign` (`customer_id`),
  KEY `reservations_branch_id_foreign` (`branch_id`),
  CONSTRAINT `reservations_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `reservations_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `reservations_table_id_foreign` FOREIGN KEY (`table_id`) REFERENCES `tables` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `restaurant_charges`
DROP TABLE IF EXISTS `restaurant_charges`;
CREATE TABLE `restaurant_charges` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `charge_name` varchar(191) NOT NULL,
  `charge_type` enum('percent','fixed') NOT NULL DEFAULT 'fixed',
  `charge_value` decimal(16,2) DEFAULT NULL,
  `order_types` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'Supported order types: DineIn, Delivery, PickUp' CHECK (json_valid(`order_types`)),
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `restaurant_charges_restaurant_id_foreign` (`restaurant_id`),
  KEY `restaurant_charges_charge_name_index` (`charge_name`),
  CONSTRAINT `restaurant_charges_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `restaurant_payments`
DROP TABLE IF EXISTS `restaurant_payments`;
CREATE TABLE `restaurant_payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned NOT NULL,
  `amount` decimal(16,2) NOT NULL,
  `status` enum('pending','paid','failed') NOT NULL DEFAULT 'pending',
  `payment_source` enum('official_site','app_sumo') NOT NULL DEFAULT 'official_site',
  `razorpay_order_id` varchar(191) DEFAULT NULL,
  `razorpay_payment_id` varchar(191) DEFAULT NULL,
  `razorpay_signature` varchar(191) DEFAULT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `reference_id` varchar(191) DEFAULT NULL,
  `payment_date_time` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `stripe_payment_intent` varchar(191) DEFAULT NULL,
  `stripe_session_id` text DEFAULT NULL,
  `package_id` bigint(20) unsigned DEFAULT NULL,
  `package_type` varchar(191) DEFAULT NULL,
  `currency_id` varchar(191) DEFAULT NULL,
  `flutterwave_transaction_id` varchar(191) DEFAULT NULL,
  `flutterwave_payment_ref` varchar(191) DEFAULT NULL,
  `paypal_payment_id` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `restaurant_payments_restaurant_id_foreign` (`restaurant_id`),
  KEY `restaurant_payments_package_id_foreign` (`package_id`),
  CONSTRAINT `restaurant_payments_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE CASCADE,
  CONSTRAINT `restaurant_payments_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `restaurant_taxes`
DROP TABLE IF EXISTS `restaurant_taxes`;
CREATE TABLE `restaurant_taxes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned NOT NULL,
  `tax_id` varchar(191) DEFAULT NULL,
  `tax_name` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `restaurant_taxes_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `restaurant_taxes_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `restaurant_taxes`
INSERT INTO `restaurant_taxes` VALUES
('1', '3', '1234', 'HST', '2025-09-20 13:01:44', '2025-09-20 13:01:44');


-- Table structure for table `restaurants`
DROP TABLE IF EXISTS `restaurants`;
CREATE TABLE `restaurants` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `sub_domain` varchar(191) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `hash` varchar(191) DEFAULT NULL,
  `address` varchar(191) DEFAULT NULL,
  `phone_number` varchar(191) DEFAULT NULL,
  `phone_code` varchar(191) DEFAULT NULL,
  `email` varchar(191) DEFAULT NULL,
  `timezone` varchar(191) NOT NULL,
  `theme_hex` varchar(191) NOT NULL,
  `theme_rgb` varchar(191) NOT NULL,
  `logo` varchar(191) DEFAULT NULL,
  `country_id` bigint(20) unsigned NOT NULL,
  `hide_new_orders` tinyint(1) NOT NULL DEFAULT 0,
  `hide_new_reservations` tinyint(1) NOT NULL DEFAULT 0,
  `hide_new_waiter_request` tinyint(1) NOT NULL DEFAULT 0,
  `currency_id` bigint(20) unsigned DEFAULT NULL,
  `license_type` enum('free','paid') NOT NULL DEFAULT 'free',
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `customer_login_required` tinyint(1) NOT NULL DEFAULT 0,
  `about_us` longtext DEFAULT NULL,
  `allow_customer_delivery_orders` tinyint(1) NOT NULL DEFAULT 1,
  `allow_customer_pickup_orders` tinyint(1) NOT NULL DEFAULT 1,
  `pickup_days_range` int(11) DEFAULT 7,
  `allow_customer_orders` tinyint(1) NOT NULL DEFAULT 1,
  `allow_dine_in_orders` tinyint(1) NOT NULL DEFAULT 1,
  `show_veg` tinyint(1) NOT NULL DEFAULT 1,
  `show_halal` tinyint(1) NOT NULL DEFAULT 0,
  `package_id` bigint(20) unsigned DEFAULT NULL,
  `package_type` varchar(191) DEFAULT NULL,
  `status` enum('active','inactive','license_expired') NOT NULL DEFAULT 'active',
  `license_expire_on` datetime DEFAULT NULL,
  `trial_ends_at` datetime DEFAULT NULL,
  `license_updated_at` datetime DEFAULT NULL,
  `subscription_updated_at` datetime DEFAULT NULL,
  `stripe_id` varchar(191) DEFAULT NULL,
  `pm_type` varchar(191) DEFAULT NULL,
  `pm_last_four` varchar(4) DEFAULT NULL,
  `is_waiter_request_enabled` tinyint(1) NOT NULL DEFAULT 1,
  `default_table_reservation_status` varchar(191) NOT NULL DEFAULT 'Confirmed',
  `disable_slot_minutes` int(11) NOT NULL DEFAULT 30,
  `approval_status` enum('Pending','Approved','Rejected') NOT NULL DEFAULT 'Approved',
  `rejection_reason` text DEFAULT NULL,
  `facebook_link` varchar(255) DEFAULT NULL,
  `instagram_link` varchar(255) DEFAULT NULL,
  `twitter_link` varchar(255) DEFAULT NULL,
  `yelp_link` varchar(255) DEFAULT NULL,
  `table_required` tinyint(1) NOT NULL DEFAULT 0,
  `show_logo_text` tinyint(1) NOT NULL DEFAULT 1,
  `meta_keyword` text DEFAULT NULL,
  `meta_description` longtext DEFAULT NULL,
  `upload_fav_icon_android_chrome_192` varchar(191) DEFAULT NULL,
  `upload_fav_icon_android_chrome_512` varchar(191) DEFAULT NULL,
  `upload_fav_icon_apple_touch_icon` varchar(191) DEFAULT NULL,
  `upload_favicon_16` varchar(191) DEFAULT NULL,
  `upload_favicon_32` varchar(191) DEFAULT NULL,
  `favicon` varchar(191) DEFAULT NULL,
  `is_waiter_request_enabled_on_desktop` tinyint(1) NOT NULL DEFAULT 1,
  `is_waiter_request_enabled_on_mobile` tinyint(1) NOT NULL DEFAULT 1,
  `is_waiter_request_enabled_open_by_qr` tinyint(1) NOT NULL DEFAULT 0,
  `webmanifest` varchar(191) DEFAULT NULL,
  `enable_tip_shop` tinyint(1) NOT NULL DEFAULT 1,
  `enable_tip_pos` tinyint(1) NOT NULL DEFAULT 1,
  `is_pwa_install_alert_show` tinyint(1) NOT NULL DEFAULT 0,
  `auto_confirm_orders` tinyint(1) NOT NULL DEFAULT 0,
  `show_order_type_options` tinyint(1) NOT NULL DEFAULT 1,
  `hide_menu_item_image_on_pos` tinyint(1) NOT NULL DEFAULT 0,
  `hide_menu_item_image_on_customer_site` tinyint(1) NOT NULL DEFAULT 0,
  `tax_mode` enum('order','item') NOT NULL DEFAULT 'order',
  `tax_inclusive` tinyint(1) NOT NULL DEFAULT 0,
  `customer_site_language` varchar(191) DEFAULT NULL,
  `enable_admin_reservation` tinyint(1) NOT NULL DEFAULT 1,
  `enable_customer_reservation` tinyint(1) NOT NULL DEFAULT 1,
  `minimum_party_size` int(11) NOT NULL DEFAULT 1,
  `table_lock_timeout_minutes` int(11) NOT NULL DEFAULT 10,
  PRIMARY KEY (`id`),
  KEY `restaurant_settings_country_id_foreign` (`country_id`),
  KEY `restaurant_settings_currency_id_foreign` (`currency_id`),
  KEY `restaurants_package_id_foreign` (`package_id`),
  CONSTRAINT `restaurant_settings_country_id_foreign` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`) ON DELETE CASCADE,
  CONSTRAINT `restaurant_settings_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`) ON DELETE CASCADE,
  CONSTRAINT `restaurants_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `restaurants`
INSERT INTO `restaurants` VALUES
('1', 'demo.ewiidine.ca', 'Demo Restaurant', 'demo-restaurant', '56355 Matilde Hollow Apt. 268\nEast Novella, ID 87158', '+12158702241', NULL, 'demo.restaurant@example.com', 'America/New_York', '#4F46E5', '79, 70, 229', NULL, '40', '0', '0', '0', '1', 'free', '1', '2025-09-17 05:36:43', '2025-09-17 06:07:55', '0', '<p class=\"text-lg text-gray-600 mb-6\">\n          Welcome to our restaurant, where great food and good vibes come together! We\'re a local, family-owned spot that loves bringing people together over delicious meals and unforgettable moments. Whether you\'re here for a quick bite, a family dinner, or a celebration, we\'re all about making your time with us special.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          Our menu is packed with dishes made from fresh, quality ingredients because we believe food should taste as\n          good as it makes you feel. From our signature dishes to seasonal specials, there\'s always something to excite\n          your taste buds.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          But we\'re not just about the food—we\'re about community. We love seeing familiar faces and welcoming new ones.\n          Our team is a fun, friendly bunch dedicated to serving you with a smile and making sure every visit feels like\n          coming home.\n        </p>\n        <p class=\"text-lg text-gray-600\">\n          So, come on in, grab a seat, and let us take care of the rest. We can\'t wait to share our love of food with\n          you!\n        </p>\n        <p class=\"text-lg text-gray-800 font-semibold mt-6\">See you soon! 🍽️✨</p>', '1', '1', '7', '1', '1', '1', '1', '5', 'trial', 'active', '2025-10-17 05:36:43', '2025-10-17 05:36:43', '2025-09-17 05:36:43', '2025-09-17 05:36:43', NULL, NULL, NULL, '1', 'Confirmed', '30', 'Approved', NULL, 'https://www.facebook.com/', 'https://www.instagram.com/', 'https://www.twitter.com/', NULL, '1', '1', NULL, NULL, 'android-chrome-192x192.png', 'android-chrome-512x512.png', 'apple-touch-icon.png', 'favicon-16x16.png', 'favicon-32x32.png', 'favicon.ico', '1', '1', '1', NULL, '1', '1', '1', '0', '1', '0', '0', 'order', '0', 'en', '1', '1', '1', '10'),
('2', 'shaan-e-punjab.ewiidine.ca', 'Shaan-E-Punjab', 'shaan-e-punjab', 'Kosi Road', '8077708564', '91', 'agarwalanmol301@gmail.com', 'America/Toronto', '#4F46E5', '79, 70, 229', NULL, '40', '0', '0', '0', '9', 'free', '1', '2025-09-17 10:02:45', '2025-09-20 12:33:33', '0', '<p class=\"text-lg text-gray-600 mb-6\">\n          Welcome to our restaurant, where great food and good vibes come together! We\'re a local, family-owned spot that loves bringing people together over delicious meals and unforgettable moments. Whether you\'re here for a quick bite, a family dinner, or a celebration, we\'re all about making your time with us special.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          Our menu is packed with dishes made from fresh, quality ingredients because we believe food should taste as\n          good as it makes you feel. From our signature dishes to seasonal specials, there\'s always something to excite\n          your taste buds.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          But we\'re not just about the food—we\'re about community. We love seeing familiar faces and welcoming new ones.\n          Our team is a fun, friendly bunch dedicated to serving you with a smile and making sure every visit feels like\n          coming home.\n        </p>\n        <p class=\"text-lg text-gray-600\">\n          So, come on in, grab a seat, and let us take care of the rest. We can\'t wait to share our love of food with\n          you!\n        </p>\n        <p class=\"text-lg text-gray-800 font-semibold mt-6\">See you soon! 🍽️✨</p>', '1', '1', '7', '1', '1', '1', '0', '3', 'lifetime', 'active', NULL, NULL, '2025-09-17 10:02:45', '2025-09-17 10:02:45', NULL, NULL, NULL, '1', 'Confirmed', '30', 'Approved', NULL, NULL, NULL, NULL, NULL, '0', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '0', NULL, '1', '1', '0', '0', '1', '0', '0', 'order', '0', 'en', '1', '1', '1', '10'),
('3', 'louisiana.ewiidine.ca', 'Louisiana Restaurant', 'louisiana-restaurant', '1250 Boul René Lévesque O Bur 2200 Montreal,Québec H3B 4W8Canada\n', '5148158188', '1', 'mario.nicolas1210@gmail.com', 'Asia/Kolkata', '#4F46E5', '79, 70, 229', NULL, '40', '0', '0', '0', '14', 'free', '1', '2025-09-20 12:56:44', '2025-09-20 12:56:44', '0', '<p class=\"text-lg text-gray-600 mb-6\">\n          Welcome to our restaurant, where great food and good vibes come together! We\'re a local, family-owned spot that loves bringing people together over delicious meals and unforgettable moments. Whether you\'re here for a quick bite, a family dinner, or a celebration, we\'re all about making your time with us special.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          Our menu is packed with dishes made from fresh, quality ingredients because we believe food should taste as\n          good as it makes you feel. From our signature dishes to seasonal specials, there\'s always something to excite\n          your taste buds.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          But we\'re not just about the food—we\'re about community. We love seeing familiar faces and welcoming new ones.\n          Our team is a fun, friendly bunch dedicated to serving you with a smile and making sure every visit feels like\n          coming home.\n        </p>\n        <p class=\"text-lg text-gray-600\">\n          So, come on in, grab a seat, and let us take care of the rest. We can\'t wait to share our love of food with\n          you!\n        </p>\n        <p class=\"text-lg text-gray-800 font-semibold mt-6\">See you soon! 🍽️✨</p>', '1', '1', '7', '1', '1', '1', '0', '5', 'trial', 'active', '2025-10-20 12:56:44', '2025-10-20 12:56:44', '2025-09-20 12:56:44', '2025-09-20 12:56:44', NULL, NULL, NULL, '1', 'Confirmed', '30', 'Approved', NULL, NULL, NULL, NULL, NULL, '0', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '0', NULL, '1', '1', '0', '0', '1', '0', '0', 'order', '0', 'en', '1', '1', '1', '10'),
('4', 'iim-lucknow.ewiidine.ca', 'MOM\'s Biryani', 'moms-biryani', 'IIM L MESS', '8840974810', '91', 'madh321@gmail.com', 'Asia/Kolkata', '#059669', '5, 150, 105', 'fe8a6d219504148863cf356c9b23c71a.jpeg', '103', '0', '0', '0', '16', 'free', '1', '2025-10-07 15:00:09', '2025-10-15 14:39:49', '1', '<p class=\"text-lg text-gray-600 mb-6\">\n          Welcome to our restaurant, where great food and good vibes come together! We\'re a local, family-owned spot that loves bringing people together over delicious meals and unforgettable moments. Whether you\'re here for a quick bite, a family dinner, or a celebration, we\'re all about making your time with us special.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          Our menu is packed with dishes made from fresh, quality ingredients because we believe food should taste as\n          good as it makes you feel. From our signature dishes to seasonal specials, there\'s always something to excite\n          your taste buds.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          But we\'re not just about the food—we\'re about community. We love seeing familiar faces and welcoming new ones.\n          Our team is a fun, friendly bunch dedicated to serving you with a smile and making sure every visit feels like\n          coming home.\n        </p>\n        <p class=\"text-lg text-gray-600\">\n          So, come on in, grab a seat, and let us take care of the rest. We can\'t wait to share our love of food with\n          you!\n        </p>\n        <p class=\"text-lg text-gray-800 font-semibold mt-6\">See you soon! 🍽️✨</p>', '1', '1', '7', '1', '1', '1', '1', '3', 'lifetime', 'active', NULL, NULL, '2025-10-07 15:00:09', '2025-10-07 15:00:09', NULL, NULL, NULL, '1', 'Confirmed', '30', 'Approved', NULL, NULL, NULL, NULL, NULL, '1', '1', NULL, NULL, 'android-chrome-192x192.png', 'android-chrome-512x512.png', 'apple-touch-icon.png', 'favicon-16x16.png', 'favicon-32x32.png', 'favicon.ico', '1', '1', '1', NULL, '1', '1', '1', '1', '1', '0', '0', 'order', '0', 'en', '1', '1', '1', '10');


-- Table structure for table `role_has_permissions`
DROP TABLE IF EXISTS `role_has_permissions`;
CREATE TABLE `role_has_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL,
  `role_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`permission_id`,`role_id`),
  KEY `role_has_permissions_role_id_foreign` (`role_id`),
  CONSTRAINT `role_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `role_has_permissions_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `role_has_permissions`
INSERT INTO `role_has_permissions` VALUES
('1', '2'),
('1', '3'),
('1', '6'),
('1', '7'),
('1', '10'),
('1', '11'),
('1', '14'),
('1', '15'),
('2', '2'),
('2', '3'),
('2', '6'),
('2', '7'),
('2', '10'),
('2', '11'),
('2', '14'),
('2', '15'),
('3', '2'),
('3', '3'),
('3', '6'),
('3', '7'),
('3', '10'),
('3', '11'),
('3', '14'),
('3', '15'),
('4', '2'),
('4', '3'),
('4', '6'),
('4', '7'),
('4', '10'),
('4', '11'),
('4', '14'),
('4', '15'),
('5', '2'),
('5', '3'),
('5', '6'),
('5', '7'),
('5', '10'),
('5', '11'),
('5', '14'),
('5', '15'),
('6', '2'),
('6', '3'),
('6', '6'),
('6', '7'),
('6', '10'),
('6', '11'),
('6', '14'),
('6', '15'),
('7', '2'),
('7', '3'),
('7', '6'),
('7', '7'),
('7', '10'),
('7', '11'),
('7', '14'),
('7', '15'),
('8', '2'),
('8', '3'),
('8', '6'),
('8', '7'),
('8', '10'),
('8', '11'),
('8', '14'),
('8', '15'),
('9', '2'),
('9', '3'),
('9', '6'),
('9', '7'),
('9', '10'),
('9', '11'),
('9', '14'),
('9', '15'),
('10', '2'),
('10', '3'),
('10', '6'),
('10', '7'),
('10', '10'),
('10', '11'),
('10', '14'),
('10', '15'),
('11', '2'),
('11', '3'),
('11', '6'),
('11', '7'),
('11', '10'),
('11', '11'),
('11', '14'),
('11', '15'),
('12', '2'),
('12', '3'),
('12', '6'),
('12', '7'),
('12', '10'),
('12', '11'),
('12', '14'),
('12', '15'),
('13', '2'),
('13', '3'),
('13', '6'),
('13', '7'),
('13', '10'),
('13', '11'),
('13', '14'),
('13', '15'),
('14', '2'),
('14', '3'),
('14', '6'),
('14', '7'),
('14', '10'),
('14', '11'),
('14', '14'),
('14', '15'),
('15', '2'),
('15', '3'),
('15', '6'),
('15', '7'),
('15', '10'),
('15', '11'),
('15', '14'),
('15', '15'),
('16', '2'),
('16', '3'),
('16', '6'),
('16', '7'),
('16', '10'),
('16', '11'),
('16', '14'),
('16', '15'),
('17', '2'),
('17', '3'),
('17', '6'),
('17', '7'),
('17', '10'),
('17', '11'),
('17', '14'),
('17', '15'),
('18', '2'),
('18', '3'),
('18', '6'),
('18', '7'),
('18', '10'),
('18', '11'),
('18', '14'),
('18', '15'),
('19', '2'),
('19', '3'),
('19', '6'),
('19', '7'),
('19', '10'),
('19', '11'),
('19', '14'),
('19', '15'),
('20', '2'),
('20', '3'),
('20', '6'),
('20', '7'),
('20', '10'),
('20', '11'),
('20', '14'),
('20', '15'),
('21', '2'),
('21', '3'),
('21', '6'),
('21', '7'),
('21', '10'),
('21', '11'),
('21', '14'),
('21', '15'),
('22', '2'),
('22', '3'),
('22', '6'),
('22', '7'),
('22', '10'),
('22', '11'),
('22', '14'),
('22', '15'),
('23', '2'),
('23', '3'),
('23', '6'),
('23', '7'),
('23', '10'),
('23', '11'),
('23', '14'),
('23', '15'),
('24', '2'),
('24', '3'),
('24', '6'),
('24', '7'),
('24', '10'),
('24', '11'),
('24', '14'),
('24', '15'),
('25', '2'),
('25', '3'),
('25', '6'),
('25', '7'),
('25', '10'),
('25', '11'),
('25', '14'),
('25', '15'),
('26', '2'),
('26', '3'),
('26', '6'),
('26', '7'),
('26', '10'),
('26', '11'),
('26', '14'),
('26', '15'),
('27', '2'),
('27', '3'),
('27', '6'),
('27', '7'),
('27', '10'),
('27', '11'),
('27', '14'),
('27', '15'),
('28', '2'),
('28', '3'),
('28', '6'),
('28', '7'),
('28', '10'),
('28', '11'),
('28', '14'),
('28', '15'),
('29', '2'),
('29', '3'),
('29', '6'),
('29', '7'),
('29', '10'),
('29', '11'),
('29', '14'),
('29', '15'),
('30', '2'),
('30', '3'),
('30', '6'),
('30', '7'),
('30', '10'),
('30', '11'),
('30', '14'),
('30', '15'),
('31', '2'),
('31', '3'),
('31', '6'),
('31', '7'),
('31', '10'),
('31', '11'),
('31', '14'),
('31', '15'),
('32', '2'),
('32', '3'),
('32', '6'),
('32', '7'),
('32', '10'),
('32', '11'),
('32', '14'),
('32', '15'),
('33', '2'),
('33', '3'),
('33', '6'),
('33', '7'),
('33', '10'),
('33', '11'),
('33', '14'),
('33', '15'),
('34', '2'),
('34', '3'),
('34', '6'),
('34', '7'),
('34', '10'),
('34', '11'),
('34', '14'),
('34', '15'),
('35', '2'),
('35', '3'),
('35', '6'),
('35', '7'),
('35', '10'),
('35', '11'),
('35', '14'),
('35', '15'),
('36', '2'),
('36', '3'),
('36', '6'),
('36', '7'),
('36', '10'),
('36', '11'),
('36', '14'),
('36', '15'),
('37', '2'),
('37', '3'),
('37', '6'),
('37', '7'),
('37', '10'),
('37', '11'),
('37', '14'),
('37', '15'),
('38', '2'),
('38', '3'),
('38', '6'),
('38', '7'),
('38', '10'),
('38', '11'),
('38', '14'),
('38', '15'),
('39', '2'),
('39', '3'),
('39', '6'),
('39', '7'),
('39', '10'),
('39', '11'),
('39', '14'),
('39', '15'),
('40', '2'),
('40', '3'),
('40', '6'),
('40', '7'),
('40', '10'),
('40', '11'),
('40', '14'),
('40', '15'),
('41', '2'),
('41', '3'),
('41', '6'),
('41', '7'),
('41', '10'),
('41', '11'),
('41', '14'),
('41', '15'),
('42', '2'),
('42', '3'),
('42', '6'),
('42', '7'),
('42', '10'),
('42', '11'),
('42', '14'),
('42', '15'),
('43', '2'),
('43', '3'),
('43', '6'),
('43', '7'),
('43', '10'),
('43', '11'),
('43', '14'),
('43', '15'),
('44', '2'),
('44', '3'),
('44', '6'),
('44', '7'),
('44', '10'),
('44', '11'),
('44', '14'),
('44', '15'),
('45', '2'),
('45', '3'),
('45', '6'),
('45', '7'),
('45', '10'),
('45', '11'),
('45', '14'),
('45', '15'),
('46', '2'),
('46', '3'),
('46', '6'),
('46', '7'),
('46', '10'),
('46', '11'),
('46', '14'),
('46', '15'),
('47', '2'),
('47', '3'),
('47', '6'),
('47', '7'),
('47', '10'),
('47', '11'),
('47', '14'),
('47', '15'),
('48', '2'),
('48', '3'),
('48', '6'),
('48', '7'),
('48', '10'),
('48', '11'),
('48', '14'),
('48', '15'),
('49', '2'),
('49', '3'),
('49', '6'),
('49', '7'),
('49', '10'),
('49', '11'),
('49', '14'),
('49', '15'),
('50', '2'),
('50', '3'),
('50', '6'),
('50', '7'),
('50', '10'),
('50', '11'),
('50', '14'),
('50', '15'),
('51', '2'),
('51', '3'),
('51', '6'),
('51', '7'),
('51', '10'),
('51', '11'),
('51', '14'),
('51', '15'),
('52', '2'),
('52', '3'),
('52', '6'),
('52', '7'),
('52', '10'),
('52', '11'),
('52', '14'),
('52', '15'),
('53', '2'),
('53', '3'),
('53', '6'),
('53', '7'),
('53', '10'),
('53', '11'),
('53', '14'),
('53', '15'),
('54', '2'),
('54', '3'),
('54', '6'),
('54', '7'),
('54', '10'),
('54', '11'),
('54', '14'),
('54', '15'),
('55', '2'),
('55', '3'),
('55', '6'),
('55', '7'),
('55', '10'),
('55', '11'),
('55', '14'),
('55', '15'),
('56', '2'),
('56', '3'),
('56', '6'),
('56', '7'),
('56', '10'),
('56', '11'),
('56', '14'),
('56', '15'),
('57', '2'),
('57', '3'),
('57', '6'),
('57', '7'),
('57', '10'),
('57', '11'),
('57', '14'),
('57', '15'),
('58', '2'),
('58', '3'),
('58', '6'),
('58', '7'),
('58', '10'),
('58', '11'),
('58', '14'),
('58', '15'),
('59', '2'),
('59', '3'),
('59', '6'),
('59', '7'),
('59', '10'),
('59', '11'),
('59', '14'),
('59', '15'),
('60', '2'),
('60', '3'),
('60', '6'),
('60', '7'),
('60', '10'),
('60', '11'),
('60', '14'),
('60', '15'),
('61', '2'),
('61', '3'),
('61', '6'),
('61', '7'),
('61', '10'),
('61', '11'),
('61', '14'),
('61', '15'),
('62', '2'),
('62', '3'),
('62', '6'),
('62', '7'),
('62', '10'),
('62', '11'),
('62', '14'),
('62', '15'),
('63', '2'),
('63', '3'),
('63', '6'),
('63', '7'),
('63', '10'),
('63', '11'),
('63', '14'),
('63', '15'),
('64', '2'),
('64', '3'),
('64', '6'),
('64', '7'),
('64', '10'),
('64', '11'),
('64', '14'),
('64', '15'),
('65', '2'),
('65', '3'),
('65', '6'),
('65', '7'),
('65', '10'),
('65', '11'),
('65', '14'),
('65', '15'),
('66', '2'),
('66', '3'),
('66', '6'),
('66', '7'),
('66', '10'),
('66', '11'),
('66', '14'),
('66', '15'),
('67', '2'),
('67', '3'),
('67', '6'),
('67', '7'),
('67', '10'),
('67', '11'),
('67', '14'),
('67', '15'),
('68', '2'),
('68', '3'),
('68', '6'),
('68', '7'),
('68', '10'),
('68', '11'),
('68', '14'),
('68', '15'),
('69', '2'),
('69', '3'),
('69', '6'),
('69', '7'),
('69', '10'),
('69', '11'),
('69', '14'),
('69', '15'),
('70', '2'),
('70', '3'),
('70', '6'),
('70', '7'),
('70', '10'),
('70', '11'),
('70', '14'),
('70', '15'),
('71', '2'),
('71', '3'),
('71', '6'),
('71', '7'),
('71', '10'),
('71', '11'),
('71', '14'),
('71', '15'),
('72', '2'),
('72', '3'),
('72', '6'),
('72', '7'),
('72', '10'),
('72', '11'),
('72', '14'),
('72', '15'),
('73', '2'),
('73', '3'),
('73', '6'),
('73', '7'),
('73', '10'),
('73', '11'),
('73', '14'),
('73', '15'),
('74', '2'),
('74', '3'),
('74', '6'),
('74', '7'),
('74', '10'),
('74', '11'),
('74', '14'),
('74', '15'),
('75', '2'),
('75', '3'),
('75', '6'),
('75', '7'),
('75', '10'),
('75', '11'),
('75', '14'),
('75', '15'),
('76', '2'),
('76', '3'),
('76', '6'),
('76', '7'),
('76', '10'),
('76', '11'),
('76', '14'),
('76', '15'),
('77', '2'),
('77', '3'),
('77', '6'),
('77', '7'),
('77', '10'),
('77', '11'),
('77', '14'),
('77', '15'),
('78', '2'),
('78', '3'),
('78', '6'),
('78', '7'),
('78', '10'),
('78', '11'),
('78', '14'),
('78', '15'),
('79', '2'),
('79', '3'),
('79', '6'),
('79', '7'),
('79', '10'),
('79', '11'),
('79', '14'),
('79', '15'),
('80', '2'),
('80', '3'),
('80', '6'),
('80', '7'),
('80', '10'),
('80', '11'),
('80', '14'),
('80', '15'),
('81', '2'),
('81', '3'),
('81', '6'),
('81', '7'),
('81', '10'),
('81', '11'),
('81', '14'),
('81', '15'),
('82', '2'),
('82', '3'),
('82', '6'),
('82', '7'),
('82', '10'),
('82', '11'),
('82', '14'),
('82', '15'),
('83', '2'),
('83', '3'),
('83', '6'),
('83', '7'),
('83', '10'),
('83', '11'),
('83', '14'),
('83', '15'),
('84', '2'),
('84', '3'),
('84', '6'),
('84', '7'),
('84', '10'),
('84', '11'),
('84', '14'),
('84', '15'),
('85', '2'),
('85', '3'),
('85', '6'),
('85', '7'),
('85', '10'),
('85', '11'),
('85', '14'),
('85', '15'),
('86', '2'),
('86', '3'),
('86', '6'),
('86', '7'),
('86', '10'),
('86', '11'),
('86', '14'),
('86', '15'),
('87', '2'),
('87', '3'),
('87', '6'),
('87', '7'),
('87', '10'),
('87', '11'),
('87', '14'),
('87', '15'),
('88', '2'),
('88', '3'),
('88', '6'),
('88', '7'),
('88', '10'),
('88', '11'),
('88', '14'),
('88', '15'),
('89', '2'),
('89', '3'),
('89', '6'),
('89', '7'),
('89', '10'),
('89', '11'),
('89', '14'),
('89', '15');


-- Table structure for table `roles`
DROP TABLE IF EXISTS `roles`;
CREATE TABLE `roles` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `display_name` varchar(191) DEFAULT NULL,
  `guard_name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `roles_name_guard_name_unique` (`name`,`guard_name`),
  KEY `roles_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `roles_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `roles`
INSERT INTO `roles` VALUES
('1', 'Super Admin', 'Super Admin', 'web', '2025-09-17 05:36:43', '2025-09-17 05:36:43', NULL),
('2', 'Admin_1', 'Admin', 'web', '2025-09-17 05:36:44', '2025-09-17 05:36:44', '1'),
('3', 'Branch Head_1', 'Branch Head', 'web', '2025-09-17 05:36:44', '2025-09-17 05:36:44', '1'),
('4', 'Waiter_1', 'Waiter', 'web', '2025-09-17 05:36:44', '2025-09-17 05:36:44', '1'),
('5', 'Chef_1', 'Chef', 'web', '2025-09-17 05:36:44', '2025-09-17 05:36:44', '1'),
('6', 'Admin_2', 'Admin', 'web', '2025-09-17 10:02:45', '2025-09-17 10:02:45', '2'),
('7', 'Branch Head_2', 'Branch Head', 'web', '2025-09-17 10:02:45', '2025-09-17 10:02:45', '2'),
('8', 'Waiter_2', 'Waiter', 'web', '2025-09-17 10:02:45', '2025-09-17 10:02:45', '2'),
('9', 'Chef_2', 'Chef', 'web', '2025-09-17 10:02:45', '2025-09-17 10:02:45', '2'),
('10', 'Admin_3', 'Admin', 'web', '2025-09-20 12:56:45', '2025-09-20 12:56:45', '3'),
('11', 'Branch Head_3', 'Branch Head', 'web', '2025-09-20 12:56:45', '2025-09-20 12:56:45', '3'),
('12', 'Waiter_3', 'Waiter', 'web', '2025-09-20 12:56:45', '2025-09-20 12:56:45', '3'),
('13', 'Chef_3', 'Chef', 'web', '2025-09-20 12:56:45', '2025-09-20 12:56:45', '3'),
('14', 'Admin_4', 'Admin', 'web', '2025-10-07 15:00:09', '2025-10-07 15:00:09', '4'),
('15', 'Branch Head_4', 'Branch Head', 'web', '2025-10-07 15:00:09', '2025-10-07 15:00:09', '4'),
('16', 'Waiter_4', 'Waiter', 'web', '2025-10-07 15:00:09', '2025-10-07 15:00:09', '4'),
('17', 'Chef_4', 'Chef', 'web', '2025-10-07 15:00:09', '2025-10-07 15:00:09', '4');


-- Table structure for table `sessions`
DROP TABLE IF EXISTS `sessions`;
CREATE TABLE `sessions` (
  `id` varchar(191) NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `payload` longtext NOT NULL,
  `last_activity` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `sessions_user_id_index` (`user_id`),
  KEY `sessions_last_activity_index` (`last_activity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `sessions`
INSERT INTO `sessions` VALUES
('2CcwCFwkESTW4unriDCxK0ChSP1RwjGwPIOLerSK', NULL, '45.148.10.203', '', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiR21JYlQ5R0pmNjdXWjg3RUlOc1ZYakhxOFRoNGlCWklidmQydDAwaSI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjM6Imh0dHBzOi8vd3d3LmV3aWlkaW5lLmNhIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', '1760542017'),
('2ZTucrcSpXJJRTLQAjbDmFCQX0wZRuVaysT7f4xS', NULL, '129.226.213.145', 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiVTBHOE4zanVwNTZaV1haN2VIdEVZRWpHdGtYdWM2c1czdnFWV2F0SCI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTg6Imh0dHA6Ly9ld2lpZGluZS5jYSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', '1760551580'),
('59Cx9Ks3LAcwEEZsOw41zaMXZ9aSGxRNKMmIlK9M', NULL, '129.226.93.214', 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiZHFwN2JycmdzU2Q4cWFvTGxmYjJMdER3WUhBTlNPa1k4ajZaWTFmYiI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTk6Imh0dHBzOi8vZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760550659'),
('6a4BOTDmRSu4PwAetbWGWobJV0cBBJB0atRQOGDo', NULL, '43.159.145.149', 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiZTdyYlVtblZMUGFWakRzTmZKeVdoUHpHSVZXRDl3TE1CaEJxZ3puYSI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTk6Imh0dHBzOi8vZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760552537'),
('7XgPUUzVvZasG5BhhdzHSUnWJ9FV0vIDPzdG6Iz3', NULL, '74.208.165.42', 'GuzzleHttp/7', 'YToyOntzOjY6Il90b2tlbiI7czo0MDoieXBNUXNQc29pMUcxdE1ITDlLRFRaRllLdlZtSzBnTkFTSE9hZXpGQyI7czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', '1760554983'),
('9jERlbmrbeptiMRRuwWH3INokaId8UerYrTKxiqo', NULL, '45.148.10.203', '', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiOHY5ZGxHc09GMld6ZWd0cHlMWGVOamlDUUtsUUFFbTlTQ3B2NGZ6NiI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjI6Imh0dHA6Ly93d3cuZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760542050'),
('9PXvykPPwocXtD1jJLBy0rFBFV2BPgt4sMWDjcmd', NULL, '43.166.255.102', 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoicEdHM0dsUHVtMTlyRDMySXlQM3ZWRXN0Zm9PYmI1WHE3cEZqUllFVyI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTk6Imh0dHBzOi8vZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760551913'),
('A1POQ5XTs69FtfXeMGASb3MseoTPI5UiwnZ4qDqp', NULL, '43.159.136.201', 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiNm1nSUU2RWVxeDhkUUdRVzIxR1hkNGNJWmt2dURqdW9nNU41c0ZzeiI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTk6Imh0dHBzOi8vZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760548326'),
('bgb86X0EQoDDMmkpFesYvyJd026ua8HkuUfwViWb', '1', '106.219.149.18', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Safari/605.1.15', 'YToxMzp7czoxNjoic3RvcF9pbXBlcnNvbmF0ZSI7aToxO3M6NTA6ImxvZ2luX3dlYl81OWJhMzZhZGRjMmIyZjk0MDE1ODBmMDE0YzdmNThlYTRlMzA5ODlkIjtpOjE7czo2OiJfdG9rZW4iO3M6NDA6Im9iaTB5VWNOM2pFVHhIcGd0eUZSWTdpNzB5c1gxVGxVRnlidm5pR24iO3M6NDoidXNlciI7TzoxNToiQXBwXE1vZGVsc1xVc2VyIjozNjp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czo1OiJ1c2VycyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjI0OntzOjI6ImlkIjtpOjE7czoxMzoicmVzdGF1cmFudF9pZCI7TjtzOjk6ImJyYW5jaF9pZCI7TjtzOjQ6Im5hbWUiO3M6MTE6IkVtbWEgSG9sZGVuIjtzOjU6ImVtYWlsIjtzOjIyOiJzdXBlcmFkbWluQGV4YW1wbGUuY29tIjtzOjEyOiJwaG9uZV9udW1iZXIiO3M6MTE6IjE4MDA0NTQyODI3IjtzOjEwOiJwaG9uZV9jb2RlIjtzOjE6IjEiO3M6MjY6InRlcm1zX2FuZF9wcml2YWN5X2FjY2VwdGVkIjtpOjA7czoyNToibWFya2V0aW5nX2VtYWlsc19hY2NlcHRlZCI7aTowO3M6MTc6ImVtYWlsX3ZlcmlmaWVkX2F0IjtOO3M6ODoicGFzc3dvcmQiO3M6NjA6IiQyeSQxMiRTRy5mS0RTYXZOTWZNY25FbVF2RzMuUm5WWFI5MWlvZzV2cFNwMDRrVHM4NTNNOEhtYmR2cSI7czoxNzoidHdvX2ZhY3Rvcl9zZWNyZXQiO047czoyNToidHdvX2ZhY3Rvcl9yZWNvdmVyeV9jb2RlcyI7TjtzOjIzOiJ0d29fZmFjdG9yX2NvbmZpcm1lZF9hdCI7TjtzOjE0OiJyZW1lbWJlcl90b2tlbiI7TjtzOjE1OiJjdXJyZW50X3RlYW1faWQiO047czoxODoicHJvZmlsZV9waG90b19wYXRoIjtOO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMDktMTcgMDU6MzY6NDMiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTAtMTUgMTQ6Mjg6MzEiO3M6NjoibG9jYWxlIjtzOjI6ImVuIjtzOjk6InN0cmlwZV9pZCI7TjtzOjc6InBtX3R5cGUiO047czoxMjoicG1fbGFzdF9mb3VyIjtOO3M6MTM6InRyaWFsX2VuZHNfYXQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjI0OntzOjI6ImlkIjtpOjE7czoxMzoicmVzdGF1cmFudF9pZCI7TjtzOjk6ImJyYW5jaF9pZCI7TjtzOjQ6Im5hbWUiO3M6MTE6IkVtbWEgSG9sZGVuIjtzOjU6ImVtYWlsIjtzOjIyOiJzdXBlcmFkbWluQGV4YW1wbGUuY29tIjtzOjEyOiJwaG9uZV9udW1iZXIiO3M6MTE6IjE4MDA0NTQyODI3IjtzOjEwOiJwaG9uZV9jb2RlIjtzOjE6IjEiO3M6MjY6InRlcm1zX2FuZF9wcml2YWN5X2FjY2VwdGVkIjtpOjA7czoyNToibWFya2V0aW5nX2VtYWlsc19hY2NlcHRlZCI7aTowO3M6MTc6ImVtYWlsX3ZlcmlmaWVkX2F0IjtOO3M6ODoicGFzc3dvcmQiO3M6NjA6IiQyeSQxMiRTRy5mS0RTYXZOTWZNY25FbVF2RzMuUm5WWFI5MWlvZzV2cFNwMDRrVHM4NTNNOEhtYmR2cSI7czoxNzoidHdvX2ZhY3Rvcl9zZWNyZXQiO047czoyNToidHdvX2ZhY3Rvcl9yZWNvdmVyeV9jb2RlcyI7TjtzOjIzOiJ0d29fZmFjdG9yX2NvbmZpcm1lZF9hdCI7TjtzOjE0OiJyZW1lbWJlcl90b2tlbiI7TjtzOjE1OiJjdXJyZW50X3RlYW1faWQiO047czoxODoicHJvZmlsZV9waG90b19wYXRoIjtOO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMDktMTcgMDU6MzY6NDMiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTAtMTUgMTQ6Mjg6MzEiO3M6NjoibG9jYWxlIjtzOjI6ImVuIjtzOjk6InN0cmlwZV9pZCI7TjtzOjc6InBtX3R5cGUiO047czoxMjoicG1fbGFzdF9mb3VyIjtOO3M6MTM6InRyaWFsX2VuZHNfYXQiO047fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjY6e3M6MTc6ImVtYWlsX3ZlcmlmaWVkX2F0IjtzOjg6ImRhdGV0aW1lIjtzOjg6InBhc3N3b3JkIjtzOjY6Imhhc2hlZCI7czoxMzoicmVzdGF1cmFudF9pZCI7czo3OiJpbnRlZ2VyIjtzOjk6ImJyYW5jaF9pZCI7czo3OiJpbnRlZ2VyIjtzOjI2OiJ0ZXJtc19hbmRfcHJpdmFjeV9hY2NlcHRlZCI7czo3OiJib29sZWFuIjtzOjI1OiJtYXJrZXRpbmdfZW1haWxzX2FjY2VwdGVkIjtzOjc6ImJvb2xlYW4iO31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MTp7aTowO3M6MTc6InByb2ZpbGVfcGhvdG9fdXJsIjt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YToxOntzOjU6InJvbGVzIjtPOjM5OiJJbGx1bWluYXRlXERhdGFiYXNlXEVsb3F1ZW50XENvbGxlY3Rpb24iOjI6e3M6ODoiACoAaXRlbXMiO2E6MTp7aTowO086Mjk6IlNwYXRpZVxQZXJtaXNzaW9uXE1vZGVsc1xSb2xlIjozMzp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czo1OiJyb2xlcyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjc6e3M6MjoiaWQiO2k6MTtzOjQ6Im5hbWUiO3M6MTE6IlN1cGVyIEFkbWluIjtzOjEyOiJkaXNwbGF5X25hbWUiO3M6MTE6IlN1cGVyIEFkbWluIjtzOjEwOiJndWFyZF9uYW1lIjtzOjM6IndlYiI7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0wOS0xNyAwNTozNjo0MyI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0wOS0xNyAwNTozNjo0MyI7czoxMzoicmVzdGF1cmFudF9pZCI7Tjt9czoxMToiACoAb3JpZ2luYWwiO2E6MTA6e3M6MjoiaWQiO2k6MTtzOjQ6Im5hbWUiO3M6MTE6IlN1cGVyIEFkbWluIjtzOjEyOiJkaXNwbGF5X25hbWUiO3M6MTE6IlN1cGVyIEFkbWluIjtzOjEwOiJndWFyZF9uYW1lIjtzOjM6IndlYiI7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0wOS0xNyAwNTozNjo0MyI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0wOS0xNyAwNTozNjo0MyI7czoxMzoicmVzdGF1cmFudF9pZCI7TjtzOjE0OiJwaXZvdF9tb2RlbF9pZCI7aToxO3M6MTM6InBpdm90X3JvbGVfaWQiO2k6MTtzOjE2OiJwaXZvdF9tb2RlbF90eXBlIjtzOjE1OiJBcHBcTW9kZWxzXFVzZXIiO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YTowOnt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjE6e3M6NToicGl2b3QiO086NDk6IklsbHVtaW5hdGVcRGF0YWJhc2VcRWxvcXVlbnRcUmVsYXRpb25zXE1vcnBoUGl2b3QiOjM5OntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjE1OiJtb2RlbF9oYXNfcm9sZXMiO3M6MTM6IgAqAHByaW1hcnlLZXkiO3M6MjoiaWQiO3M6MTA6IgAqAGtleVR5cGUiO3M6MzoiaW50IjtzOjEyOiJpbmNyZW1lbnRpbmciO2I6MDtzOjc6IgAqAHdpdGgiO2E6MDp7fXM6MTI6IgAqAHdpdGhDb3VudCI7YTowOnt9czoxOToicHJldmVudHNMYXp5TG9hZGluZyI7YjowO3M6MTA6IgAqAHBlclBhZ2UiO2k6MTU7czo2OiJleGlzdHMiO2I6MTtzOjE4OiJ3YXNSZWNlbnRseUNyZWF0ZWQiO2I6MDtzOjI4OiIAKgBlc2NhcGVXaGVuQ2FzdGluZ1RvU3RyaW5nIjtiOjA7czoxMzoiACoAYXR0cmlidXRlcyI7YTozOntzOjEwOiJtb2RlbF90eXBlIjtzOjE1OiJBcHBcTW9kZWxzXFVzZXIiO3M6ODoibW9kZWxfaWQiO2k6MTtzOjc6InJvbGVfaWQiO2k6MTt9czoxMToiACoAb3JpZ2luYWwiO2E6Mzp7czoxMDoibW9kZWxfdHlwZSI7czoxNToiQXBwXE1vZGVsc1xVc2VyIjtzOjg6Im1vZGVsX2lkIjtpOjE7czo3OiJyb2xlX2lkIjtpOjE7fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjA6e31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MDp7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjA7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YTowOnt9czoxMToicGl2b3RQYXJlbnQiO3I6NTtzOjEyOiJwaXZvdFJlbGF0ZWQiO086Mjk6IlNwYXRpZVxQZXJtaXNzaW9uXE1vZGVsc1xSb2xlIjozMzp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czo1OiJyb2xlcyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjowO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjE6e3M6MTA6Imd1YXJkX25hbWUiO3M6Mzoid2ViIjt9czoxMToiACoAb3JpZ2luYWwiO2E6MDp7fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjA6e31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MDp7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoyOiJpZCI7fX1zOjEzOiIAKgBmb3JlaWduS2V5IjtzOjg6Im1vZGVsX2lkIjtzOjEzOiIAKgByZWxhdGVkS2V5IjtzOjc6InJvbGVfaWQiO3M6MTI6IgAqAG1vcnBoVHlwZSI7czoxMDoibW9kZWxfdHlwZSI7czoxMzoiACoAbW9ycGhDbGFzcyI7czoxNToiQXBwXE1vZGVsc1xVc2VyIjt9fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoyOiJpZCI7fX19czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO319czoxMDoiACoAdG91Y2hlcyI7YTowOnt9czoyNzoiACoAcmVsYXRpb25BdXRvbG9hZENhbGxiYWNrIjtOO3M6MjY6IgAqAHJlbGF0aW9uQXV0b2xvYWRDb250ZXh0IjtOO3M6MTA6InRpbWVzdGFtcHMiO2I6MTtzOjEzOiJ1c2VzVW5pcXVlSWRzIjtiOjA7czo5OiIAKgBoaWRkZW4iO2E6NDp7aTowO3M6ODoicGFzc3dvcmQiO2k6MTtzOjE0OiJyZW1lbWJlcl90b2tlbiI7aToyO3M6MjU6InR3b19mYWN0b3JfcmVjb3ZlcnlfY29kZXMiO2k6MztzOjE3OiJ0d29fZmFjdG9yX3NlY3JldCI7fXM6MTA6IgAqAHZpc2libGUiO2E6MDp7fXM6MTE6IgAqAGZpbGxhYmxlIjthOjEwOntpOjA7czo0OiJuYW1lIjtpOjE7czo1OiJlbWFpbCI7aToyO3M6ODoicGFzc3dvcmQiO2k6MztzOjk6ImJyYW5jaF9pZCI7aTo0O3M6MTM6InJlc3RhdXJhbnRfaWQiO2k6NTtzOjY6ImxvY2FsZSI7aTo2O3M6MTI6InBob25lX251bWJlciI7aTo3O3M6MTA6InBob25lX2NvZGUiO2k6ODtzOjI2OiJ0ZXJtc19hbmRfcHJpdmFjeV9hY2NlcHRlZCI7aTo5O3M6MjU6Im1hcmtldGluZ19lbWFpbHNfYWNjZXB0ZWQiO31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjE6IioiO31zOjE5OiIAKgBhdXRoUGFzc3dvcmROYW1lIjtzOjg6InBhc3N3b3JkIjtzOjIwOiIAKgByZW1lbWJlclRva2VuTmFtZSI7czoxNDoicmVtZW1iZXJfdG9rZW4iO3M6MTQ6IgAqAGFjY2Vzc1Rva2VuIjtOO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX1zOjE3OiJwYXNzd29yZF9oYXNoX3dlYiI7czo2MDoiJDJ5JDEyJFNHLmZLRFNhdk5NZk1jbkVtUXZHMy5SblZYUjkxaW9nNXZwU3AwNGtUczg1M004SG1iZHZxIjtzOjE2OiJyb2xlX3Blcm1pc3Npb25zIjthOjA6e31zOjIwOiJjaGVja19taWdyYXRlX3N0YXR1cyI7czo0OiJHb29kIjtzOjU6ImlzUnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzU6Imh0dHBzOi8vZXdpaWRpbmUuY2EvcGFja2FnZXMvY3JlYXRlIjt9czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo4OiJ0aW1lem9uZSI7czoxMjoiQXNpYS9Lb2xrYXRhIjtzOjMxOiJnbG9iYWxfY3VycmVuY3lfZm9ybWF0X3NldHRpbmcxIjtPOjI1OiJBcHBcTW9kZWxzXEdsb2JhbEN1cnJlbmN5IjozNDp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czoxNzoiZ2xvYmFsX2N1cnJlbmNpZXMiO3M6MTM6IgAqAHByaW1hcnlLZXkiO3M6MjoiaWQiO3M6MTA6IgAqAGtleVR5cGUiO3M6MzoiaW50IjtzOjEyOiJpbmNyZW1lbnRpbmciO2I6MTtzOjc6IgAqAHdpdGgiO2E6MDp7fXM6MTI6IgAqAHdpdGhDb3VudCI7YTowOnt9czoxOToicHJldmVudHNMYXp5TG9hZGluZyI7YjowO3M6MTA6IgAqAHBlclBhZ2UiO2k6MTU7czo2OiJleGlzdHMiO2I6MTtzOjE4OiJ3YXNSZWNlbnRseUNyZWF0ZWQiO2I6MDtzOjI4OiIAKgBlc2NhcGVXaGVuQ2FzdGluZ1RvU3RyaW5nIjtiOjA7czoxMzoiACoAYXR0cmlidXRlcyI7YToxNTp7czoyOiJpZCI7aToxO3M6MTM6ImN1cnJlbmN5X25hbWUiO3M6MTA6IlVTIERvbGxhcnMiO3M6MTU6ImN1cnJlbmN5X3N5bWJvbCI7czoxOiIkIjtzOjEzOiJjdXJyZW5jeV9jb2RlIjtzOjM6IlVTRCI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO3M6NDoibGVmdCI7czoxMzoibm9fb2ZfZGVjaW1hbCI7aToyO3M6MTg6InRob3VzYW5kX3NlcGFyYXRvciI7czoxOiIsIjtzOjE3OiJkZWNpbWFsX3NlcGFyYXRvciI7czoxOiIuIjtzOjY6InN0YXR1cyI7czo2OiJlbmFibGUiO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMDktMTcgMDU6MzY6NDAiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMDktMTcgMDY6MTI6NTAiO3M6MTA6ImRlbGV0ZWRfYXQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjE1OntzOjI6ImlkIjtpOjE7czoxMzoiY3VycmVuY3lfbmFtZSI7czoxMDoiVVMgRG9sbGFycyI7czoxNToiY3VycmVuY3lfc3ltYm9sIjtzOjE6IiQiO3M6MTM6ImN1cnJlbmN5X2NvZGUiO3M6MzoiVVNEIjtzOjEzOiJleGNoYW5nZV9yYXRlIjtOO3M6OToidXNkX3ByaWNlIjtOO3M6MTc6ImlzX2NyeXB0b2N1cnJlbmN5IjtzOjI6Im5vIjtzOjE3OiJjdXJyZW5jeV9wb3NpdGlvbiI7czo0OiJsZWZ0IjtzOjEzOiJub19vZl9kZWNpbWFsIjtpOjI7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtzOjE6IiwiO3M6MTc6ImRlY2ltYWxfc2VwYXJhdG9yIjtzOjE6Ii4iO3M6Njoic3RhdHVzIjtzOjY6ImVuYWJsZSI7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0wOS0xNyAwNTozNjo0MCI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0wOS0xNyAwNjoxMjo1MCI7czoxMDoiZGVsZXRlZF9hdCI7Tjt9czoxMDoiACoAY2hhbmdlcyI7YTowOnt9czoxMToiACoAcHJldmlvdXMiO2E6MDp7fXM6ODoiACoAY2FzdHMiO2E6Mjp7czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6NzoiYm9vbGVhbiI7czoxMDoiZGVsZXRlZF9hdCI7czo4OiJkYXRldGltZSI7fXM6MTc6IgAqAGNsYXNzQ2FzdENhY2hlIjthOjA6e31zOjIxOiIAKgBhdHRyaWJ1dGVDYXN0Q2FjaGUiO2E6MDp7fXM6MTM6IgAqAGRhdGVGb3JtYXQiO047czoxMDoiACoAYXBwZW5kcyI7YTowOnt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YTowOnt9czoxMDoiACoAdG91Y2hlcyI7YTowOnt9czoyNzoiACoAcmVsYXRpb25BdXRvbG9hZENhbGxiYWNrIjtOO3M6MjY6IgAqAHJlbGF0aW9uQXV0b2xvYWRDb250ZXh0IjtOO3M6MTA6InRpbWVzdGFtcHMiO2I6MTtzOjEzOiJ1c2VzVW5pcXVlSWRzIjtiOjA7czo5OiIAKgBoaWRkZW4iO2E6MDp7fXM6MTA6IgAqAHZpc2libGUiO2E6MDp7fXM6MTE6IgAqAGZpbGxhYmxlIjthOjExOntpOjA7czoxMzoiY3VycmVuY3lfbmFtZSI7aToxO3M6MTU6ImN1cnJlbmN5X3N5bWJvbCI7aToyO3M6MTM6ImN1cnJlbmN5X2NvZGUiO2k6MztzOjEzOiJleGNoYW5nZV9yYXRlIjtpOjQ7czo5OiJ1c2RfcHJpY2UiO2k6NTtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7aTo2O3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtpOjc7czoxMzoibm9fb2ZfZGVjaW1hbCI7aTo4O3M6MTg6InRob3VzYW5kX3NlcGFyYXRvciI7aTo5O3M6MTc6ImRlY2ltYWxfc2VwYXJhdG9yIjtpOjEwO3M6Njoic3RhdHVzIjt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoxOiIqIjt9czoxNjoiACoAZm9yY2VEZWxldGluZyI7YjowO319', '1760544033'),
('CrxTBe4MlzlJoQZ4AxCLaOhtSSHU6qupA3RKU9PC', NULL, '74.208.165.42', 'GuzzleHttp/7', 'YToyOntzOjY6Il90b2tlbiI7czo0MDoiMUR6NmVQeHk3UGRacHgyVU4zc2pneVB1dUhsaGdGS1hmOVNvMVdaTSI7czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', '1760558189'),
('DG4m07LEyzii1JlfxfREPcdsgVk2dFJD5GSIlRbr', NULL, '106.219.149.18', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Mobile Safari/537.36', 'YTo4OntzOjY6Il90b2tlbiI7czo0MDoiZzV2d0VFbGlTSFNTMk9zOEFCSjJJWVd5VHNMM2pXSHlIVmpFdU5EbiI7czoyMjoiY3VzdG9tZXJfc2l0ZV9sYW5ndWFnZSI7czoyOiJlbiI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtpOjA7czo0OiJ1c2VyIjtOO3M6MjU6ImN1cnJlbmN5X2Zvcm1hdF9zZXR0aW5nMTYiO086MTk6IkFwcFxNb2RlbHNcQ3VycmVuY3kiOjMzOntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjEwOiJjdXJyZW5jaWVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MTI6e3M6MjoiaWQiO2k6MTY7czoxMzoicmVzdGF1cmFudF9pZCI7aTo0O3M6MTM6ImN1cnJlbmN5X25hbWUiO3M6MTI6IkluZGlhbiBSdXBlZSI7czoxMzoiY3VycmVuY3lfY29kZSI7czozOiJJTlIiO3M6MTU6ImN1cnJlbmN5X3N5bWJvbCI7czozOiLigrkiO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjQ6ImxlZnQiO3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6MjtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO3M6MToiLCI7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO3M6MToiLiI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7fXM6MTE6IgAqAG9yaWdpbmFsIjthOjEyOntzOjI6ImlkIjtpOjE2O3M6MTM6InJlc3RhdXJhbnRfaWQiO2k6NDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtzOjEyOiJJbmRpYW4gUnVwZWUiO3M6MTM6ImN1cnJlbmN5X2NvZGUiO3M6MzoiSU5SIjtzOjE1OiJjdXJyZW5jeV9zeW1ib2wiO3M6Mzoi4oK5IjtzOjE3OiJjdXJyZW5jeV9wb3NpdGlvbiI7czo0OiJsZWZ0IjtzOjEzOiJub19vZl9kZWNpbWFsIjtpOjI7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtzOjE6IiwiO3M6MTc6ImRlY2ltYWxfc2VwYXJhdG9yIjtzOjE6Ii4iO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO047czo5OiJ1c2RfcHJpY2UiO047czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6Mjoibm8iO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YTowOnt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjE6e3M6MTA6InJlc3RhdXJhbnQiO086MjE6IkFwcFxNb2RlbHNcUmVzdGF1cmFudCI6Mzk6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6MTE6InJlc3RhdXJhbnRzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6Nzc6e3M6MjoiaWQiO2k6NDtzOjEwOiJzdWJfZG9tYWluIjtzOjIzOiJpaW0tbHVja25vdy5ld2lpZGluZS5jYSI7czo0OiJuYW1lIjtzOjEzOiJNT00ncyBCaXJ5YW5pIjtzOjQ6Imhhc2giO3M6MTI6Im1vbXMtYmlyeWFuaSI7czo3OiJhZGRyZXNzIjtzOjEwOiJJSU0gTCBNRVNTIjtzOjEyOiJwaG9uZV9udW1iZXIiO2k6ODg0MDk3NDgxMDtzOjEwOiJwaG9uZV9jb2RlIjtpOjkxO3M6NToiZW1haWwiO3M6MTc6Im1hZGgzMjFAZ21haWwuY29tIjtzOjg6InRpbWV6b25lIjtzOjEyOiJBc2lhL0tvbGthdGEiO3M6OToidGhlbWVfaGV4IjtzOjc6IiMwNTk2NjkiO3M6OToidGhlbWVfcmdiIjtzOjExOiI1LCAxNTAsIDEwNSI7czo0OiJsb2dvIjtzOjM3OiJmZThhNmQyMTk1MDQxNDg4NjNjZjM1NmM5YjIzYzcxYS5qcGVnIjtzOjEwOiJjb3VudHJ5X2lkIjtpOjEwMztzOjE1OiJoaWRlX25ld19vcmRlcnMiO2k6MDtzOjIxOiJoaWRlX25ld19yZXNlcnZhdGlvbnMiO2k6MDtzOjIzOiJoaWRlX25ld193YWl0ZXJfcmVxdWVzdCI7aTowO3M6MTE6ImN1cnJlbmN5X2lkIjtpOjE2O3M6MTI6ImxpY2Vuc2VfdHlwZSI7czo0OiJmcmVlIjtzOjk6ImlzX2FjdGl2ZSI7aToxO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTAtMDcgMTU6MDA6MDkiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTAtMTUgMTI6MzE6MDQiO3M6MjM6ImN1c3RvbWVyX2xvZ2luX3JlcXVpcmVkIjtpOjE7czo4OiJhYm91dF91cyI7czoxMzA0OiI8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIG1iLTYiPgogICAgICAgICAgV2VsY29tZSB0byBvdXIgcmVzdGF1cmFudCwgd2hlcmUgZ3JlYXQgZm9vZCBhbmQgZ29vZCB2aWJlcyBjb21lIHRvZ2V0aGVyISBXZSdyZSBhIGxvY2FsLCBmYW1pbHktb3duZWQgc3BvdCB0aGF0IGxvdmVzIGJyaW5naW5nIHBlb3BsZSB0b2dldGhlciBvdmVyIGRlbGljaW91cyBtZWFscyBhbmQgdW5mb3JnZXR0YWJsZSBtb21lbnRzLiBXaGV0aGVyIHlvdSdyZSBoZXJlIGZvciBhIHF1aWNrIGJpdGUsIGEgZmFtaWx5IGRpbm5lciwgb3IgYSBjZWxlYnJhdGlvbiwgd2UncmUgYWxsIGFib3V0IG1ha2luZyB5b3VyIHRpbWUgd2l0aCB1cyBzcGVjaWFsLgogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIG1iLTYiPgogICAgICAgICAgT3VyIG1lbnUgaXMgcGFja2VkIHdpdGggZGlzaGVzIG1hZGUgZnJvbSBmcmVzaCwgcXVhbGl0eSBpbmdyZWRpZW50cyBiZWNhdXNlIHdlIGJlbGlldmUgZm9vZCBzaG91bGQgdGFzdGUgYXMKICAgICAgICAgIGdvb2QgYXMgaXQgbWFrZXMgeW91IGZlZWwuIEZyb20gb3VyIHNpZ25hdHVyZSBkaXNoZXMgdG8gc2Vhc29uYWwgc3BlY2lhbHMsIHRoZXJlJ3MgYWx3YXlzIHNvbWV0aGluZyB0byBleGNpdGUKICAgICAgICAgIHlvdXIgdGFzdGUgYnVkcy4KICAgICAgICA8L3A+CiAgICAgICAgPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTYwMCBtYi02Ij4KICAgICAgICAgIEJ1dCB3ZSdyZSBub3QganVzdCBhYm91dCB0aGUgZm9vZOKAlHdlJ3JlIGFib3V0IGNvbW11bml0eS4gV2UgbG92ZSBzZWVpbmcgZmFtaWxpYXIgZmFjZXMgYW5kIHdlbGNvbWluZyBuZXcgb25lcy4KICAgICAgICAgIE91ciB0ZWFtIGlzIGEgZnVuLCBmcmllbmRseSBidW5jaCBkZWRpY2F0ZWQgdG8gc2VydmluZyB5b3Ugd2l0aCBhIHNtaWxlIGFuZCBtYWtpbmcgc3VyZSBldmVyeSB2aXNpdCBmZWVscyBsaWtlCiAgICAgICAgICBjb21pbmcgaG9tZS4KICAgICAgICA8L3A+CiAgICAgICAgPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTYwMCI+CiAgICAgICAgICBTbywgY29tZSBvbiBpbiwgZ3JhYiBhIHNlYXQsIGFuZCBsZXQgdXMgdGFrZSBjYXJlIG9mIHRoZSByZXN0LiBXZSBjYW4ndCB3YWl0IHRvIHNoYXJlIG91ciBsb3ZlIG9mIGZvb2Qgd2l0aAogICAgICAgICAgeW91IQogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktODAwIGZvbnQtc2VtaWJvbGQgbXQtNiI+U2VlIHlvdSBzb29uISDwn42977iP4pyoPC9wPiI7czozMDoiYWxsb3dfY3VzdG9tZXJfZGVsaXZlcnlfb3JkZXJzIjtpOjE7czoyODoiYWxsb3dfY3VzdG9tZXJfcGlja3VwX29yZGVycyI7aToxO3M6MTc6InBpY2t1cF9kYXlzX3JhbmdlIjtpOjc7czoyMToiYWxsb3dfY3VzdG9tZXJfb3JkZXJzIjtpOjE7czoyMDoiYWxsb3dfZGluZV9pbl9vcmRlcnMiO2k6MTtzOjg6InNob3dfdmVnIjtpOjE7czoxMDoic2hvd19oYWxhbCI7aToxO3M6MTA6InBhY2thZ2VfaWQiO2k6MztzOjEyOiJwYWNrYWdlX3R5cGUiO3M6ODoibGlmZXRpbWUiO3M6Njoic3RhdHVzIjtzOjY6ImFjdGl2ZSI7czoxNzoibGljZW5zZV9leHBpcmVfb24iO047czoxMzoidHJpYWxfZW5kc19hdCI7TjtzOjE4OiJsaWNlbnNlX3VwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTAtMDcgMTU6MDA6MDkiO3M6MjM6InN1YnNjcmlwdGlvbl91cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTEwLTA3IDE1OjAwOjA5IjtzOjk6InN0cmlwZV9pZCI7TjtzOjc6InBtX3R5cGUiO047czoxMjoicG1fbGFzdF9mb3VyIjtOO3M6MjU6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWQiO2k6MTtzOjMyOiJkZWZhdWx0X3RhYmxlX3Jlc2VydmF0aW9uX3N0YXR1cyI7czo5OiJDb25maXJtZWQiO3M6MjA6ImRpc2FibGVfc2xvdF9taW51dGVzIjtpOjMwO3M6MTU6ImFwcHJvdmFsX3N0YXR1cyI7czo4OiJBcHByb3ZlZCI7czoxNjoicmVqZWN0aW9uX3JlYXNvbiI7TjtzOjEzOiJmYWNlYm9va19saW5rIjtOO3M6MTQ6Imluc3RhZ3JhbV9saW5rIjtOO3M6MTI6InR3aXR0ZXJfbGluayI7TjtzOjk6InllbHBfbGluayI7TjtzOjE0OiJ0YWJsZV9yZXF1aXJlZCI7aToxO3M6MTQ6InNob3dfbG9nb190ZXh0IjtpOjE7czoxMjoibWV0YV9rZXl3b3JkIjtOO3M6MTY6Im1ldGFfZGVzY3JpcHRpb24iO047czozNDoidXBsb2FkX2Zhdl9pY29uX2FuZHJvaWRfY2hyb21lXzE5MiI7czoyNjoiYW5kcm9pZC1jaHJvbWUtMTkyeDE5Mi5wbmciO3M6MzQ6InVwbG9hZF9mYXZfaWNvbl9hbmRyb2lkX2Nocm9tZV81MTIiO3M6MjY6ImFuZHJvaWQtY2hyb21lLTUxMng1MTIucG5nIjtzOjMyOiJ1cGxvYWRfZmF2X2ljb25fYXBwbGVfdG91Y2hfaWNvbiI7czoyMDoiYXBwbGUtdG91Y2gtaWNvbi5wbmciO3M6MTc6InVwbG9hZF9mYXZpY29uXzE2IjtzOjE3OiJmYXZpY29uLTE2eDE2LnBuZyI7czoxNzoidXBsb2FkX2Zhdmljb25fMzIiO3M6MTc6ImZhdmljb24tMzJ4MzIucG5nIjtzOjc6ImZhdmljb24iO3M6MTE6ImZhdmljb24uaWNvIjtzOjM2OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkX29uX2Rlc2t0b3AiO2k6MTtzOjM1OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkX29uX21vYmlsZSI7aToxO3M6MzY6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWRfb3Blbl9ieV9xciI7aTowO3M6MTE6IndlYm1hbmlmZXN0IjtOO3M6MTU6ImVuYWJsZV90aXBfc2hvcCI7aToxO3M6MTQ6ImVuYWJsZV90aXBfcG9zIjtpOjE7czoyNToiaXNfcHdhX2luc3RhbGxfYWxlcnRfc2hvdyI7aToxO3M6MTk6ImF1dG9fY29uZmlybV9vcmRlcnMiO2k6MTtzOjIzOiJzaG93X29yZGVyX3R5cGVfb3B0aW9ucyI7aToxO3M6Mjc6ImhpZGVfbWVudV9pdGVtX2ltYWdlX29uX3BvcyI7aTowO3M6Mzc6ImhpZGVfbWVudV9pdGVtX2ltYWdlX29uX2N1c3RvbWVyX3NpdGUiO2k6MDtzOjg6InRheF9tb2RlIjtzOjU6Im9yZGVyIjtzOjEzOiJ0YXhfaW5jbHVzaXZlIjtpOjA7czoyMjoiY3VzdG9tZXJfc2l0ZV9sYW5ndWFnZSI7czoyOiJlbiI7czoyNDoiZW5hYmxlX2FkbWluX3Jlc2VydmF0aW9uIjtpOjE7czoyNzoiZW5hYmxlX2N1c3RvbWVyX3Jlc2VydmF0aW9uIjtpOjE7czoxODoibWluaW11bV9wYXJ0eV9zaXplIjtpOjE7czoyNjoidGFibGVfbG9ja190aW1lb3V0X21pbnV0ZXMiO2k6MTA7fXM6MTE6IgAqAG9yaWdpbmFsIjthOjc3OntzOjI6ImlkIjtpOjQ7czoxMDoic3ViX2RvbWFpbiI7czoyMzoiaWltLWx1Y2tub3cuZXdpaWRpbmUuY2EiO3M6NDoibmFtZSI7czoxMzoiTU9NJ3MgQmlyeWFuaSI7czo0OiJoYXNoIjtzOjEyOiJtb21zLWJpcnlhbmkiO3M6NzoiYWRkcmVzcyI7czoxMDoiSUlNIEwgTUVTUyI7czoxMjoicGhvbmVfbnVtYmVyIjtzOjEwOiI4ODQwOTc0ODEwIjtzOjEwOiJwaG9uZV9jb2RlIjtzOjI6IjkxIjtzOjU6ImVtYWlsIjtzOjE3OiJtYWRoMzIxQGdtYWlsLmNvbSI7czo4OiJ0aW1lem9uZSI7czoxMjoiQXNpYS9Lb2xrYXRhIjtzOjk6InRoZW1lX2hleCI7czo3OiIjMDU5NjY5IjtzOjk6InRoZW1lX3JnYiI7czoxMToiNSwgMTUwLCAxMDUiO3M6NDoibG9nbyI7czozNzoiZmU4YTZkMjE5NTA0MTQ4ODYzY2YzNTZjOWIyM2M3MWEuanBlZyI7czoxMDoiY291bnRyeV9pZCI7aToxMDM7czoxNToiaGlkZV9uZXdfb3JkZXJzIjtpOjA7czoyMToiaGlkZV9uZXdfcmVzZXJ2YXRpb25zIjtpOjA7czoyMzoiaGlkZV9uZXdfd2FpdGVyX3JlcXVlc3QiO2k6MDtzOjExOiJjdXJyZW5jeV9pZCI7aToxNjtzOjEyOiJsaWNlbnNlX3R5cGUiO3M6NDoiZnJlZSI7czo5OiJpc19hY3RpdmUiO2k6MTtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTEwLTA3IDE1OjAwOjA5IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTEwLTE1IDEyOjMxOjA0IjtzOjIzOiJjdXN0b21lcl9sb2dpbl9yZXF1aXJlZCI7aToxO3M6ODoiYWJvdXRfdXMiO3M6MTMwNDoiPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTYwMCBtYi02Ij4KICAgICAgICAgIFdlbGNvbWUgdG8gb3VyIHJlc3RhdXJhbnQsIHdoZXJlIGdyZWF0IGZvb2QgYW5kIGdvb2QgdmliZXMgY29tZSB0b2dldGhlciEgV2UncmUgYSBsb2NhbCwgZmFtaWx5LW93bmVkIHNwb3QgdGhhdCBsb3ZlcyBicmluZ2luZyBwZW9wbGUgdG9nZXRoZXIgb3ZlciBkZWxpY2lvdXMgbWVhbHMgYW5kIHVuZm9yZ2V0dGFibGUgbW9tZW50cy4gV2hldGhlciB5b3UncmUgaGVyZSBmb3IgYSBxdWljayBiaXRlLCBhIGZhbWlseSBkaW5uZXIsIG9yIGEgY2VsZWJyYXRpb24sIHdlJ3JlIGFsbCBhYm91dCBtYWtpbmcgeW91ciB0aW1lIHdpdGggdXMgc3BlY2lhbC4KICAgICAgICA8L3A+CiAgICAgICAgPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTYwMCBtYi02Ij4KICAgICAgICAgIE91ciBtZW51IGlzIHBhY2tlZCB3aXRoIGRpc2hlcyBtYWRlIGZyb20gZnJlc2gsIHF1YWxpdHkgaW5ncmVkaWVudHMgYmVjYXVzZSB3ZSBiZWxpZXZlIGZvb2Qgc2hvdWxkIHRhc3RlIGFzCiAgICAgICAgICBnb29kIGFzIGl0IG1ha2VzIHlvdSBmZWVsLiBGcm9tIG91ciBzaWduYXR1cmUgZGlzaGVzIHRvIHNlYXNvbmFsIHNwZWNpYWxzLCB0aGVyZSdzIGFsd2F5cyBzb21ldGhpbmcgdG8gZXhjaXRlCiAgICAgICAgICB5b3VyIHRhc3RlIGJ1ZHMuCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAgbWItNiI+CiAgICAgICAgICBCdXQgd2UncmUgbm90IGp1c3QgYWJvdXQgdGhlIGZvb2TigJR3ZSdyZSBhYm91dCBjb21tdW5pdHkuIFdlIGxvdmUgc2VlaW5nIGZhbWlsaWFyIGZhY2VzIGFuZCB3ZWxjb21pbmcgbmV3IG9uZXMuCiAgICAgICAgICBPdXIgdGVhbSBpcyBhIGZ1biwgZnJpZW5kbHkgYnVuY2ggZGVkaWNhdGVkIHRvIHNlcnZpbmcgeW91IHdpdGggYSBzbWlsZSBhbmQgbWFraW5nIHN1cmUgZXZlcnkgdmlzaXQgZmVlbHMgbGlrZQogICAgICAgICAgY29taW5nIGhvbWUuCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAiPgogICAgICAgICAgU28sIGNvbWUgb24gaW4sIGdyYWIgYSBzZWF0LCBhbmQgbGV0IHVzIHRha2UgY2FyZSBvZiB0aGUgcmVzdC4gV2UgY2FuJ3Qgd2FpdCB0byBzaGFyZSBvdXIgbG92ZSBvZiBmb29kIHdpdGgKICAgICAgICAgIHlvdSEKICAgICAgICA8L3A+CiAgICAgICAgPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTgwMCBmb250LXNlbWlib2xkIG10LTYiPlNlZSB5b3Ugc29vbiEg8J+Nve+4j+KcqDwvcD4iO3M6MzA6ImFsbG93X2N1c3RvbWVyX2RlbGl2ZXJ5X29yZGVycyI7aToxO3M6Mjg6ImFsbG93X2N1c3RvbWVyX3BpY2t1cF9vcmRlcnMiO2k6MTtzOjE3OiJwaWNrdXBfZGF5c19yYW5nZSI7aTo3O3M6MjE6ImFsbG93X2N1c3RvbWVyX29yZGVycyI7aToxO3M6MjA6ImFsbG93X2RpbmVfaW5fb3JkZXJzIjtpOjE7czo4OiJzaG93X3ZlZyI7aToxO3M6MTA6InNob3dfaGFsYWwiO2k6MTtzOjEwOiJwYWNrYWdlX2lkIjtpOjM7czoxMjoicGFja2FnZV90eXBlIjtzOjg6ImxpZmV0aW1lIjtzOjY6InN0YXR1cyI7czo2OiJhY3RpdmUiO3M6MTc6ImxpY2Vuc2VfZXhwaXJlX29uIjtOO3M6MTM6InRyaWFsX2VuZHNfYXQiO047czoxODoibGljZW5zZV91cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTEwLTA3IDE1OjAwOjA5IjtzOjIzOiJzdWJzY3JpcHRpb25fdXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMC0wNyAxNTowMDowOSI7czo5OiJzdHJpcGVfaWQiO047czo3OiJwbV90eXBlIjtOO3M6MTI6InBtX2xhc3RfZm91ciI7TjtzOjI1OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkIjtpOjE7czozMjoiZGVmYXVsdF90YWJsZV9yZXNlcnZhdGlvbl9zdGF0dXMiO3M6OToiQ29uZmlybWVkIjtzOjIwOiJkaXNhYmxlX3Nsb3RfbWludXRlcyI7aTozMDtzOjE1OiJhcHByb3ZhbF9zdGF0dXMiO3M6ODoiQXBwcm92ZWQiO3M6MTY6InJlamVjdGlvbl9yZWFzb24iO047czoxMzoiZmFjZWJvb2tfbGluayI7TjtzOjE0OiJpbnN0YWdyYW1fbGluayI7TjtzOjEyOiJ0d2l0dGVyX2xpbmsiO047czo5OiJ5ZWxwX2xpbmsiO047czoxNDoidGFibGVfcmVxdWlyZWQiO2k6MTtzOjE0OiJzaG93X2xvZ29fdGV4dCI7aToxO3M6MTI6Im1ldGFfa2V5d29yZCI7TjtzOjE2OiJtZXRhX2Rlc2NyaXB0aW9uIjtOO3M6MzQ6InVwbG9hZF9mYXZfaWNvbl9hbmRyb2lkX2Nocm9tZV8xOTIiO3M6MjY6ImFuZHJvaWQtY2hyb21lLTE5MngxOTIucG5nIjtzOjM0OiJ1cGxvYWRfZmF2X2ljb25fYW5kcm9pZF9jaHJvbWVfNTEyIjtzOjI2OiJhbmRyb2lkLWNocm9tZS01MTJ4NTEyLnBuZyI7czozMjoidXBsb2FkX2Zhdl9pY29uX2FwcGxlX3RvdWNoX2ljb24iO3M6MjA6ImFwcGxlLXRvdWNoLWljb24ucG5nIjtzOjE3OiJ1cGxvYWRfZmF2aWNvbl8xNiI7czoxNzoiZmF2aWNvbi0xNngxNi5wbmciO3M6MTc6InVwbG9hZF9mYXZpY29uXzMyIjtzOjE3OiJmYXZpY29uLTMyeDMyLnBuZyI7czo3OiJmYXZpY29uIjtzOjExOiJmYXZpY29uLmljbyI7czozNjoiaXNfd2FpdGVyX3JlcXVlc3RfZW5hYmxlZF9vbl9kZXNrdG9wIjtpOjE7czozNToiaXNfd2FpdGVyX3JlcXVlc3RfZW5hYmxlZF9vbl9tb2JpbGUiO2k6MTtzOjM2OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkX29wZW5fYnlfcXIiO2k6MDtzOjExOiJ3ZWJtYW5pZmVzdCI7TjtzOjE1OiJlbmFibGVfdGlwX3Nob3AiO2k6MTtzOjE0OiJlbmFibGVfdGlwX3BvcyI7aToxO3M6MjU6ImlzX3B3YV9pbnN0YWxsX2FsZXJ0X3Nob3ciO2k6MTtzOjE5OiJhdXRvX2NvbmZpcm1fb3JkZXJzIjtpOjE7czoyMzoic2hvd19vcmRlcl90eXBlX29wdGlvbnMiO2k6MTtzOjI3OiJoaWRlX21lbnVfaXRlbV9pbWFnZV9vbl9wb3MiO2k6MDtzOjM3OiJoaWRlX21lbnVfaXRlbV9pbWFnZV9vbl9jdXN0b21lcl9zaXRlIjtpOjA7czo4OiJ0YXhfbW9kZSI7czo1OiJvcmRlciI7czoxMzoidGF4X2luY2x1c2l2ZSI7aTowO3M6MjI6ImN1c3RvbWVyX3NpdGVfbGFuZ3VhZ2UiO3M6MjoiZW4iO3M6MjQ6ImVuYWJsZV9hZG1pbl9yZXNlcnZhdGlvbiI7aToxO3M6Mjc6ImVuYWJsZV9jdXN0b21lcl9yZXNlcnZhdGlvbiI7aToxO3M6MTg6Im1pbmltdW1fcGFydHlfc2l6ZSI7aToxO3M6MjY6InRhYmxlX2xvY2tfdGltZW91dF9taW51dGVzIjtpOjEwO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YToxMDp7czoxNzoibGljZW5zZV9leHBpcmVfb24iO3M6ODoiZGF0ZXRpbWUiO3M6MTU6InRyaWFsX2V4cGlyZV9vbiI7czo4OiJkYXRldGltZSI7czoxODoibGljZW5zZV91cGRhdGVkX2F0IjtzOjg6ImRhdGV0aW1lIjtzOjIzOiJzdWJzY3JpcHRpb25fdXBkYXRlZF9hdCI7czo4OiJkYXRldGltZSI7czoxMDoiY3JlYXRlZF9hdCI7czo4OiJkYXRldGltZSI7czoxMDoidXBkYXRlZF9hdCI7czo4OiJkYXRldGltZSI7czoyMzoiY3VzdG9tX2RlbGl2ZXJ5X29wdGlvbnMiO3M6NToiYXJyYXkiO3M6OToiaXNfYWN0aXZlIjtzOjc6ImJvb2xlYW4iO3M6MjQ6ImVuYWJsZV9hZG1pbl9yZXNlcnZhdGlvbiI7czo3OiJib29sZWFuIjtzOjI3OiJlbmFibGVfY3VzdG9tZXJfcmVzZXJ2YXRpb24iO3M6NzoiYm9vbGVhbiI7fXM6MTc6IgAqAGNsYXNzQ2FzdENhY2hlIjthOjA6e31zOjIxOiIAKgBhdHRyaWJ1dGVDYXN0Q2FjaGUiO2E6MDp7fXM6MTM6IgAqAGRhdGVGb3JtYXQiO047czoxMDoiACoAYXBwZW5kcyI7YToxOntpOjA7czo4OiJsb2dvX3VybCI7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoyOiJpZCI7fXM6MTc6ImN1c3RvbWVySXBBZGRyZXNzIjtOO3M6MjQ6ImVzdGltYXRpb25CaWxsaW5nQWRkcmVzcyI7YTowOnt9czoxMzoiY29sbGVjdFRheElkcyI7YjowO3M6ODoiY291cG9uSWQiO047czoxNToicHJvbW90aW9uQ29kZUlkIjtOO3M6MTk6ImFsbG93UHJvbW90aW9uQ29kZXMiO2I6MDt9fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjA7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoxOiIqIjt9fXM6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjEyMToiaHR0cHM6Ly9paW0tbHVja25vdy5ld2lpZGluZS5jYS9tYW5pZmVzdC5qc29uP2hhc2g9bW9tcy1iaXJ5YW5pJnVybD1yZXN0YXVyYW50JTJGdGFibGUlMkY2MzMwNzFmZWNhNThhM2M5OGU2ZTg2ZGQwZTM5YWJkYyI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fXM6MjA6ImNoZWNrX21pZ3JhdGVfc3RhdHVzIjtzOjQ6Ikdvb2QiO30=', '1760539196'),
('dK66N0SEImi93uETgBXjVcgE6Pwj0YKhZ5gg0x4V', NULL, '18.197.38.142', 'Mozilla/5.0 (Linux i386; X11) Gecko/20010102 Firefox/16.0', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiVzdEdU5OeXdiakcxd1Q2UW1PcFRCM1lVZmNwTnREWmZFbWN1QUZRdiI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTg6Imh0dHA6Ly9ld2lpZGluZS5jYSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', '1760549483'),
('DQGShw4NWPGk38Rn8eXhiP2pIYpNfqebMwBTj0EH', NULL, '74.208.165.42', 'GuzzleHttp/7', 'YToyOntzOjY6Il90b2tlbiI7czo0MDoiS1JoM0l4VllkdUwxS0h2UHFTOE5qY2NhMHFrQUp5WFJDejIxd0h0TCI7czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', '1760554989'),
('dTLlyFuun8B3CHBSUX4akKk5iDcZevnn1OtiCIto', NULL, '45.148.10.203', '', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiWTBCYWE2WFo3MmNCSGFmdGlqNVZKWHFZbVV4amNQOHlTWnF4UDByaSI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTg6Imh0dHA6Ly9ld2lpZGluZS5jYSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', '1760541089'),
('hAw03rE3EDthmcMSr8N6yOOiNRP83I9BhwsSLUoX', NULL, '43.157.158.178', 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiQU92NnpMUHVDU2ROYlRuU3VNZEJHRVhzWjRRNFc4OUFLWVc5WVU1QSI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjI6Imh0dHA6Ly93d3cuZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760540723'),
('Hk7zsnHOs0NkTWkN2ANd6zLJRpPL3XzEtwYvtxxE', '1', '106.219.149.18', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Safari/605.1.15', 'YToxNDp7czo2OiJfdG9rZW4iO3M6NDA6ImRTeWtFTk5GSWhDa3hpdUh2bnpzZXdMZVk3V0lMeGl5YjdLQjV1VkkiO3M6MzoidXJsIjthOjE6e3M6ODoiaW50ZW5kZWQiO3M6NDE6Imh0dHBzOi8vZXdpaWRpbmUuY2Evc3VwZXItYWRtaW4tZGFzaGJvYXJkIjt9czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NTc6Imh0dHBzOi8vZXdpaWRpbmUuY2EvbWFuaWZlc3QuanNvbj91cmw9c3VwZXJhZG1pbi1zZXR0aW5ncyI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fXM6MjA6ImNoZWNrX21pZ3JhdGVfc3RhdHVzIjtzOjQ6Ikdvb2QiO3M6MTU6ImN1c3RvbWVyX2lzX3J0bCI7aTowO3M6NDoidXNlciI7TzoxNToiQXBwXE1vZGVsc1xVc2VyIjozNjp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czo1OiJ1c2VycyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjI0OntzOjI6ImlkIjtpOjE7czoxMzoicmVzdGF1cmFudF9pZCI7TjtzOjk6ImJyYW5jaF9pZCI7TjtzOjQ6Im5hbWUiO3M6MTE6IkVtbWEgSG9sZGVuIjtzOjU6ImVtYWlsIjtzOjIyOiJzdXBlcmFkbWluQGV4YW1wbGUuY29tIjtzOjEyOiJwaG9uZV9udW1iZXIiO3M6MTE6IjE4MDA0NTQyODI3IjtzOjEwOiJwaG9uZV9jb2RlIjtzOjE6IjEiO3M6MjY6InRlcm1zX2FuZF9wcml2YWN5X2FjY2VwdGVkIjtpOjA7czoyNToibWFya2V0aW5nX2VtYWlsc19hY2NlcHRlZCI7aTowO3M6MTc6ImVtYWlsX3ZlcmlmaWVkX2F0IjtOO3M6ODoicGFzc3dvcmQiO3M6NjA6IiQyeSQxMiRTRy5mS0RTYXZOTWZNY25FbVF2RzMuUm5WWFI5MWlvZzV2cFNwMDRrVHM4NTNNOEhtYmR2cSI7czoxNzoidHdvX2ZhY3Rvcl9zZWNyZXQiO047czoyNToidHdvX2ZhY3Rvcl9yZWNvdmVyeV9jb2RlcyI7TjtzOjIzOiJ0d29fZmFjdG9yX2NvbmZpcm1lZF9hdCI7TjtzOjE0OiJyZW1lbWJlcl90b2tlbiI7TjtzOjE1OiJjdXJyZW50X3RlYW1faWQiO047czoxODoicHJvZmlsZV9waG90b19wYXRoIjtOO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMDktMTcgMDU6MzY6NDMiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTAtMTUgMTQ6Mjg6MzEiO3M6NjoibG9jYWxlIjtzOjI6ImVuIjtzOjk6InN0cmlwZV9pZCI7TjtzOjc6InBtX3R5cGUiO047czoxMjoicG1fbGFzdF9mb3VyIjtOO3M6MTM6InRyaWFsX2VuZHNfYXQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjI0OntzOjI6ImlkIjtpOjE7czoxMzoicmVzdGF1cmFudF9pZCI7TjtzOjk6ImJyYW5jaF9pZCI7TjtzOjQ6Im5hbWUiO3M6MTE6IkVtbWEgSG9sZGVuIjtzOjU6ImVtYWlsIjtzOjIyOiJzdXBlcmFkbWluQGV4YW1wbGUuY29tIjtzOjEyOiJwaG9uZV9udW1iZXIiO3M6MTE6IjE4MDA0NTQyODI3IjtzOjEwOiJwaG9uZV9jb2RlIjtzOjE6IjEiO3M6MjY6InRlcm1zX2FuZF9wcml2YWN5X2FjY2VwdGVkIjtpOjA7czoyNToibWFya2V0aW5nX2VtYWlsc19hY2NlcHRlZCI7aTowO3M6MTc6ImVtYWlsX3ZlcmlmaWVkX2F0IjtOO3M6ODoicGFzc3dvcmQiO3M6NjA6IiQyeSQxMiRTRy5mS0RTYXZOTWZNY25FbVF2RzMuUm5WWFI5MWlvZzV2cFNwMDRrVHM4NTNNOEhtYmR2cSI7czoxNzoidHdvX2ZhY3Rvcl9zZWNyZXQiO047czoyNToidHdvX2ZhY3Rvcl9yZWNvdmVyeV9jb2RlcyI7TjtzOjIzOiJ0d29fZmFjdG9yX2NvbmZpcm1lZF9hdCI7TjtzOjE0OiJyZW1lbWJlcl90b2tlbiI7TjtzOjE1OiJjdXJyZW50X3RlYW1faWQiO047czoxODoicHJvZmlsZV9waG90b19wYXRoIjtOO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMDktMTcgMDU6MzY6NDMiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTAtMTUgMTQ6Mjg6MzEiO3M6NjoibG9jYWxlIjtzOjI6ImVuIjtzOjk6InN0cmlwZV9pZCI7TjtzOjc6InBtX3R5cGUiO047czoxMjoicG1fbGFzdF9mb3VyIjtOO3M6MTM6InRyaWFsX2VuZHNfYXQiO047fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjY6e3M6MTc6ImVtYWlsX3ZlcmlmaWVkX2F0IjtzOjg6ImRhdGV0aW1lIjtzOjg6InBhc3N3b3JkIjtzOjY6Imhhc2hlZCI7czoxMzoicmVzdGF1cmFudF9pZCI7czo3OiJpbnRlZ2VyIjtzOjk6ImJyYW5jaF9pZCI7czo3OiJpbnRlZ2VyIjtzOjI2OiJ0ZXJtc19hbmRfcHJpdmFjeV9hY2NlcHRlZCI7czo3OiJib29sZWFuIjtzOjI1OiJtYXJrZXRpbmdfZW1haWxzX2FjY2VwdGVkIjtzOjc6ImJvb2xlYW4iO31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MTp7aTowO3M6MTc6InByb2ZpbGVfcGhvdG9fdXJsIjt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YToxOntzOjU6InJvbGVzIjtPOjM5OiJJbGx1bWluYXRlXERhdGFiYXNlXEVsb3F1ZW50XENvbGxlY3Rpb24iOjI6e3M6ODoiACoAaXRlbXMiO2E6MTp7aTowO086Mjk6IlNwYXRpZVxQZXJtaXNzaW9uXE1vZGVsc1xSb2xlIjozMzp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czo1OiJyb2xlcyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjc6e3M6MjoiaWQiO2k6MTtzOjQ6Im5hbWUiO3M6MTE6IlN1cGVyIEFkbWluIjtzOjEyOiJkaXNwbGF5X25hbWUiO3M6MTE6IlN1cGVyIEFkbWluIjtzOjEwOiJndWFyZF9uYW1lIjtzOjM6IndlYiI7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0wOS0xNyAwNTozNjo0MyI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0wOS0xNyAwNTozNjo0MyI7czoxMzoicmVzdGF1cmFudF9pZCI7Tjt9czoxMToiACoAb3JpZ2luYWwiO2E6MTA6e3M6MjoiaWQiO2k6MTtzOjQ6Im5hbWUiO3M6MTE6IlN1cGVyIEFkbWluIjtzOjEyOiJkaXNwbGF5X25hbWUiO3M6MTE6IlN1cGVyIEFkbWluIjtzOjEwOiJndWFyZF9uYW1lIjtzOjM6IndlYiI7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0wOS0xNyAwNTozNjo0MyI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0wOS0xNyAwNTozNjo0MyI7czoxMzoicmVzdGF1cmFudF9pZCI7TjtzOjE0OiJwaXZvdF9tb2RlbF9pZCI7aToxO3M6MTM6InBpdm90X3JvbGVfaWQiO2k6MTtzOjE2OiJwaXZvdF9tb2RlbF90eXBlIjtzOjE1OiJBcHBcTW9kZWxzXFVzZXIiO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YTowOnt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjE6e3M6NToicGl2b3QiO086NDk6IklsbHVtaW5hdGVcRGF0YWJhc2VcRWxvcXVlbnRcUmVsYXRpb25zXE1vcnBoUGl2b3QiOjM5OntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjE1OiJtb2RlbF9oYXNfcm9sZXMiO3M6MTM6IgAqAHByaW1hcnlLZXkiO3M6MjoiaWQiO3M6MTA6IgAqAGtleVR5cGUiO3M6MzoiaW50IjtzOjEyOiJpbmNyZW1lbnRpbmciO2I6MDtzOjc6IgAqAHdpdGgiO2E6MDp7fXM6MTI6IgAqAHdpdGhDb3VudCI7YTowOnt9czoxOToicHJldmVudHNMYXp5TG9hZGluZyI7YjowO3M6MTA6IgAqAHBlclBhZ2UiO2k6MTU7czo2OiJleGlzdHMiO2I6MTtzOjE4OiJ3YXNSZWNlbnRseUNyZWF0ZWQiO2I6MDtzOjI4OiIAKgBlc2NhcGVXaGVuQ2FzdGluZ1RvU3RyaW5nIjtiOjA7czoxMzoiACoAYXR0cmlidXRlcyI7YTozOntzOjEwOiJtb2RlbF90eXBlIjtzOjE1OiJBcHBcTW9kZWxzXFVzZXIiO3M6ODoibW9kZWxfaWQiO2k6MTtzOjc6InJvbGVfaWQiO2k6MTt9czoxMToiACoAb3JpZ2luYWwiO2E6Mzp7czoxMDoibW9kZWxfdHlwZSI7czoxNToiQXBwXE1vZGVsc1xVc2VyIjtzOjg6Im1vZGVsX2lkIjtpOjE7czo3OiJyb2xlX2lkIjtpOjE7fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjA6e31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MDp7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjA7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YTowOnt9czoxMToicGl2b3RQYXJlbnQiO086MTU6IkFwcFxNb2RlbHNcVXNlciI6MzY6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6NToidXNlcnMiO3M6MTM6IgAqAHByaW1hcnlLZXkiO3M6MjoiaWQiO3M6MTA6IgAqAGtleVR5cGUiO3M6MzoiaW50IjtzOjEyOiJpbmNyZW1lbnRpbmciO2I6MTtzOjc6IgAqAHdpdGgiO2E6MDp7fXM6MTI6IgAqAHdpdGhDb3VudCI7YTowOnt9czoxOToicHJldmVudHNMYXp5TG9hZGluZyI7YjowO3M6MTA6IgAqAHBlclBhZ2UiO2k6MTU7czo2OiJleGlzdHMiO2I6MDtzOjE4OiJ3YXNSZWNlbnRseUNyZWF0ZWQiO2I6MDtzOjI4OiIAKgBlc2NhcGVXaGVuQ2FzdGluZ1RvU3RyaW5nIjtiOjA7czoxMzoiACoAYXR0cmlidXRlcyI7YTowOnt9czoxMToiACoAb3JpZ2luYWwiO2E6MDp7fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjY6e3M6MTc6ImVtYWlsX3ZlcmlmaWVkX2F0IjtzOjg6ImRhdGV0aW1lIjtzOjg6InBhc3N3b3JkIjtzOjY6Imhhc2hlZCI7czoxMzoicmVzdGF1cmFudF9pZCI7czo3OiJpbnRlZ2VyIjtzOjk6ImJyYW5jaF9pZCI7czo3OiJpbnRlZ2VyIjtzOjI2OiJ0ZXJtc19hbmRfcHJpdmFjeV9hY2NlcHRlZCI7czo3OiJib29sZWFuIjtzOjI1OiJtYXJrZXRpbmdfZW1haWxzX2FjY2VwdGVkIjtzOjc6ImJvb2xlYW4iO31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MTp7aTowO3M6MTc6InByb2ZpbGVfcGhvdG9fdXJsIjt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YTowOnt9czoxMDoiACoAdG91Y2hlcyI7YTowOnt9czoyNzoiACoAcmVsYXRpb25BdXRvbG9hZENhbGxiYWNrIjtOO3M6MjY6IgAqAHJlbGF0aW9uQXV0b2xvYWRDb250ZXh0IjtOO3M6MTA6InRpbWVzdGFtcHMiO2I6MTtzOjEzOiJ1c2VzVW5pcXVlSWRzIjtiOjA7czo5OiIAKgBoaWRkZW4iO2E6NDp7aTowO3M6ODoicGFzc3dvcmQiO2k6MTtzOjE0OiJyZW1lbWJlcl90b2tlbiI7aToyO3M6MjU6InR3b19mYWN0b3JfcmVjb3ZlcnlfY29kZXMiO2k6MztzOjE3OiJ0d29fZmFjdG9yX3NlY3JldCI7fXM6MTA6IgAqAHZpc2libGUiO2E6MDp7fXM6MTE6IgAqAGZpbGxhYmxlIjthOjEwOntpOjA7czo0OiJuYW1lIjtpOjE7czo1OiJlbWFpbCI7aToyO3M6ODoicGFzc3dvcmQiO2k6MztzOjk6ImJyYW5jaF9pZCI7aTo0O3M6MTM6InJlc3RhdXJhbnRfaWQiO2k6NTtzOjY6ImxvY2FsZSI7aTo2O3M6MTI6InBob25lX251bWJlciI7aTo3O3M6MTA6InBob25lX2NvZGUiO2k6ODtzOjI2OiJ0ZXJtc19hbmRfcHJpdmFjeV9hY2NlcHRlZCI7aTo5O3M6MjU6Im1hcmtldGluZ19lbWFpbHNfYWNjZXB0ZWQiO31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjE6IioiO31zOjE5OiIAKgBhdXRoUGFzc3dvcmROYW1lIjtzOjg6InBhc3N3b3JkIjtzOjIwOiIAKgByZW1lbWJlclRva2VuTmFtZSI7czoxNDoicmVtZW1iZXJfdG9rZW4iO3M6MTQ6IgAqAGFjY2Vzc1Rva2VuIjtOO31zOjEyOiJwaXZvdFJlbGF0ZWQiO086Mjk6IlNwYXRpZVxQZXJtaXNzaW9uXE1vZGVsc1xSb2xlIjozMzp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czo1OiJyb2xlcyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjowO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjE6e3M6MTA6Imd1YXJkX25hbWUiO3M6Mzoid2ViIjt9czoxMToiACoAb3JpZ2luYWwiO2E6MDp7fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjA6e31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MDp7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoyOiJpZCI7fX1zOjEzOiIAKgBmb3JlaWduS2V5IjtzOjg6Im1vZGVsX2lkIjtzOjEzOiIAKgByZWxhdGVkS2V5IjtzOjc6InJvbGVfaWQiO3M6MTI6IgAqAG1vcnBoVHlwZSI7czoxMDoibW9kZWxfdHlwZSI7czoxMzoiACoAbW9ycGhDbGFzcyI7czoxNToiQXBwXE1vZGVsc1xVc2VyIjt9fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoyOiJpZCI7fX19czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO319czoxMDoiACoAdG91Y2hlcyI7YTowOnt9czoyNzoiACoAcmVsYXRpb25BdXRvbG9hZENhbGxiYWNrIjtOO3M6MjY6IgAqAHJlbGF0aW9uQXV0b2xvYWRDb250ZXh0IjtOO3M6MTA6InRpbWVzdGFtcHMiO2I6MTtzOjEzOiJ1c2VzVW5pcXVlSWRzIjtiOjA7czo5OiIAKgBoaWRkZW4iO2E6NDp7aTowO3M6ODoicGFzc3dvcmQiO2k6MTtzOjE0OiJyZW1lbWJlcl90b2tlbiI7aToyO3M6MjU6InR3b19mYWN0b3JfcmVjb3ZlcnlfY29kZXMiO2k6MztzOjE3OiJ0d29fZmFjdG9yX3NlY3JldCI7fXM6MTA6IgAqAHZpc2libGUiO2E6MDp7fXM6MTE6IgAqAGZpbGxhYmxlIjthOjEwOntpOjA7czo0OiJuYW1lIjtpOjE7czo1OiJlbWFpbCI7aToyO3M6ODoicGFzc3dvcmQiO2k6MztzOjk6ImJyYW5jaF9pZCI7aTo0O3M6MTM6InJlc3RhdXJhbnRfaWQiO2k6NTtzOjY6ImxvY2FsZSI7aTo2O3M6MTI6InBob25lX251bWJlciI7aTo3O3M6MTA6InBob25lX2NvZGUiO2k6ODtzOjI2OiJ0ZXJtc19hbmRfcHJpdmFjeV9hY2NlcHRlZCI7aTo5O3M6MjU6Im1hcmtldGluZ19lbWFpbHNfYWNjZXB0ZWQiO31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjE6IioiO31zOjE5OiIAKgBhdXRoUGFzc3dvcmROYW1lIjtzOjg6InBhc3N3b3JkIjtzOjIwOiIAKgByZW1lbWJlclRva2VuTmFtZSI7czoxNDoicmVtZW1iZXJfdG9rZW4iO3M6MTQ6IgAqAGFjY2Vzc1Rva2VuIjtOO31zOjUwOiJsb2dpbl93ZWJfNTliYTM2YWRkYzJiMmY5NDAxNTgwZjAxNGM3ZjU4ZWE0ZTMwOTg5ZCI7aToxO3M6MTY6InJvbGVfcGVybWlzc2lvbnMiO2E6MDp7fXM6MTc6InBhc3N3b3JkX2hhc2hfd2ViIjtzOjYwOiIkMnkkMTIkU0cuZktEU2F2Tk1mTWNuRW1RdkczLlJuVlhSOTFpb2c1dnBTcDA0a1RzODUzTThIbWJkdnEiO3M6MTI6InNtdHBfc2V0dGluZyI7TzoyMzoiQXBwXE1vZGVsc1xFbWFpbFNldHRpbmciOjMzOntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjE0OiJlbWFpbF9zZXR0aW5ncyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjE0OntzOjI6ImlkIjtpOjE7czoxNDoibWFpbF9mcm9tX25hbWUiO3M6OToiRXdpaSBEaW5lIjtzOjE1OiJtYWlsX2Zyb21fZW1haWwiO3M6MjE6Im5vLXJlcGx5QGV3aWlkaW5lLmNvbSI7czoxMjoiZW5hYmxlX3F1ZXVlIjtzOjI6Im5vIjtzOjExOiJtYWlsX2RyaXZlciI7czo0OiJzbXRwIjtzOjk6InNtdHBfaG9zdCI7czoxMzoic2VuZC5zbXRwLmNvbSI7czo5OiJzbXRwX3BvcnQiO2k6NDY1O3M6MTU6InNtdHBfZW5jcnlwdGlvbiI7czozOiJzc2wiO3M6MTM6Im1haWxfdXNlcm5hbWUiO3M6MTM6ImV3aWlzb2x1dGlvbnMiO3M6MTM6Im1haWxfcGFzc3dvcmQiO3M6MjA6ImhleHB5ZC03cGVreGktcnlGZG9zIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTA5LTE3IDA1OjM2OjQ0IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTA5LTIwIDE0OjI1OjQzIjtzOjE0OiJlbWFpbF92ZXJpZmllZCI7aTowO3M6ODoidmVyaWZpZWQiO2k6MTt9czoxMToiACoAb3JpZ2luYWwiO2E6MTQ6e3M6MjoiaWQiO2k6MTtzOjE0OiJtYWlsX2Zyb21fbmFtZSI7czo5OiJFd2lpIERpbmUiO3M6MTU6Im1haWxfZnJvbV9lbWFpbCI7czoyMToibm8tcmVwbHlAZXdpaWRpbmUuY29tIjtzOjEyOiJlbmFibGVfcXVldWUiO3M6Mjoibm8iO3M6MTE6Im1haWxfZHJpdmVyIjtzOjQ6InNtdHAiO3M6OToic210cF9ob3N0IjtzOjEzOiJzZW5kLnNtdHAuY29tIjtzOjk6InNtdHBfcG9ydCI7czozOiI0NjUiO3M6MTU6InNtdHBfZW5jcnlwdGlvbiI7czozOiJzc2wiO3M6MTM6Im1haWxfdXNlcm5hbWUiO3M6MTM6ImV3aWlzb2x1dGlvbnMiO3M6MTM6Im1haWxfcGFzc3dvcmQiO3M6MjA6ImhleHB5ZC03cGVreGktcnlGZG9zIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTA5LTE3IDA1OjM2OjQ0IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTA5LTIwIDE0OjI1OjQzIjtzOjE0OiJlbWFpbF92ZXJpZmllZCI7aTowO3M6ODoidmVyaWZpZWQiO2k6MTt9czoxMDoiACoAY2hhbmdlcyI7YTowOnt9czoxMToiACoAcHJldmlvdXMiO2E6MDp7fXM6ODoiACoAY2FzdHMiO2E6MDp7fXM6MTc6IgAqAGNsYXNzQ2FzdENhY2hlIjthOjA6e31zOjIxOiIAKgBhdHRyaWJ1dGVDYXN0Q2FjaGUiO2E6MDp7fXM6MTM6IgAqAGRhdGVGb3JtYXQiO047czoxMDoiACoAYXBwZW5kcyI7YTowOnt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YTowOnt9czoxMDoiACoAdG91Y2hlcyI7YTowOnt9czoyNzoiACoAcmVsYXRpb25BdXRvbG9hZENhbGxiYWNrIjtOO3M6MjY6IgAqAHJlbGF0aW9uQXV0b2xvYWRDb250ZXh0IjtOO3M6MTA6InRpbWVzdGFtcHMiO2I6MTtzOjEzOiJ1c2VzVW5pcXVlSWRzIjtiOjA7czo5OiIAKgBoaWRkZW4iO2E6MDp7fXM6MTA6IgAqAHZpc2libGUiO2E6MDp7fXM6MTE6IgAqAGZpbGxhYmxlIjthOjA6e31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjI6ImlkIjt9fXM6ODoidGltZXpvbmUiO3M6MTI6IkFzaWEvS29sa2F0YSI7czozMToiZ2xvYmFsX2N1cnJlbmN5X2Zvcm1hdF9zZXR0aW5nNSI7TzoyNToiQXBwXE1vZGVsc1xHbG9iYWxDdXJyZW5jeSI6MzQ6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6MTc6Imdsb2JhbF9jdXJyZW5jaWVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MTU6e3M6MjoiaWQiO2k6NTtzOjEzOiJjdXJyZW5jeV9uYW1lIjtzOjE1OiJDYW5hZGlhbiBEb2xsYXIiO3M6MTU6ImN1cnJlbmN5X3N5bWJvbCI7czoxOiIkIjtzOjEzOiJjdXJyZW5jeV9jb2RlIjtzOjM6IkNBRCI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO3M6NDoibGVmdCI7czoxMzoibm9fb2ZfZGVjaW1hbCI7aToyO3M6MTg6InRob3VzYW5kX3NlcGFyYXRvciI7czoxOiIsIjtzOjE3OiJkZWNpbWFsX3NlcGFyYXRvciI7czoxOiIuIjtzOjY6InN0YXR1cyI7czo2OiJlbmFibGUiO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMDktMTcgMDY6MTI6MzgiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMDktMTcgMDY6MTI6MzgiO3M6MTA6ImRlbGV0ZWRfYXQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjE1OntzOjI6ImlkIjtpOjU7czoxMzoiY3VycmVuY3lfbmFtZSI7czoxNToiQ2FuYWRpYW4gRG9sbGFyIjtzOjE1OiJjdXJyZW5jeV9zeW1ib2wiO3M6MToiJCI7czoxMzoiY3VycmVuY3lfY29kZSI7czozOiJDQUQiO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO047czo5OiJ1c2RfcHJpY2UiO047czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6Mjoibm8iO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjQ6ImxlZnQiO3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6MjtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO3M6MToiLCI7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO3M6MToiLiI7czo2OiJzdGF0dXMiO3M6NjoiZW5hYmxlIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTA5LTE3IDA2OjEyOjM4IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTA5LTE3IDA2OjEyOjM4IjtzOjEwOiJkZWxldGVkX2F0IjtOO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YToyOntzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czo3OiJib29sZWFuIjtzOjEwOiJkZWxldGVkX2F0IjtzOjg6ImRhdGV0aW1lIjt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjA6e31zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MTE6e2k6MDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtpOjE7czoxNToiY3VycmVuY3lfc3ltYm9sIjtpOjI7czoxMzoiY3VycmVuY3lfY29kZSI7aTozO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO2k6NDtzOjk6InVzZF9wcmljZSI7aTo1O3M6MTc6ImlzX2NyeXB0b2N1cnJlbmN5IjtpOjY7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO2k6NztzOjEzOiJub19vZl9kZWNpbWFsIjtpOjg7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtpOjk7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO2k6MTA7czo2OiJzdGF0dXMiO31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjE6IioiO31zOjE2OiIAKgBmb3JjZURlbGV0aW5nIjtiOjA7fXM6NToiaXNSdGwiO2I6MDt9', '1760558196'),
('kN2Ze8AMCFce3xaMlAmNvh1BkP6Y6oiLKmWTZwLZ', NULL, '51.161.37.12', 'Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoibThYVjRiSm80SUk1ZE0zTzhseVhqSkVtY2Y5ZXlIdzJLMXNhaHVEMiI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTk6Imh0dHBzOi8vZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760537218'),
('LZyMA2bRAFtdPUD8b2mDT83WyiOrZQA8VEJGreoT', NULL, '43.153.7.191', 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiRzlMWG8wcVhZcW9pNlZOdnFEbFlveWNDN0c3OUI3V0VwaEU0SjY0OSI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTk6Imh0dHBzOi8vZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760551285'),
('MBx3WZ0bmDz2VmsnBiH0Q1nc0sAnfw60dSeqXCjQ', NULL, '43.159.152.187', 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiNkU1a2NFNWlWbkM0UE1EU2JRYmNIZVZHYWNWNndhRjdaSG5WeTBheCI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTk6Imh0dHBzOi8vZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760548863'),
('pMJjgNvcy6vuSNtA516XtU9KbZsRdztoUIgnSTvj', NULL, '45.148.10.203', '', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoickhiRXgyYW1NazE2RlZvNWhma3FOeHZEempUc0pnaVhUclA3U21odCI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjM6Imh0dHBzOi8vd3d3LmV3aWlkaW5lLmNhIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', '1760542031'),
('PmR1ZjHkI4cC8fXsrxMI3coF0CSksmTLEagyTBF3', NULL, '124.198.131.108', 'Mozilla/5.0 (Linux; Android 10; Mi MIX 3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.117 Mobile Safari/537.36,gzip(gfe),gzip(gfe)', 'YTo2OntzOjY6Il90b2tlbiI7czo0MDoibm5WVE94UVFwUnplNXRxd1NaNXA5aEloZzNrV0JibXVBM2JzQU55bSI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtpOjA7czo0OiJ1c2VyIjtOO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjI2OiJodHRwczovL2V3aWlkaW5lLmNhL3NpZ25pbiI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', '1760544993'),
('qWTEV5Dvktdry2imvmUJF3fqcp83Uj8Gt0BGt0T8', NULL, '93.158.91.19', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiTnZienB3czZlamlMZWJPZ2VTcGZ1eWtKQWtrMU1ESW5kR08ySDhvYyI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTk6Imh0dHBzOi8vZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760545837'),
('rDTZ4YaJ9nAg7iNh8K5omS5W2eoZb1GkaZ2MCJTA', NULL, '45.148.10.203', '', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiU2lqTzVZY2RaWGpIV1hTczVrekpIbVUwNzhoWjQ0NG5heTZjYXVTaSI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTg6Imh0dHA6Ly9ld2lpZGluZS5jYSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', '1760541109'),
('rxynRTMPXNJkIFljhR4fe6kwBfMtrqwOneRCxy8h', NULL, '43.159.152.184', 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1', 'YTo2OntzOjY6Il90b2tlbiI7czo0MDoiOXhySHczQ0M1S3U3T05ETnloS3k5VWlYWEdUdUV0eGlWZElDRURjYyI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo0OiJ1c2VyIjtOO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjM3OiJodHRwczovL2V3aWlkaW5lLmNhL3Jlc3RhdXJhbnQtc2lnbnVwIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', '1760547450'),
('sJ9Q4PVOaWjDDLjyWE1734YEqMLdAqVdyL9KXXaB', NULL, '124.198.131.108', 'Mozilla/5.0 (Linux; Android 10; Mi MIX 3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.117 Mobile Safari/537.36,gzip(gfe),gzip(gfe)', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoiWkVSTTJiV1BLNVRoQzhaZFZrMDJDZ21IVW9oWTRMOFFNSnZNbkJSWSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjU6Imh0dHBzOi8vZXdpaWRpbmUuY2EvbG9naW4iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760544992'),
('T8A2wkdYXfZHuMEWSF6dr4IedBPL78B5NUTvjG2o', NULL, '45.148.10.203', '', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiYm5meDBmdGl1ZkNCcXF1MkllRTIwRWFkTjdxSlJnUU90UnlEWVF4ZCI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTk6Imh0dHBzOi8vZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760541101'),
('TOXgkRUa1NmVF281jDRob4WndNYuS3ODEnn024oY', NULL, '45.148.10.203', '', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiS1IxbEFQN2RjSFlwQ1VYazlHSkQzd2tSUFJNZHkyTEc5cFh4cHo4MCI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTg6Imh0dHA6Ly9ld2lpZGluZS5jYSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', '1760541116'),
('TXJtQJ28HltHPTUXtz7Wyru0im4ULn95B4AT6yEK', NULL, '45.148.10.203', '', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiVzQwZXpOcGlUbkpCdVVtUHR5WDVESVhWR3VmV2ZiTmhWcFppdXF0dyI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjI6Imh0dHA6Ly93d3cuZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760542039'),
('UNEEUMkcgemBo4PLLhV0ZyNKLKU0yaCdTPky9erE', NULL, '43.166.244.66', 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiRVBHTlhCZDdjdWJVZjA4b0p5SGl0VEFuOTZXemVFSUpUS3k0cTMwOSI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTk6Imh0dHBzOi8vZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760550461'),
('vKTTU56lQmQKhAJlEqRZmaDOXwuHawrGMldXOvjt', NULL, '43.130.72.177', 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiOE12eTdYWU04ajBNSU8zZWh1cUY4RURkYWR6RU1nUlpxUHppVk5BNCI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vZXdpaWRpbmUuY2EvbWFuaWZlc3QuanNvbiI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', '1760549550'),
('VkVnOknwBSy4FgPiEYaD8142HqmZt9XqjdEyAvql', NULL, '88.80.26.2', 'Mozilla/5.0 (Linux; Android 10; Mi MIX 3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.117 Mobile Safari/537.36,gzip(gfe),gzip(gfe)', 'YTo2OntzOjY6Il90b2tlbiI7czo0MDoiVmJYVTZjTFdvcVczcG9FZHp0ZTlKYjg5a3FSdUNrOTZxOUdabmx6MyI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo0OiJ1c2VyIjtOO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjM3OiJodHRwczovL2V3aWlkaW5lLmNhL3Jlc3RhdXJhbnQtc2lnbnVwIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', '1760544995'),
('W2cShL9zykgQ6wWN8aiUgjCsXPON0CVtrCD2w0BQ', NULL, '3.96.152.184', 'Mozilla/5.0 (Linux x86_64; X11) Gecko/20040512 Firefox/23.0', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoiVnlaOUh6V2NXNFZiOUxrSHNTVzdLNXlFSWdoSWdiNnZNOXBPWXM5diI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzA6Imh0dHA6Ly9jcGNhbGVuZGFycy5ld2lpZGluZS5jYSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', '1760554059'),
('wxlLnmLI50OnMPCgOElmHHcI9qsDWRrS2geh1DcP', NULL, '134.122.111.148', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiWmo2NkNHMW1PUlJRcVFqeEdLT1d3cTZoczRuSDJCWmNSbEwwMjFVVyI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzU6Imh0dHBzOi8vd3d3LmV3aWlkaW5lLmNhLmV3aWlkaW5lLmNhIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', '1760539306'),
('YYiznNt7s1lEwPFei0WmCvsWpPSCIrR43RwDYJNe', NULL, '134.122.111.148', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiYXl4cHpHWFl1MkNOZFlYc0o5Z014QllXZlRJRXhFWUhHeVVNRHlZaiI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzQ6Imh0dHA6Ly93d3cuZXdpaWRpbmUuY2EuZXdpaWRpbmUuY2EiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1760539304'),
('Zg1ngIRLuivc5W4PsR5B9JyMOjNsA40xMUzocZya', NULL, '45.148.10.203', '', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiQmVyRXdGbTRqZjlOQThaWkJrMHlYbm5neXRXRFVzQVpmaWoxRHk0biI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTg6Imh0dHA6Ly9ld2lpZGluZS5jYSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', '1760541125');


-- Table structure for table `split_order_items`
DROP TABLE IF EXISTS `split_order_items`;
CREATE TABLE `split_order_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `split_order_id` bigint(20) unsigned NOT NULL,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `quantity` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `split_order_items_split_order_id_foreign` (`split_order_id`),
  KEY `split_order_items_order_item_id_foreign` (`order_item_id`),
  CONSTRAINT `split_order_items_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE,
  CONSTRAINT `split_order_items_split_order_id_foreign` FOREIGN KEY (`split_order_id`) REFERENCES `split_orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `split_orders`
DROP TABLE IF EXISTS `split_orders`;
CREATE TABLE `split_orders` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `amount` decimal(16,2) NOT NULL,
  `status` enum('pending','paid') NOT NULL DEFAULT 'pending',
  `payment_method` enum('cash','upi','card','bank_transfer','due','stripe','razorpay') NOT NULL DEFAULT 'cash',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `split_orders_order_id_foreign` (`order_id`),
  CONSTRAINT `split_orders_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `stripe_payments`
DROP TABLE IF EXISTS `stripe_payments`;
CREATE TABLE `stripe_payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `payment_date` datetime DEFAULT NULL,
  `amount` decimal(16,2) DEFAULT NULL,
  `payment_status` enum('pending','requested','declined','completed') NOT NULL DEFAULT 'pending',
  `payment_error_response` text DEFAULT NULL,
  `stripe_payment_intent` varchar(191) DEFAULT NULL,
  `stripe_session_id` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `stripe_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `stripe_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `sub_domain_module_settings`
DROP TABLE IF EXISTS `sub_domain_module_settings`;
CREATE TABLE `sub_domain_module_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `license_type` varchar(20) DEFAULT NULL,
  `purchase_code` varchar(191) DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `banned_subdomain` longtext DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `sub_domain_module_settings`
INSERT INTO `sub_domain_module_settings` VALUES
('1', NULL, NULL, NULL, NULL, '[\"imap\",\"mail\",\"pop\",\"contact\",\"webmail\",\"git\",\"github\",\"api\",\"apis\",\"developer\",\"ticket\",\"tickets\",\"transfer\",\"smtp\",\"stripe\",\"support\",\"bank\",\"helpdesk\",\"pay\",\"paypal\",\"help\",\"payment\",\"payments\",\"invoices\",\"invoice\",\"billing\",\"accounts\",\"account\",\"secure\",\"securelogin\",\"auth\",\"register\",\"authenticate\",\"dev\",\"staging\",\"ftp\",\"svn\",\"mx\",\"ssh\",\"gitlab\",\"signup\",\"signin\",\"login\",\"test\",\"beta\",\"demo\",\"example\",\"localhost\",\"www\",\"www2\",\"ns1\",\"ns2\",\"cpanel\",\"controlpanel\",\"panel\",\"dashboard\",\"server\",\"host\",\"webmaster\",\"owner\",\"superadmin\",\"whm\",\"root\",\"administrator\",\"admin\"]', '1', '2025-09-17 05:48:36', '2025-10-15 14:25:07');


-- Table structure for table `superadmin_payment_gateways`
DROP TABLE IF EXISTS `superadmin_payment_gateways`;
CREATE TABLE `superadmin_payment_gateways` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `razorpay_type` enum('test','live') NOT NULL DEFAULT 'test',
  `test_razorpay_key` text DEFAULT NULL,
  `test_razorpay_secret` text DEFAULT NULL,
  `razorpay_test_webhook_key` text DEFAULT NULL,
  `live_razorpay_key` text DEFAULT NULL,
  `live_razorpay_secret` text DEFAULT NULL,
  `razorpay_live_webhook_key` text DEFAULT NULL,
  `razorpay_status` tinyint(1) NOT NULL DEFAULT 0,
  `stripe_type` enum('test','live') NOT NULL DEFAULT 'test',
  `test_stripe_key` text DEFAULT NULL,
  `test_stripe_secret` text DEFAULT NULL,
  `stripe_test_webhook_key` text DEFAULT NULL,
  `live_stripe_key` text DEFAULT NULL,
  `live_stripe_secret` text DEFAULT NULL,
  `stripe_live_webhook_key` text DEFAULT NULL,
  `stripe_status` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `flutterwave_status` tinyint(1) NOT NULL DEFAULT 0,
  `flutterwave_type` enum('test','live') NOT NULL DEFAULT 'test',
  `test_flutterwave_key` text DEFAULT NULL,
  `test_flutterwave_secret` text DEFAULT NULL,
  `test_flutterwave_hash` text DEFAULT NULL,
  `flutterwave_test_webhook_key` text DEFAULT NULL,
  `live_flutterwave_key` text DEFAULT NULL,
  `live_flutterwave_secret` text DEFAULT NULL,
  `live_flutterwave_hash` text DEFAULT NULL,
  `flutterwave_live_webhook_key` text DEFAULT NULL,
  `live_paypal_client_id` varchar(191) DEFAULT NULL,
  `live_paypal_secret` varchar(191) DEFAULT NULL,
  `test_paypal_client_id` varchar(191) DEFAULT NULL,
  `test_paypal_secret` varchar(191) DEFAULT NULL,
  `paypal_status` tinyint(1) NOT NULL DEFAULT 0,
  `paypal_mode` enum('sandbox','live') NOT NULL DEFAULT 'sandbox',
  `live_payfast_merchant_id` varchar(191) DEFAULT NULL,
  `live_payfast_merchant_key` varchar(191) DEFAULT NULL,
  `live_payfast_passphrase` varchar(191) DEFAULT NULL,
  `test_payfast_merchant_id` varchar(191) DEFAULT NULL,
  `test_payfast_merchant_key` varchar(191) DEFAULT NULL,
  `test_payfast_passphrase` varchar(191) DEFAULT NULL,
  `payfast_mode` enum('sandbox','live') NOT NULL DEFAULT 'sandbox',
  `payfast_status` tinyint(1) NOT NULL DEFAULT 0,
  `live_paystack_key` varchar(191) DEFAULT NULL,
  `live_paystack_secret` varchar(191) DEFAULT NULL,
  `live_paystack_merchant_email` varchar(191) DEFAULT NULL,
  `test_paystack_key` varchar(191) DEFAULT NULL,
  `test_paystack_secret` varchar(191) DEFAULT NULL,
  `test_paystack_merchant_email` varchar(191) DEFAULT NULL,
  `paystack_payment_url` varchar(191) DEFAULT 'https://api.paystack.co',
  `paystack_status` tinyint(1) NOT NULL DEFAULT 0,
  `paystack_mode` enum('sandbox','live') NOT NULL DEFAULT 'sandbox',
  `xendit_status` tinyint(1) NOT NULL DEFAULT 0,
  `xendit_mode` enum('sandbox','live') NOT NULL DEFAULT 'sandbox',
  `test_xendit_public_key` varchar(191) DEFAULT NULL,
  `test_xendit_secret_key` varchar(191) DEFAULT NULL,
  `live_xendit_public_key` varchar(191) DEFAULT NULL,
  `live_xendit_secret_key` varchar(191) DEFAULT NULL,
  `test_xendit_webhook_token` varchar(191) DEFAULT NULL,
  `live_xendit_webhook_token` varchar(191) DEFAULT NULL,
  `paddle_status` tinyint(1) NOT NULL DEFAULT 0,
  `paddle_mode` enum('sandbox','live') NOT NULL DEFAULT 'sandbox',
  `test_paddle_vendor_id` varchar(191) DEFAULT NULL,
  `test_paddle_api_key` text DEFAULT NULL,
  `test_paddle_public_key` varchar(191) DEFAULT NULL,
  `test_paddle_client_token` text DEFAULT NULL,
  `live_paddle_vendor_id` varchar(191) DEFAULT NULL,
  `live_paddle_api_key` text DEFAULT NULL,
  `live_paddle_public_key` varchar(191) DEFAULT NULL,
  `live_paddle_client_token` text DEFAULT NULL,
  `paddle_webhook_secret` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `superadmin_payment_gateways`
INSERT INTO `superadmin_payment_gateways` VALUES
('1', 'test', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'live', NULL, NULL, NULL, 'pk_live_51NPGeNILSMCMpdPIttt5OliSTx7PkaO7YNEjtPrQUQwYAu0qj3bibRPYoeeajzgzDPLhJjAFM528rr6HuO6r4hJO00qG1VilaK', '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', 'whsec_HqFoF3ek3uglplK22JZdJBAeUheRLTYf', '1', '2025-09-17 05:36:40', '2025-09-17 10:01:18', '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('2', 'test', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-09-17 05:36:44', '2025-09-17 05:36:44', '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);


-- Table structure for table `suppliers`
DROP TABLE IF EXISTS `suppliers`;
CREATE TABLE `suppliers` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned NOT NULL,
  `name` varchar(191) NOT NULL,
  `phone` varchar(191) DEFAULT NULL,
  `email` varchar(191) DEFAULT NULL,
  `address` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `suppliers_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `suppliers_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `table_sessions`
DROP TABLE IF EXISTS `table_sessions`;
CREATE TABLE `table_sessions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `table_id` bigint(20) unsigned NOT NULL,
  `locked_by_user_id` bigint(20) unsigned DEFAULT NULL,
  `locked_at` datetime DEFAULT NULL,
  `last_activity_at` datetime DEFAULT NULL,
  `session_token` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `table_sessions_session_token_unique` (`session_token`),
  KEY `table_sessions_branch_id_foreign` (`branch_id`),
  KEY `table_sessions_locked_by_user_id_foreign` (`locked_by_user_id`),
  KEY `table_sessions_table_id_locked_by_user_id_index` (`table_id`,`locked_by_user_id`),
  KEY `table_sessions_last_activity_at_index` (`last_activity_at`),
  CONSTRAINT `table_sessions_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `table_sessions_locked_by_user_id_foreign` FOREIGN KEY (`locked_by_user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `table_sessions_table_id_foreign` FOREIGN KEY (`table_id`) REFERENCES `tables` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `table_sessions`
INSERT INTO `table_sessions` VALUES
('1', '5', '6', '7', '2025-10-15 12:33:51', '2025-10-15 12:33:51', 'ykuM0B3jeDUXHTDZaPkXvReCOx1xMSbv', '2025-10-15 12:33:51', '2025-10-15 12:33:51');


-- Table structure for table `tables`
DROP TABLE IF EXISTS `tables`;
CREATE TABLE `tables` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `table_code` varchar(191) NOT NULL,
  `hash` varchar(191) NOT NULL,
  `status` enum('active','inactive') NOT NULL DEFAULT 'active',
  `available_status` enum('available','reserved','running') NOT NULL DEFAULT 'available',
  `area_id` bigint(20) unsigned NOT NULL,
  `seating_capacity` tinyint(3) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `tables_area_id_foreign` (`area_id`),
  KEY `tables_branch_id_foreign` (`branch_id`),
  CONSTRAINT `tables_area_id_foreign` FOREIGN KEY (`area_id`) REFERENCES `areas` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `tables_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `tables`
INSERT INTO `tables` VALUES
('1', '3', 'T01', 'fcfbd6476d8e9ec95bb92e8498cbcdee', 'active', 'available', '1', '4', '2025-09-20 12:24:08', '2025-09-20 12:27:46'),
('2', '3', 'R01', 'be9d3861e8d1be145d574b5cb2b7e473', 'active', 'available', '2', '6', '2025-09-20 12:24:21', '2025-09-20 12:24:21'),
('3', '4', 'T01', '4b5072f687db888baa5f463dafb2fe97', 'active', 'available', '3', '4', '2025-09-20 12:58:07', '2025-09-20 12:58:07'),
('4', '4', 'G01', 'ff6390377199c9342938d37fdb1ee0d7', 'active', 'available', '4', '6', '2025-09-20 12:58:41', '2025-09-20 12:58:41'),
('5', '5', 'TO1', '633071feca58a3c98e6e86dd0e39abdc', 'active', 'running', '6', '6', '2025-10-07 15:01:13', '2025-10-08 09:01:22'),
('6', '5', 'T02', '56353c6704324fda7014c3b83881af2d', 'active', 'running', '6', '3', '2025-10-07 15:39:05', '2025-10-15 12:34:09');


-- Table structure for table `taxes`
DROP TABLE IF EXISTS `taxes`;
CREATE TABLE `taxes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `tax_name` varchar(191) NOT NULL,
  `tax_percent` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `taxes_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `taxes_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `taxes`
INSERT INTO `taxes` VALUES
('1', '1', 'SGST', '2.5', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('2', '1', 'CGST', '2.5', '2025-09-17 05:36:44', '2025-09-17 05:36:44'),
('4', '3', 'GST', '9.975', '2025-09-20 13:02:32', '2025-09-20 13:02:32'),
('5', '3', 'HST', '5', '2025-09-20 13:03:45', '2025-09-20 13:03:45'),
('6', '4', 'CGST', '2.5', '2025-10-07 15:20:58', '2025-10-07 15:20:58'),
('7', '4', 'SGST', '2.5', '2025-10-07 15:21:08', '2025-10-07 15:21:08');


-- Table structure for table `units`
DROP TABLE IF EXISTS `units`;
CREATE TABLE `units` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `name` varchar(191) NOT NULL,
  `symbol` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `units_branch_id_foreign` (`branch_id`),
  CONSTRAINT `units_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `units`
INSERT INTO `units` VALUES
('1', '1', 'Kilogram', 'kg', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('2', '1', 'Gram', 'g', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('3', '1', 'Liter', 'L', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('4', '1', 'Milliliter', 'ml', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('5', '1', 'Piece', 'pc', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('6', '1', 'Box', 'box', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('7', '1', 'Dozen', 'dz', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('8', '1', 'Bottle', 'btl', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('9', '1', 'Package', 'pkg', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('10', '1', 'Can', 'can', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('11', '2', 'Kilogram', 'kg', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('12', '2', 'Gram', 'g', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('13', '2', 'Liter', 'L', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('14', '2', 'Milliliter', 'ml', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('15', '2', 'Piece', 'pc', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('16', '2', 'Box', 'box', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('17', '2', 'Dozen', 'dz', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('18', '2', 'Bottle', 'btl', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('19', '2', 'Package', 'pkg', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('20', '2', 'Can', 'can', '2025-09-17 05:48:09', '2025-09-17 05:48:09'),
('21', '3', 'Kilogram', 'kg', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('22', '3', 'Gram', 'g', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('23', '3', 'Liter', 'L', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('24', '3', 'Milliliter', 'ml', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('25', '3', 'Piece', 'pc', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('26', '3', 'Box', 'box', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('27', '3', 'Dozen', 'dz', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('28', '3', 'Bottle', 'btl', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('29', '3', 'Package', 'pkg', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('30', '3', 'Can', 'can', '2025-09-17 10:02:45', '2025-09-17 10:02:45'),
('31', '4', 'Kilogram', 'kg', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('32', '4', 'Gram', 'g', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('33', '4', 'Liter', 'L', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('34', '4', 'Milliliter', 'ml', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('35', '4', 'Piece', 'pc', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('36', '4', 'Box', 'box', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('37', '4', 'Dozen', 'dz', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('38', '4', 'Bottle', 'btl', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('39', '4', 'Package', 'pkg', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('40', '4', 'Can', 'can', '2025-09-20 12:56:44', '2025-09-20 12:56:44'),
('41', '5', 'Kilogram', 'kg', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('42', '5', 'Gram', 'g', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('43', '5', 'Liter', 'L', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('44', '5', 'Milliliter', 'ml', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('45', '5', 'Piece', 'pc', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('46', '5', 'Box', 'box', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('47', '5', 'Dozen', 'dz', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('48', '5', 'Bottle', 'btl', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('49', '5', 'Package', 'pkg', '2025-10-07 15:00:09', '2025-10-07 15:00:09'),
('50', '5', 'Can', 'can', '2025-10-07 15:00:09', '2025-10-07 15:00:09');


-- Table structure for table `universal_bundle_settings`
DROP TABLE IF EXISTS `universal_bundle_settings`;
CREATE TABLE `universal_bundle_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `purchase_code` varchar(191) DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `license_type` varchar(20) DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `universal_bundle_settings`
INSERT INTO `universal_bundle_settings` VALUES
('1', '65100125-205d-420e-b03c-0faa1e6f02b9', '2026-04-16 03:07:13', '2025-10-15 12:07:13', 'Regular License', '1', '2025-10-15 12:15:51', '2025-10-15 12:16:21');


-- Table structure for table `universal_module_installs`
DROP TABLE IF EXISTS `universal_module_installs`;
CREATE TABLE `universal_module_installs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `module_name` varchar(191) NOT NULL,
  `version` varchar(191) DEFAULT NULL,
  `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;

-- Dumping data for table `universal_module_installs`
INSERT INTO `universal_module_installs` VALUES
('1', 'CashRegister', '1.0.11\n', '2025-10-15 12:16:31', '2025-10-15 12:16:31'),
('2', 'Kiosk', '1.0.1\n', '2025-10-15 12:16:47', '2025-10-15 12:16:47'),
('3', 'LanguagePack', '1.0.62\n', '2025-10-15 12:17:11', '2025-10-15 12:17:11');


-- Table structure for table `users`
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint(20) unsigned DEFAULT NULL,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `email` varchar(191) NOT NULL,
  `phone_number` varchar(191) DEFAULT NULL,
  `phone_code` varchar(191) DEFAULT NULL,
  `terms_and_privacy_accepted` tinyint(1) NOT NULL DEFAULT 0,
  `marketing_emails_accepted` tinyint(1) NOT NULL DEFAULT 0,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(191) NOT NULL,
  `two_factor_secret` text DEFAULT NULL,
  `two_factor_recovery_codes` text DEFAULT NULL,
  `two_factor_confirmed_at` timestamp NULL DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `current_team_id` bigint(20) unsigned DEFAULT NULL,
  `profile_photo_path` varchar(2048) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `locale` varchar(191) NOT NULL DEFAULT 'en',
  `stripe_id` varchar(191) DEFAULT NULL,
  `pm_type` varchar(191) DEFAULT NULL,
  `pm_last_four` varchar(4) DEFAULT NULL,
  `trial_ends_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`),
  KEY `users_restaurant_id_foreign` (`restaurant_id`),
  KEY `users_stripe_id_index` (`stripe_id`),
  KEY `idx_branch_email` (`branch_id`,`email`),
  CONSTRAINT `users_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `users_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `users`
INSERT INTO `users` VALUES
('1', NULL, NULL, 'Emma Holden', 'superadmin@example.com', '18004542827', '1', '0', '0', NULL, '$2y$12$SG.fKDSavNMfMcnEmQvG3.RnVXR91iog5vpSp04kTs853M8Hmbdvq', NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-17 05:36:43', '2025-10-15 14:28:31', 'en', NULL, NULL, NULL, NULL),
('2', '1', NULL, 'John Doe', 'admin@example.com', NULL, NULL, '0', '0', NULL, '$2y$12$HU/5kFsxQq7.J6NzPn1P5uFetOgrAV9iTJSmFt1kVOQw56V.RbK8i', NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-17 05:36:44', '2025-09-17 06:11:02', 'en', NULL, NULL, NULL, NULL),
('3', '1', '1', 'Jaquelyn Battle', 'waiter@example.com', NULL, NULL, '0', '0', NULL, '$2y$12$GMgTydh2EMsRVK/FxhEZiu7szt6.f8718QmdRU6xYk7OLliGXsrRW', NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-17 05:36:44', '2025-09-17 06:11:02', 'en', NULL, NULL, NULL, NULL),
('4', '2', '3', 'Anmol Agarwal', 'agarwalanmol301@gmail.com', '8077708564', '91', '0', '0', NULL, '$2y$12$5In99cAc/YThC6Z/qHxcge8ihSMr1rb/s3uX.rPz8RNO22Wgg8gLW', NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-17 10:02:45', '2025-09-20 12:29:26', 'en', NULL, NULL, NULL, NULL),
('5', '2', '3', 'Mario', 'mario@ewiidine.com', '8077708333', '1', '0', '0', NULL, '$2y$12$eH8/ET4k9.fO5vRSb.XDceOfK8AFvO/6bkHSYRBO1vV39YC6V/Bti', NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-20 12:34:19', '2025-09-20 12:34:19', 'en', NULL, NULL, NULL, NULL),
('6', '3', '4', 'Mario Nicolas', 'mario.nicolas1210@gmail.com', '5148158188', '1', '0', '0', NULL, '$2y$12$eSsNsF4z8DZiEq9CNfMEDexrLX6YKn0ExffJN065xwQUzM/mzqjEi', 'eyJpdiI6IlZRVDdDbk1MU1FxM1AreTl0amNScVE9PSIsInZhbHVlIjoiaUR2SXEvNDhwZFY0U1p6MC9iWU1jRWFLbjFLMUREVTRKV3FqVHdmbW5QND0iLCJtYWMiOiJlMjhkNzU2OWQ4NmUyODY4YTU1NzhiZjUwYTYxZWEyMGY3YWY2MDUwYTM4ZjFmOTdkMTRlYmFhNGVlYjQ3ZjUwIiwidGFnIjoiIn0=', 'eyJpdiI6IklTcFQ0ZWRsS1dEejBrNGtlNERFSGc9PSIsInZhbHVlIjoiOFNXWWVxcXZidURKWlhsbms3aEthQlZzMWNCSmk3bEN5RmNEUUlHbVU0RXIrSHNXWCtpUkt1bE5oanNwRlRXWDU0UVdJaTU4SlR1SGhMSVIvUU4vUG5USnlsQUxZaGFkVDRtbTU0RExTOFZiS0x1V1BuL2hoR21RZkpzTEthYXBtblJ4bkJCWU9SVjJ4RFEwd0pHc2d1TGxrOFBPaUtuK1F2ZW9pSk5HMEFaZWpnM2lXdS91MGhmdC9iQ3Y0SkpQZVA1NjBQUUllS0Vudm9OQ2NJRzh5Q3FSQklWMTVlWW16NFRZeGt4Y2k4U3BKbEM0MjlYOXNkZ0xRQkJkN3RxY1dwdGlTTmJUK1hQZ2dWUzkrMlRNcnc9PSIsIm1hYyI6ImU4NGVkMzRmYWQyYmYwNGRkOGRlYzliNDg4YTVhODg0ZmE4YjljYTVkZGJmNjQzMTNjOTVjNTIyOTljM2FhY2QiLCJ0YWciOiIifQ==', NULL, NULL, NULL, NULL, '2025-09-20 12:56:45', '2025-09-20 13:05:31', 'en', NULL, NULL, NULL, NULL),
('7', '4', '5', 'Madhav Agrawal', 'madh321@gmail.com', '8840974810', '91', '0', '0', NULL, '$2y$12$JVwUapupf/ukTnwZSWTXq.27So6IKAB30l6SVSIIMN97wUGvXC3B2', NULL, NULL, NULL, 'cwPl2rRWgTvgYwx2d57AoG8rqGIUHKNMj0v0Ilu6ZMb2SOc7ePQKjr70AILN', NULL, NULL, '2025-10-07 15:00:09', '2025-10-07 15:00:09', 'en', NULL, NULL, NULL, NULL);


-- Table structure for table `waiter_requests`
DROP TABLE IF EXISTS `waiter_requests`;
CREATE TABLE `waiter_requests` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) unsigned NOT NULL,
  `table_id` bigint(20) unsigned NOT NULL,
  `status` enum('pending','completed') NOT NULL DEFAULT 'pending',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `waiter_requests_branch_id_foreign` (`branch_id`),
  KEY `waiter_requests_table_id_foreign` (`table_id`),
  CONSTRAINT `waiter_requests_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `waiter_requests_table_id_foreign` FOREIGN KEY (`table_id`) REFERENCES `tables` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `waiter_requests`
INSERT INTO `waiter_requests` VALUES
('1', '5', '5', 'completed', '2025-10-10 10:45:37', '2025-10-10 10:45:51');


-- Table structure for table `xendit_payments`
DROP TABLE IF EXISTS `xendit_payments`;
CREATE TABLE `xendit_payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `payment_date` datetime DEFAULT NULL,
  `amount` decimal(16,2) DEFAULT NULL,
  `payment_status` enum('pending','requested','declined','completed') NOT NULL DEFAULT 'pending',
  `payment_error_response` text DEFAULT NULL,
  `xendit_payment_id` varchar(191) DEFAULT NULL,
  `xendit_invoice_id` varchar(191) DEFAULT NULL,
  `xendit_external_id` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `xendit_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `xendit_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

