/*!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.6.18-MariaDB, for Linux (x86_64)
--
-- Host: 127.0.0.1    Database: adminpanel
-- ------------------------------------------------------
-- Server version	10.6.18-MariaDB-cll-lve

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

--
-- Table structure for table `about_us`
--

DROP TABLE IF EXISTS `about_us`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `about_us` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `content` longtext DEFAULT NULL,
  `language_id` int(11) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `about_us`
--

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

--
-- Table structure for table `auth`
--

DROP TABLE IF EXISTS `auth`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `deleted_at` timestamp NULL 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;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `auth`
--

LOCK TABLES `auth` WRITE;
/*!40000 ALTER TABLE `auth` DISABLE KEYS */;
INSERT INTO `auth` VALUES (1,'Customer',NULL,NULL,NULL),(2,'Director',NULL,NULL,NULL),(3,'Marketing',NULL,NULL,NULL);
/*!40000 ALTER TABLE `auth` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `blog_comments`
--

DROP TABLE IF EXISTS `blog_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blog_comments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_text` longtext NOT NULL,
  `category_id` int(11) NOT NULL,
  `replyIn` int(11) DEFAULT NULL,
  `replyOut` int(11) DEFAULT NULL,
  `confirm` int(11) NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `blog_comments_user_id_foreign` (`user_id`),
  CONSTRAINT `blog_comments_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blog_comments`
--

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

--
-- Table structure for table `cart`
--

DROP TABLE IF EXISTS `cart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cart` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `quantity` int(11) NOT NULL DEFAULT 1,
  `user_id` int(11) NOT NULL DEFAULT 0,
  `session_id` varchar(255) DEFAULT NULL,
  `variant_id` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cart`
--

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

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

DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `categories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `icon` varchar(255) DEFAULT NULL,
  `parent_id` int(11) NOT NULL DEFAULT 0,
  `image` varchar(255) DEFAULT NULL,
  `position` int(11) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `categories_language`
--

DROP TABLE IF EXISTS `categories_language`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `categories_language` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `language_id` varchar(255) NOT NULL DEFAULT '1',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `categories_language`
--

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

--
-- Table structure for table `category_variants`
--

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

--
-- Dumping data for table `category_variants`
--

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

--
-- Table structure for table `contact`
--

DROP TABLE IF EXISTS `contact`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contact` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `contact_email` varchar(255) DEFAULT NULL,
  `contact_phone` varchar(255) DEFAULT NULL,
  `contact_fax` varchar(255) DEFAULT NULL,
  `contact_whatsapp` varchar(255) DEFAULT NULL,
  `contact_address` varchar(255) DEFAULT NULL,
  `google_maps` longtext DEFAULT NULL,
  `header_codes` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact`
--

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

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

DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `countries` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `short_code` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `symbol` varchar(255) DEFAULT NULL,
  `capital` varchar(255) DEFAULT NULL,
  `currency` varchar(255) DEFAULT NULL,
  `continent` varchar(255) DEFAULT NULL,
  `continent_code` varchar(255) DEFAULT NULL,
  `alpha_3` varchar(255) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=253 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `countries` WRITE;
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
INSERT INTO `countries` VALUES (1,'Afghanistan','AF','93','؋','Kabul','AFN','Asia','AS','AFG',NULL,NULL,NULL),(2,'Aland Islands','AX','358','€','Mariehamn','EUR','Europe','EU','ALA',NULL,NULL,NULL),(3,'Albania','AL','355','Lek','Tirana','ALL','Europe','EU','ALB',NULL,NULL,NULL),(4,'Algeria','DZ','213','دج','Algiers','DZD','Africa','AF','DZA',NULL,NULL,NULL),(5,'American Samoa','AS','1684','$','Pago Pago','USD','Oceania','OC','ASM',NULL,NULL,NULL),(6,'Andorra','AD','376','€','Andorra la Vella','EUR','Europe','EU','AND',NULL,NULL,NULL),(7,'Angola','AO','244','Kz','Luanda','AOA','Africa','AF','AGO',NULL,NULL,NULL),(8,'Anguilla','AI','1264','$','The Valley','XCD','North America','NA','AIA',NULL,NULL,NULL),(9,'Antarctica','AQ','672','$','Antarctica','AAD','Antarctica','AN','ATA',NULL,NULL,NULL),(10,'Antigua and Barbuda','AG','1268','$','St. John\'s','XCD','North America','NA','ATG',NULL,NULL,NULL),(11,'Argentina','AR','54','$','Buenos Aires','ARS','South America','SA','ARG',NULL,NULL,NULL),(12,'Armenia','AM','374','֏','Yerevan','AMD','Asia','AS','ARM',NULL,NULL,NULL),(13,'Aruba','AW','297','ƒ','Oranjestad','AWG','North America','NA','ABW',NULL,NULL,NULL),(14,'Australia','AU','61','$','Canberra','AUD','Oceania','OC','AUS',NULL,NULL,NULL),(15,'Austria','AT','43','€','Vienna','EUR','Europe','EU','AUT',NULL,NULL,NULL),(16,'Azerbaijan','AZ','994','m','Baku','AZN','Asia','AS','AZE',NULL,NULL,NULL),(17,'Bahamas','BS','1242','B$','Nassau','BSD','North America','NA','BHS',NULL,NULL,NULL),(18,'Bahrain','BH','973','.د.ب','Manama','BHD','Asia','AS','BHR',NULL,NULL,NULL),(19,'Bangladesh','BD','880','৳','Dhaka','BDT','Asia','AS','BGD',NULL,NULL,NULL),(20,'Barbados','BB','1246','Bds$','Bridgetown','BBD','North America','NA','BRB',NULL,NULL,NULL),(21,'Belarus','BY','375','Br','Minsk','BYN','Europe','EU','BLR',NULL,NULL,NULL),(22,'Belgium','BE','32','€','Brussels','EUR','Europe','EU','BEL',NULL,NULL,NULL),(23,'Belize','BZ','501','$','Belmopan','BZD','North America','NA','BLZ',NULL,NULL,NULL),(24,'Benin','BJ','229','CFA','Porto-Novo','XOF','Africa','AF','BEN',NULL,NULL,NULL),(25,'Bermuda','BM','1441','$','Hamilton','BMD','North America','NA','BMU',NULL,NULL,NULL),(26,'Bhutan','BT','975','Nu.','Thimphu','BTN','Asia','AS','BTN',NULL,NULL,NULL),(27,'Bolivia','BO','591','Bs.','Sucre','BOB','South America','SA','BOL',NULL,NULL,NULL),(28,'Bonaire, Sint Eustatius and Saba','BQ','599','$','Kralendijk','USD','North America','NA','BES',NULL,NULL,NULL),(29,'Bosnia and Herzegovina','BA','387','KM','Sarajevo','BAM','Europe','EU','BIH',NULL,NULL,NULL),(30,'Botswana','BW','267','P','Gaborone','BWP','Africa','AF','BWA',NULL,NULL,NULL),(31,'Bouvet Island','BV','55','kr','','NOK','Antarctica','AN','BVT',NULL,NULL,NULL),(32,'Brazil','BR','55','R$','Brasilia','BRL','South America','SA','BRA',NULL,NULL,NULL),(33,'British Indian Ocean Territory','IO','246','$','Diego Garcia','USD','Asia','AS','IOT',NULL,NULL,NULL),(34,'Brunei Darussalam','BN','673','B$','Bandar Seri Begawan','BND','Asia','AS','BRN',NULL,NULL,NULL),(35,'Bulgaria','BG','359','Лв.','Sofia','BGN','Europe','EU','BGR',NULL,NULL,NULL),(36,'Burkina Faso','BF','226','CFA','Ouagadougou','XOF','Africa','AF','BFA',NULL,NULL,NULL),(37,'Burundi','BI','257','FBu','Bujumbura','BIF','Africa','AF','BDI',NULL,NULL,NULL),(38,'Cambodia','KH','855','KHR','Phnom Penh','KHR','Asia','AS','KHM',NULL,NULL,NULL),(39,'Cameroon','CM','237','FCFA','Yaounde','XAF','Africa','AF','CMR',NULL,NULL,NULL),(40,'Canada','CA','1','$','Ottawa','CAD','North America','NA','CAN',NULL,NULL,NULL),(41,'Cape Verde','CV','238','$','Praia','CVE','Africa','AF','CPV',NULL,NULL,NULL),(42,'Cayman Islands','KY','1345','$','George Town','KYD','North America','NA','CYM',NULL,NULL,NULL),(43,'Central African Republic','CF','236','FCFA','Bangui','XAF','Africa','AF','CAF',NULL,NULL,NULL),(44,'Chad','TD','235','FCFA','N\'Djamena','XAF','Africa','AF','TCD',NULL,NULL,NULL),(45,'Chile','CL','56','$','Santiago','CLP','South America','SA','CHL',NULL,NULL,NULL),(46,'China','CN','86','¥','Beijing','CNY','Asia','AS','CHN',NULL,NULL,NULL),(47,'Christmas Island','CX','61','$','Flying Fish Cove','AUD','Asia','AS','CXR',NULL,NULL,NULL),(48,'Cocos (Keeling) Islands','CC','672','$','West Island','AUD','Asia','AS','CCK',NULL,NULL,NULL),(49,'Colombia','CO','57','$','Bogota','COP','South America','SA','COL',NULL,NULL,NULL),(50,'Comoros','KM','269','CF','Moroni','KMF','Africa','AF','COM',NULL,NULL,NULL),(51,'Congo','CG','242','FC','Brazzaville','XAF','Africa','AF','COG',NULL,NULL,NULL),(52,'Congo, Democratic Republic of the Congo','CD','242','FC','Kinshasa','CDF','Africa','AF','COD',NULL,NULL,NULL),(53,'Cook Islands','CK','682','$','Avarua','NZD','Oceania','OC','COK',NULL,NULL,NULL),(54,'Costa Rica','CR','506','₡','San Jose','CRC','North America','NA','CRI',NULL,NULL,NULL),(55,'Cote D\'Ivoire','CI','225','CFA','Yamoussoukro','XOF','Africa','AF','CIV',NULL,NULL,NULL),(56,'Croatia','HR','385','kn','Zagreb','HRK','Europe','EU','HRV',NULL,NULL,NULL),(57,'Cuba','CU','53','$','Havana','CUP','North America','NA','CUB',NULL,NULL,NULL),(58,'Curacao','CW','599','ƒ','Willemstad','ANG','North America','NA','CUW',NULL,NULL,NULL),(59,'Cyprus','CY','357','€','Nicosia','EUR','Asia','AS','CYP',NULL,NULL,NULL),(60,'Czech Republic','CZ','420','Kč','Prague','CZK','Europe','EU','CZE',NULL,NULL,NULL),(61,'Denmark','DK','45','Kr.','Copenhagen','DKK','Europe','EU','DNK',NULL,NULL,NULL),(62,'Djibouti','DJ','253','Fdj','Djibouti','DJF','Africa','AF','DJI',NULL,NULL,NULL),(63,'Dominica','DM','1767','$','Roseau','XCD','North America','NA','DMA',NULL,NULL,NULL),(64,'Dominican Republic','DO','1809','$','Santo Domingo','DOP','North America','NA','DOM',NULL,NULL,NULL),(65,'Ecuador','EC','593','$','Quito','USD','South America','SA','ECU',NULL,NULL,NULL),(66,'Egypt','EG','20','ج.م','Cairo','EGP','Africa','AF','EGY',NULL,NULL,NULL),(67,'El Salvador','SV','503','$','San Salvador','USD','North America','NA','SLV',NULL,NULL,NULL),(68,'Equatorial Guinea','GQ','240','FCFA','Malabo','XAF','Africa','AF','GNQ',NULL,NULL,NULL),(69,'Eritrea','ER','291','Nfk','Asmara','ERN','Africa','AF','ERI',NULL,NULL,NULL),(70,'Estonia','EE','372','€','Tallinn','EUR','Europe','EU','EST',NULL,NULL,NULL),(71,'Ethiopia','ET','251','Nkf','Addis Ababa','ETB','Africa','AF','ETH',NULL,NULL,NULL),(72,'Falkland Islands (Malvinas)','FK','500','£','Stanley','FKP','South America','SA','FLK',NULL,NULL,NULL),(73,'Faroe Islands','FO','298','Kr.','Torshavn','DKK','Europe','EU','FRO',NULL,NULL,NULL),(74,'Fiji','FJ','679','FJ$','Suva','FJD','Oceania','OC','FJI',NULL,NULL,NULL),(75,'Finland','FI','358','€','Helsinki','EUR','Europe','EU','FIN',NULL,NULL,NULL),(76,'France','FR','33','€','Paris','EUR','Europe','EU','FRA',NULL,NULL,NULL),(77,'French Guiana','GF','594','€','Cayenne','EUR','South America','SA','GUF',NULL,NULL,NULL),(78,'French Polynesia','PF','689','₣','Papeete','XPF','Oceania','OC','PYF',NULL,NULL,NULL),(79,'French Southern Territories','TF','262','€','Port-aux-Francais','EUR','Antarctica','AN','ATF',NULL,NULL,NULL),(80,'Gabon','GA','241','FCFA','Libreville','XAF','Africa','AF','GAB',NULL,NULL,NULL),(81,'Gambia','GM','220','D','Banjul','GMD','Africa','AF','GMB',NULL,NULL,NULL),(82,'Georgia','GE','995','ლ','Tbilisi','GEL','Asia','AS','GEO',NULL,NULL,NULL),(83,'Germany','DE','49','€','Berlin','EUR','Europe','EU','DEU',NULL,NULL,NULL),(84,'Ghana','GH','233','GH₵','Accra','GHS','Africa','AF','GHA',NULL,NULL,NULL),(85,'Gibraltar','GI','350','£','Gibraltar','GIP','Europe','EU','GIB',NULL,NULL,NULL),(86,'Greece','GR','30','€','Athens','EUR','Europe','EU','GRC',NULL,NULL,NULL),(87,'Greenland','GL','299','Kr.','Nuuk','DKK','North America','NA','GRL',NULL,NULL,NULL),(88,'Grenada','GD','1473','$','St. George\'s','XCD','North America','NA','GRD',NULL,NULL,NULL),(89,'Guadeloupe','GP','590','€','Basse-Terre','EUR','North America','NA','GLP',NULL,NULL,NULL),(90,'Guam','GU','1671','$','Hagatna','USD','Oceania','OC','GUM',NULL,NULL,NULL),(91,'Guatemala','GT','502','Q','Guatemala City','GTQ','North America','NA','GTM',NULL,NULL,NULL),(92,'Guernsey','GG','44','£','St Peter Port','GBP','Europe','EU','GGY',NULL,NULL,NULL),(93,'Guinea','GN','224','FG','Conakry','GNF','Africa','AF','GIN',NULL,NULL,NULL),(94,'Guinea-Bissau','GW','245','CFA','Bissau','XOF','Africa','AF','GNB',NULL,NULL,NULL),(95,'Guyana','GY','592','$','Georgetown','GYD','South America','SA','GUY',NULL,NULL,NULL),(96,'Haiti','HT','509','G','Port-au-Prince','HTG','North America','NA','HTI',NULL,NULL,NULL),(97,'Heard Island and Mcdonald Islands','HM','0','$','','AUD','Antarctica','AN','HMD',NULL,NULL,NULL),(98,'Holy See (Vatican City State)','VA','39','€','Vatican City','EUR','Europe','EU','VAT',NULL,NULL,NULL),(99,'Honduras','HN','504','L','Tegucigalpa','HNL','North America','NA','HND',NULL,NULL,NULL),(100,'Hong Kong','HK','852','$','Hong Kong','HKD','Asia','AS','HKG',NULL,NULL,NULL),(101,'Hungary','HU','36','Ft','Budapest','HUF','Europe','EU','HUN',NULL,NULL,NULL),(102,'Iceland','IS','354','kr','Reykjavik','ISK','Europe','EU','ISL',NULL,NULL,NULL),(103,'India','IN','91','₹','New Delhi','INR','Asia','AS','IND',NULL,NULL,NULL),(104,'Indonesia','ID','62','Rp','Jakarta','IDR','Asia','AS','IDN',NULL,NULL,NULL),(105,'Iran, Islamic Republic of','IR','98','﷼','Tehran','IRR','Asia','AS','IRN',NULL,NULL,NULL),(106,'Iraq','IQ','964','د.ع','Baghdad','IQD','Asia','AS','IRQ',NULL,NULL,NULL),(107,'Ireland','IE','353','€','Dublin','EUR','Europe','EU','IRL',NULL,NULL,NULL),(108,'Isle of Man','IM','44','£','Douglas, Isle of Man','GBP','Europe','EU','IMN',NULL,NULL,NULL),(109,'Israel','IL','972','₪','Jerusalem','ILS','Asia','AS','ISR',NULL,NULL,NULL),(110,'Italy','IT','39','€','Rome','EUR','Europe','EU','ITA',NULL,NULL,NULL),(111,'Jamaica','JM','1876','J$','Kingston','JMD','North America','NA','JAM',NULL,NULL,NULL),(112,'Japan','JP','81','¥','Tokyo','JPY','Asia','AS','JPN',NULL,NULL,NULL),(113,'Jersey','JE','44','£','Saint Helier','GBP','Europe','EU','JEY',NULL,NULL,NULL),(114,'Jordan','JO','962','ا.د','Amman','JOD','Asia','AS','JOR',NULL,NULL,NULL),(115,'Kazakhstan','KZ','7','лв','Astana','KZT','Asia','AS','KAZ',NULL,NULL,NULL),(116,'Kenya','KE','254','KSh','Nairobi','KES','Africa','AF','KEN',NULL,NULL,NULL),(117,'Kiribati','KI','686','$','Tarawa','AUD','Oceania','OC','KIR',NULL,NULL,NULL),(118,'Korea, Democratic People\'s Republic of','KP','850','₩','Pyongyang','KPW','Asia','AS','PRK',NULL,NULL,NULL),(119,'Korea, Republic of','KR','82','₩','Seoul','KRW','Asia','AS','KOR',NULL,NULL,NULL),(120,'Kosovo','XK','381','€','Pristina','EUR','Europe','EU','XKX',NULL,NULL,NULL),(121,'Kuwait','KW','965','ك.د','Kuwait City','KWD','Asia','AS','KWT',NULL,NULL,NULL),(122,'Kyrgyzstan','KG','996','лв','Bishkek','KGS','Asia','AS','KGZ',NULL,NULL,NULL),(123,'Lao People\'s Democratic Republic','LA','856','₭','Vientiane','LAK','Asia','AS','LAO',NULL,NULL,NULL),(124,'Latvia','LV','371','€','Riga','EUR','Europe','EU','LVA',NULL,NULL,NULL),(125,'Lebanon','LB','961','£','Beirut','LBP','Asia','AS','LBN',NULL,NULL,NULL),(126,'Lesotho','LS','266','L','Maseru','LSL','Africa','AF','LSO',NULL,NULL,NULL),(127,'Liberia','LR','231','$','Monrovia','LRD','Africa','AF','LBR',NULL,NULL,NULL),(128,'Libyan Arab Jamahiriya','LY','218','د.ل','Tripolis','LYD','Africa','AF','LBY',NULL,NULL,NULL),(129,'Liechtenstein','LI','423','CHf','Vaduz','CHF','Europe','EU','LIE',NULL,NULL,NULL),(130,'Lithuania','LT','370','€','Vilnius','EUR','Europe','EU','LTU',NULL,NULL,NULL),(131,'Luxembourg','LU','352','€','Luxembourg','EUR','Europe','EU','LUX',NULL,NULL,NULL),(132,'Macao','MO','853','$','Macao','MOP','Asia','AS','MAC',NULL,NULL,NULL),(133,'Macedonia, the Former Yugoslav Republic of','MK','389','ден','Skopje','MKD','Europe','EU','MKD',NULL,NULL,NULL),(134,'Madagascar','MG','261','Ar','Antananarivo','MGA','Africa','AF','MDG',NULL,NULL,NULL),(135,'Malawi','MW','265','MK','Lilongwe','MWK','Africa','AF','MWI',NULL,NULL,NULL),(136,'Malaysia','MY','60','RM','Kuala Lumpur','MYR','Asia','AS','MYS',NULL,NULL,NULL),(137,'Maldives','MV','960','Rf','Male','MVR','Asia','AS','MDV',NULL,NULL,NULL),(138,'Mali','ML','223','CFA','Bamako','XOF','Africa','AF','MLI',NULL,NULL,NULL),(139,'Malta','MT','356','€','Valletta','EUR','Europe','EU','MLT',NULL,NULL,NULL),(140,'Marshall Islands','MH','692','$','Majuro','USD','Oceania','OC','MHL',NULL,NULL,NULL),(141,'Martinique','MQ','596','€','Fort-de-France','EUR','North America','NA','MTQ',NULL,NULL,NULL),(142,'Mauritania','MR','222','MRU','Nouakchott','MRO','Africa','AF','MRT',NULL,NULL,NULL),(143,'Mauritius','MU','230','₨','Port Louis','MUR','Africa','AF','MUS',NULL,NULL,NULL),(144,'Mayotte','YT','269','€','Mamoudzou','EUR','Africa','AF','MYT',NULL,NULL,NULL),(145,'Mexico','MX','52','$','Mexico City','MXN','North America','NA','MEX',NULL,NULL,NULL),(146,'Micronesia, Federated States of','FM','691','$','Palikir','USD','Oceania','OC','FSM',NULL,NULL,NULL),(147,'Moldova, Republic of','MD','373','L','Chisinau','MDL','Europe','EU','MDA',NULL,NULL,NULL),(148,'Monaco','MC','377','€','Monaco','EUR','Europe','EU','MCO',NULL,NULL,NULL),(149,'Mongolia','MN','976','₮','Ulan Bator','MNT','Asia','AS','MNG',NULL,NULL,NULL),(150,'Montenegro','ME','382','€','Podgorica','EUR','Europe','EU','MNE',NULL,NULL,NULL),(151,'Montserrat','MS','1664','$','Plymouth','XCD','North America','NA','MSR',NULL,NULL,NULL),(152,'Morocco','MA','212','DH','Rabat','MAD','Africa','AF','MAR',NULL,NULL,NULL),(153,'Mozambique','MZ','258','MT','Maputo','MZN','Africa','AF','MOZ',NULL,NULL,NULL),(154,'Myanmar','MM','95','K','Nay Pyi Taw','MMK','Asia','AS','MMR',NULL,NULL,NULL),(155,'Namibia','NA','264','$','Windhoek','NAD','Africa','AF','NAM',NULL,NULL,NULL),(156,'Nauru','NR','674','$','Yaren','AUD','Oceania','OC','NRU',NULL,NULL,NULL),(157,'Nepal','NP','977','₨','Kathmandu','NPR','Asia','AS','NPL',NULL,NULL,NULL),(158,'Netherlands','NL','31','€','Amsterdam','EUR','Europe','EU','NLD',NULL,NULL,NULL),(159,'Netherlands Antilles','AN','599','NAf','Willemstad','ANG','North America','NA','ANT',NULL,NULL,NULL),(160,'New Caledonia','NC','687','₣','Noumea','XPF','Oceania','OC','NCL',NULL,NULL,NULL),(161,'New Zealand','NZ','64','$','Wellington','NZD','Oceania','OC','NZL',NULL,NULL,NULL),(162,'Nicaragua','NI','505','C$','Managua','NIO','North America','NA','NIC',NULL,NULL,NULL),(163,'Niger','NE','227','CFA','Niamey','XOF','Africa','AF','NER',NULL,NULL,NULL),(164,'Nigeria','NG','234','₦','Abuja','NGN','Africa','AF','NGA',NULL,NULL,NULL),(165,'Niue','NU','683','$','Alofi','NZD','Oceania','OC','NIU',NULL,NULL,NULL),(166,'Norfolk Island','NF','672','$','Kingston','AUD','Oceania','OC','NFK',NULL,NULL,NULL),(167,'Northern Mariana Islands','MP','1670','$','Saipan','USD','Oceania','OC','MNP',NULL,NULL,NULL),(168,'Norway','NO','47','kr','Oslo','NOK','Europe','EU','NOR',NULL,NULL,NULL),(169,'Oman','OM','968','.ع.ر','Muscat','OMR','Asia','AS','OMN',NULL,NULL,NULL),(170,'Pakistan','PK','92','₨','Islamabad','PKR','Asia','AS','PAK',NULL,NULL,NULL),(171,'Palau','PW','680','$','Melekeok','USD','Oceania','OC','PLW',NULL,NULL,NULL),(172,'Palestinian Territory, Occupied','PS','970','₪','East Jerusalem','ILS','Asia','AS','PSE',NULL,NULL,NULL),(173,'Panama','PA','507','B/.','Panama City','PAB','North America','NA','PAN',NULL,NULL,NULL),(174,'Papua New Guinea','PG','675','K','Port Moresby','PGK','Oceania','OC','PNG',NULL,NULL,NULL),(175,'Paraguay','PY','595','₲','Asuncion','PYG','South America','SA','PRY',NULL,NULL,NULL),(176,'Peru','PE','51','S/.','Lima','PEN','South America','SA','PER',NULL,NULL,NULL),(177,'Philippines','PH','63','₱','Manila','PHP','Asia','AS','PHL',NULL,NULL,NULL),(178,'Pitcairn','PN','64','$','Adamstown','NZD','Oceania','OC','PCN',NULL,NULL,NULL),(179,'Poland','PL','48','zł','Warsaw','PLN','Europe','EU','POL',NULL,NULL,NULL),(180,'Portugal','PT','351','€','Lisbon','EUR','Europe','EU','PRT',NULL,NULL,NULL),(181,'Puerto Rico','PR','1787','$','San Juan','USD','North America','NA','PRI',NULL,NULL,NULL),(182,'Qatar','QA','974','ق.ر','Doha','QAR','Asia','AS','QAT',NULL,NULL,NULL),(183,'Reunion','RE','262','€','Saint-Denis','EUR','Africa','AF','REU',NULL,NULL,NULL),(184,'Romania','RO','40','lei','Bucharest','RON','Europe','EU','ROM',NULL,NULL,NULL),(185,'Russian Federation','RU','70','₽','Moscow','RUB','Asia','AS','RUS',NULL,NULL,NULL),(186,'Rwanda','RW','250','FRw','Kigali','RWF','Africa','AF','RWA',NULL,NULL,NULL),(187,'Saint Barthelemy','BL','590','€','Gustavia','EUR','North America','NA','BLM',NULL,NULL,NULL),(188,'Saint Helena','SH','290','£','Jamestown','SHP','Africa','AF','SHN',NULL,NULL,NULL),(189,'Saint Kitts and Nevis','KN','1869','$','Basseterre','XCD','North America','NA','KNA',NULL,NULL,NULL),(190,'Saint Lucia','LC','1758','$','Castries','XCD','North America','NA','LCA',NULL,NULL,NULL),(191,'Saint Martin','MF','590','€','Marigot','EUR','North America','NA','MAF',NULL,NULL,NULL),(192,'Saint Pierre and Miquelon','PM','508','€','Saint-Pierre','EUR','North America','NA','SPM',NULL,NULL,NULL),(193,'Saint Vincent and the Grenadines','VC','1784','$','Kingstown','XCD','North America','NA','VCT',NULL,NULL,NULL),(194,'Samoa','WS','684','SAT','Apia','WST','Oceania','OC','WSM',NULL,NULL,NULL),(195,'San Marino','SM','378','€','San Marino','EUR','Europe','EU','SMR',NULL,NULL,NULL),(196,'Sao Tome and Principe','ST','239','Db','Sao Tome','STD','Africa','AF','STP',NULL,NULL,NULL),(197,'Saudi Arabia','SA','966','﷼','Riyadh','SAR','Asia','AS','SAU',NULL,NULL,NULL),(198,'Senegal','SN','221','CFA','Dakar','XOF','Africa','AF','SEN',NULL,NULL,NULL),(199,'Serbia','RS','381','din','Belgrade','RSD','Europe','EU','SRB',NULL,NULL,NULL),(200,'Serbia and Montenegro','CS','381','din','Belgrade','RSD','Europe','EU','SCG',NULL,NULL,NULL),(201,'Seychelles','SC','248','SRe','Victoria','SCR','Africa','AF','SYC',NULL,NULL,NULL),(202,'Sierra Leone','SL','232','Le','Freetown','SLL','Africa','AF','SLE',NULL,NULL,NULL),(203,'Singapore','SG','65','$','Singapur','SGD','Asia','AS','SGP',NULL,NULL,NULL),(204,'Sint Maarten','SX','1','ƒ','Philipsburg','ANG','North America','NA','SXM',NULL,NULL,NULL),(205,'Slovakia','SK','421','€','Bratislava','EUR','Europe','EU','SVK',NULL,NULL,NULL),(206,'Slovenia','SI','386','€','Ljubljana','EUR','Europe','EU','SVN',NULL,NULL,NULL),(207,'Solomon Islands','SB','677','Si$','Honiara','SBD','Oceania','OC','SLB',NULL,NULL,NULL),(208,'Somalia','SO','252','Sh.so.','Mogadishu','SOS','Africa','AF','SOM',NULL,NULL,NULL),(209,'South Africa','ZA','27','R','Pretoria','ZAR','Africa','AF','ZAF',NULL,NULL,NULL),(210,'South Georgia and the South Sandwich Islands','GS','500','£','Grytviken','GBP','Antarctica','AN','SGS',NULL,NULL,NULL),(211,'South Sudan','SS','211','£','Juba','SSP','Africa','AF','SSD',NULL,NULL,NULL),(212,'Spain','ES','34','€','Madrid','EUR','Europe','EU','ESP',NULL,NULL,NULL),(213,'Sri Lanka','LK','94','Rs','Colombo','LKR','Asia','AS','LKA',NULL,NULL,NULL),(214,'Sudan','SD','249','.س.ج','Khartoum','SDG','Africa','AF','SDN',NULL,NULL,NULL),(215,'Suriname','SR','597','$','Paramaribo','SRD','South America','SA','SUR',NULL,NULL,NULL),(216,'Svalbard and Jan Mayen','SJ','47','kr','Longyearbyen','NOK','Europe','EU','SJM',NULL,NULL,NULL),(217,'Swaziland','SZ','268','E','Mbabane','SZL','Africa','AF','SWZ',NULL,NULL,NULL),(218,'Sweden','SE','46','kr','Stockholm','SEK','Europe','EU','SWE',NULL,NULL,NULL),(219,'Switzerland','CH','41','CHf','Berne','CHF','Europe','EU','CHE',NULL,NULL,NULL),(220,'Syrian Arab Republic','SY','963','LS','Damascus','SYP','Asia','AS','SYR',NULL,NULL,NULL),(221,'Taiwan, Province of China','TW','886','$','Taipei','TWD','Asia','AS','TWN',NULL,NULL,NULL),(222,'Tajikistan','TJ','992','SM','Dushanbe','TJS','Asia','AS','TJK',NULL,NULL,NULL),(223,'Tanzania, United Republic of','TZ','255','TSh','Dodoma','TZS','Africa','AF','TZA',NULL,NULL,NULL),(224,'Thailand','TH','66','฿','Bangkok','THB','Asia','AS','THA',NULL,NULL,NULL),(225,'Timor-Leste','TL','670','$','Dili','USD','Asia','AS','TLS',NULL,NULL,NULL),(226,'Togo','TG','228','CFA','Lome','XOF','Africa','AF','TGO',NULL,NULL,NULL),(227,'Tokelau','TK','690','$','','NZD','Oceania','OC','TKL',NULL,NULL,NULL),(228,'Tonga','TO','676','$','Nuku\'alofa','TOP','Oceania','OC','TON',NULL,NULL,NULL),(229,'Trinidad and Tobago','TT','1868','$','Port of Spain','TTD','North America','NA','TTO',NULL,NULL,NULL),(230,'Tunisia','TN','216','ت.د','Tunis','TND','Africa','AF','TUN',NULL,NULL,NULL),(231,'Turkey','TR','90','₺','Ankara','TRY','Asia','AS','TUR',NULL,NULL,NULL),(232,'Turkmenistan','TM','7370','T','Ashgabat','TMT','Asia','AS','TKM',NULL,NULL,NULL),(233,'Turks and Caicos Islands','TC','1649','$','Cockburn Town','USD','North America','NA','TCA',NULL,NULL,NULL),(234,'Tuvalu','TV','688','$','Funafuti','AUD','Oceania','OC','TUV',NULL,NULL,NULL),(235,'Uganda','UG','256','USh','Kampala','UGX','Africa','AF','UGA',NULL,NULL,NULL),(236,'Ukraine','UA','380','₴','Kiev','UAH','Europe','EU','UKR',NULL,NULL,NULL),(237,'United Arab Emirates','AE','971','إ.د','Abu Dhabi','AED','Asia','AS','ARE',NULL,NULL,NULL),(238,'United Kingdom','GB','44','£','London','GBP','Europe','EU','GBR',NULL,NULL,NULL),(239,'United States','US','1','$','Washington','USD','North America','NA','USA',NULL,NULL,NULL),(240,'United States Minor Outlying Islands','UM','1','$','','USD','North America','NA','UMI',NULL,NULL,NULL),(241,'Uruguay','UY','598','$','Montevideo','UYU','South America','SA','URY',NULL,NULL,NULL),(242,'Uzbekistan','UZ','998','лв','Tashkent','UZS','Asia','AS','UZB',NULL,NULL,NULL),(243,'Vanuatu','VU','678','VT','Port Vila','VUV','Oceania','OC','VUT',NULL,NULL,NULL),(244,'Venezuela','VE','58','Bs','Caracas','VEF','South America','SA','VEN',NULL,NULL,NULL),(245,'Viet Nam','VN','84','₫','Hanoi','VND','Asia','AS','VNM',NULL,NULL,NULL),(246,'Virgin Islands, British','VG','1284','$','Road Town','USD','North America','NA','VGB',NULL,NULL,NULL),(247,'Virgin Islands, U.s.','VI','1340','$','Charlotte Amalie','USD','North America','NA','VIR',NULL,NULL,NULL),(248,'Wallis and Futuna','WF','681','₣','Mata Utu','XPF','Oceania','OC','WLF',NULL,NULL,NULL),(249,'Western Sahara','EH','212','MAD','El-Aaiun','MAD','Africa','AF','ESH',NULL,NULL,NULL),(250,'Yemen','YE','967','﷼','Sanaa','YER','Asia','AS','YEM',NULL,NULL,NULL),(251,'Zambia','ZM','260','ZK','Lusaka','ZMW','Africa','AF','ZMB',NULL,NULL,NULL),(252,'Zimbabwe','ZW','263','$','Harare','ZWL','Africa','AF','ZWE',NULL,NULL,NULL);
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `currencies`
--

DROP TABLE IF EXISTS `currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `currencies` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `symbol` varchar(255) DEFAULT NULL,
  `code` varchar(255) DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `currencies`
--

LOCK TABLES `currencies` WRITE;
/*!40000 ALTER TABLE `currencies` DISABLE KEYS */;
INSERT INTO `currencies` VALUES (1,'Türk Lirası','₺','TRY',1,NULL,NULL,NULL);
/*!40000 ALTER TABLE `currencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `currency_rates`
--

DROP TABLE IF EXISTS `currency_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `currency_rates` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `from_currency_id` int(11) NOT NULL,
  `to_currency_id` int(11) NOT NULL,
  `rate` double(8,3) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `currency_rates`
--

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

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

DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `failed_jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(255) 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;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

DROP TABLE IF EXISTS `galleries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `galleries` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `image` varchar(255) DEFAULT NULL,
  `gallery_category_id` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `gallery_categories`
--

DROP TABLE IF EXISTS `gallery_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gallery_categories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `image` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gallery_categories`
--

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

--
-- Table structure for table `gallery_category_languages`
--

DROP TABLE IF EXISTS `gallery_category_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gallery_category_languages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `language_id` bigint(20) NOT NULL DEFAULT 1,
  `gallery_category_id` bigint(20) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gallery_category_languages`
--

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

--
-- Table structure for table `gallery_languages`
--

DROP TABLE IF EXISTS `gallery_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gallery_languages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `language_id` int(11) NOT NULL DEFAULT 1,
  `gallery_id` bigint(20) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gallery_languages`
--

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

--
-- Table structure for table `gallery_media`
--

DROP TABLE IF EXISTS `gallery_media`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gallery_media` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `gallery_id` bigint(20) NOT NULL,
  `position` int(11) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gallery_media`
--

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

--
-- Table structure for table `general_settings`
--

DROP TABLE IF EXISTS `general_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `general_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `new_register_email` varchar(255) DEFAULT NULL,
  `new_register_email_status` tinyint(4) NOT NULL DEFAULT 0,
  `new_order_email` varchar(255) DEFAULT NULL,
  `new_order_email_status` tinyint(4) NOT NULL DEFAULT 0,
  `new_contact_message_email` varchar(255) DEFAULT NULL,
  `new_contact_message_email_status` int(11) NOT NULL DEFAULT 0,
  `product_small_image_width` int(11) DEFAULT NULL,
  `product_small_image_height` int(11) DEFAULT NULL,
  `product_medium_image_width` int(11) DEFAULT NULL,
  `product_medium_image_height` int(11) DEFAULT NULL,
  `product_large_image_width` int(11) DEFAULT NULL,
  `product_large_image_height` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `general_settings`
--

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

--
-- Table structure for table `headers`
--

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

--
-- Dumping data for table `headers`
--

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

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

DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `queue` varchar(255) 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;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `language_strings`
--

DROP TABLE IF EXISTS `language_strings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `language_strings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `string_key` varchar(255) NOT NULL,
  `lang_code` varchar(255) NOT NULL,
  `string_value` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1331 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `language_strings`
--

LOCK TABLES `language_strings` WRITE;
/*!40000 ALTER TABLE `language_strings` DISABLE KEYS */;
INSERT INTO `language_strings` VALUES (1,'homepage','tr','Anasayfa','2024-10-02 08:13:07','2024-10-02 08:13:07'),(2,'homepage','en','Home','2024-10-02 08:13:07','2024-10-02 08:13:07'),(3,'about_us','tr','Hakkımızda','2024-10-02 08:13:07','2024-10-02 08:13:07'),(4,'about_us','en','About Us','2024-10-02 08:13:07','2024-10-02 08:13:07'),(5,'e_catalog','tr','E-Katalog','2024-10-02 08:13:07','2024-10-02 08:13:07'),(6,'e_catalog','en','E-Catalog','2024-10-02 08:13:07','2024-10-02 08:13:07'),(7,'email','tr','E-Posta','2024-10-02 08:13:07','2024-10-02 08:13:07'),(8,'email','en','E-Mail','2024-10-02 08:13:07','2024-10-02 08:13:07'),(9,'phone','tr','Telefon','2024-10-02 08:13:07','2024-10-02 08:13:07'),(10,'phone','en','Phone','2024-10-02 08:13:07','2024-10-02 08:13:07'),(11,'products','tr','Ürünler','2024-10-02 08:13:07','2024-10-02 08:13:07'),(12,'products','en','Products','2024-10-02 08:13:07','2024-10-02 08:13:07'),(13,'our_products','tr','Ürünlerimiz','2024-10-02 08:13:07','2024-10-02 08:13:07'),(14,'our_products','en','Our Products','2024-10-02 08:13:07','2024-10-02 08:13:07'),(15,'orders','tr','Siparişler','2024-10-02 08:13:07','2024-10-02 08:13:07'),(16,'orders','en','Orders','2024-10-02 08:13:07','2024-10-02 08:13:07'),(17,'categories','tr','Kategoriler','2024-10-02 08:13:07','2024-10-02 08:13:07'),(18,'categories','en','Categories','2024-10-02 08:13:07','2024-10-02 08:13:07'),(19,'contact','tr','İletişim','2024-10-02 08:13:07','2024-10-02 08:13:07'),(20,'contact','en','Contact','2024-10-02 08:13:07','2024-10-02 08:13:07'),(21,'contact_form','tr','İletişim Formu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(22,'contact_form','en','Contact Form','2024-10-02 08:13:07','2024-10-02 08:13:07'),(23,'all_products','tr','Tüm Ürünler','2024-10-02 08:13:07','2024-10-02 08:13:07'),(24,'all_products','en','All Products','2024-10-02 08:13:07','2024-10-02 08:13:07'),(25,'search_something','tr','Bir şeyler arayın','2024-10-02 08:13:07','2024-10-02 08:13:07'),(26,'search_something','en','Search something','2024-10-02 08:13:07','2024-10-02 08:13:07'),(27,'what_we_do','tr','Ne Yapıyoruz?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(28,'what_we_do','en','What We Do?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(29,'what_we_do_text','tr','Hizmet verdiğimiz kategorileri inceleyin','2024-10-02 08:13:07','2024-10-02 08:13:07'),(30,'what_we_do_text','en','Check out the categories we serve.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(31,'call_us','tr','Bizi Arayın','2024-10-02 08:13:07','2024-10-02 08:13:07'),(32,'call_us','en','Call Us','2024-10-02 08:13:07','2024-10-02 08:13:07'),(33,'search','tr','Ara','2024-10-02 08:13:07','2024-10-02 08:13:07'),(34,'search','en','Search','2024-10-02 08:13:07','2024-10-02 08:13:07'),(35,'info','tr','Bilgi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(36,'info','en','Info','2024-10-02 08:13:07','2024-10-02 08:13:07'),(37,'social_media','tr','Sosyal Medya','2024-10-02 08:13:07','2024-10-02 08:13:07'),(38,'social_media','en','Social Media','2024-10-02 08:13:07','2024-10-02 08:13:07'),(39,'follow_us_on_social_media','tr','Bizi sosyal medyada takip edin.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(40,'follow_us_on_social_media','en','Follow us on social media.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(41,'review','tr','İncele','2024-10-02 08:13:07','2024-10-02 08:13:07'),(42,'review','en','Review','2024-10-02 08:13:07','2024-10-02 08:13:07'),(43,'call_now','tr','Hemen arayın','2024-10-02 08:13:07','2024-10-02 08:13:07'),(44,'call_now','en','Call Now','2024-10-02 08:13:07','2024-10-02 08:13:07'),(45,'free_shipping','tr','Ücretsiz Kargo','2024-10-02 08:13:07','2024-10-02 08:13:07'),(46,'free_shipping','en','Free Shipping','2024-10-02 08:13:07','2024-10-02 08:13:07'),(47,'free_shipping_text','tr','Belirli bir miktarın üzerindeki alışverişlerde ücretsiz kargo olanağı.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(48,'free_shipping_text','en','Free shipping on purchases over a certain amount.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(49,'return_exchange_guarantee','tr','İade/Değişim Garantisi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(50,'return_exchange_guarantee','en','Return/Exchange Guarantee','2024-10-02 08:13:07','2024-10-02 08:13:07'),(51,'return_exchange_guarantee_text','tr','Problemli olduğunu düşündüğünüz ürünlerde hemen iade.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(52,'return_exchange_guarantee_text','en','Immediate return on products that you think are problematic.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(53,'secure_shopping','tr','Güvenli Alışveriş','2024-10-02 08:13:07','2024-10-02 08:13:07'),(54,'secure_shopping','en','Secure Shopping','2024-10-02 08:13:07','2024-10-02 08:13:07'),(55,'secure_shopping_text','tr','Kaliteli ve modern alışverişin doğru adresindesiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(56,'secure_shopping_text','en','You are at the right address of quality and modern shopping.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(57,'name','tr','Adınız','2024-10-02 08:13:07','2024-10-02 08:13:07'),(58,'name','en','Your name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(59,'surname','tr','Soyadınız','2024-10-02 08:13:07','2024-10-02 08:13:07'),(60,'surname','en','Your surname','2024-10-02 08:13:07','2024-10-02 08:13:07'),(61,'email','tr','E-Posta Adresi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(62,'email','en','E-Mail','2024-10-02 08:13:07','2024-10-02 08:13:07'),(63,'choose_language','tr','Dil Seçin','2024-10-02 08:13:07','2024-10-02 08:13:07'),(64,'choose_language','en','Choose Language','2024-10-02 08:13:07','2024-10-02 08:13:07'),(65,'our_picks_for_you','tr','Sizin İçin Seçtiklerimiz','2024-10-02 08:13:07','2024-10-02 08:13:07'),(66,'our_picks_for_you','en','Our Picks For You','2024-10-02 08:13:07','2024-10-02 08:13:07'),(67,'our_picks_for_you_text','tr','Sizin için seçtiğimiz ürünleri inceleyin.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(68,'our_picks_for_you_text','en','Check out the products we have chosen for you.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(69,'who_are_we','tr','Biz Kimiz?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(70,'who_are_we','en','Who Are We?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(71,'who_are_we_text','tr','Bizi kısaca tanıyın.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(72,'who_are_we_text','en','Get to know us briefly.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(73,'product_not_found','tr','Ürün bulunamadı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(74,'product_not_found','en','Product not found','2024-10-02 08:13:07','2024-10-02 08:13:07'),(75,'product_description','tr','Ürün Açıklaması','2024-10-02 08:13:07','2024-10-02 08:13:07'),(76,'product_description','en','Product Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(77,'message','tr','Mesajınız','2024-10-02 08:13:07','2024-10-02 08:13:07'),(78,'message','en','Message','2024-10-02 08:13:07','2024-10-02 08:13:07'),(79,'send_message','tr','Mesaj Gönder','2024-10-02 08:13:07','2024-10-02 08:13:07'),(80,'send_message','en','Send Message','2024-10-02 08:13:07','2024-10-02 08:13:07'),(81,'created_at','tr','Oluşturulma tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(82,'created_at','en','Created at','2024-10-02 08:13:07','2024-10-02 08:13:07'),(83,'search_result','tr','Arama Sonuçları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(84,'search_result','en','Search Result','2024-10-02 08:13:07','2024-10-02 08:13:07'),(85,'share_on_social_media','tr','Sosyal Medyada Paylaş','2024-10-02 08:13:07','2024-10-02 08:13:07'),(86,'share_on_social_media','en','Share on Social Media','2024-10-02 08:13:07','2024-10-02 08:13:07'),(87,'slider_title','tr','2021-2022','2024-10-02 08:13:07','2024-10-02 08:13:07'),(88,'slider_title','en','2021-2022','2024-10-02 08:13:07','2024-10-02 08:13:07'),(89,'slider_description','tr','Yeni Koleksiyon','2024-10-02 08:13:07','2024-10-02 08:13:07'),(90,'slider_description','en','New Collection','2024-10-02 08:13:07','2024-10-02 08:13:07'),(91,'recaptcha_error','tr','Lütfen robot olmadığınızı doğrulayın.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(92,'recaptcha_error','en','Please verify that you are not a robot.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(93,'message_sended','tr','Mesaj gönderildi!','2024-10-02 08:13:07','2024-10-02 08:13:07'),(94,'message_sended','en','Message Sent!','2024-10-02 08:13:07','2024-10-02 08:13:07'),(95,'data_not_found','tr','Veri Bulunamadı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(96,'data_not_found','en','Data Not Found','2024-10-02 08:13:07','2024-10-02 08:13:07'),(97,'e_catalog_text','tr','E-Kataloğa göz atın','2024-10-02 08:13:07','2024-10-02 08:13:07'),(98,'e_catalog_text','en','Review E-Catalog','2024-10-02 08:13:07','2024-10-02 08:13:07'),(99,'instagram_text','tr','Bizi sosyal medya\'da takip edin!','2024-10-02 08:13:07','2024-10-02 08:13:07'),(100,'instagram_text','en','Follow us on social media!','2024-10-02 08:13:07','2024-10-02 08:13:07'),(101,'go_to_instagram','tr','Instagram Sayfasına Git','2024-10-02 08:13:07','2024-10-02 08:13:07'),(102,'go_to_instagram','en','Go to Instagram','2024-10-02 08:13:07','2024-10-02 08:13:07'),(103,'address','tr','Adres','2024-10-02 08:13:07','2024-10-02 08:13:07'),(104,'address','en','Address','2024-10-02 08:13:07','2024-10-02 08:13:07'),(105,'our_stores','tr','Mağazalarımız','2024-10-02 08:13:07','2024-10-02 08:13:07'),(106,'our_stores','en','Our Stores','2024-10-02 08:13:07','2024-10-02 08:13:07'),(107,'e_store','tr','Çevrimiçi Satış','2024-10-02 08:13:07','2024-10-02 08:13:07'),(108,'e_store','en','E-Store','2024-10-02 08:13:07','2024-10-02 08:13:07'),(109,'recent_posts','tr','Son Paylaşılanlar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(110,'recent_posts','en','Recent Posts','2024-10-02 08:13:07','2024-10-02 08:13:07'),(111,'results_found','tr','sonuç bulundu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(112,'results_found','en','results found','2024-10-02 08:13:07','2024-10-02 08:13:07'),(113,'marketing_module_entry','tr','Sipariş Modülü Girişi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(114,'marketing_module_entry','en','Marketing Module Entry','2024-10-02 08:13:07','2024-10-02 08:13:07'),(115,'cart','tr','Sepet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(116,'cart','en','Cart','2024-10-02 08:13:07','2024-10-02 08:13:07'),(117,'cart_empty','tr','Sepet Boş','2024-10-02 08:13:07','2024-10-02 08:13:07'),(118,'cart_empty','en','Cart Empty','2024-10-02 08:13:07','2024-10-02 08:13:07'),(119,'company_name','tr','Firma Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(120,'company_name','en','Company Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(121,'company_phone','tr','Firma Telefon','2024-10-02 08:13:07','2024-10-02 08:13:07'),(122,'company_phone','en','Company Phone','2024-10-02 08:13:07','2024-10-02 08:13:07'),(123,'company_user','tr','Yetkili Kişi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(124,'company_user','en','Company User','2024-10-02 08:13:07','2024-10-02 08:13:07'),(125,'discount_percent','tr','İndirim Yüzdesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(126,'discount_percent','en','Discount Percent','2024-10-02 08:13:07','2024-10-02 08:13:07'),(127,'discount_amount','tr','İndirim Tutarı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(128,'discount_amount','en','Discount Amount','2024-10-02 08:13:07','2024-10-02 08:13:07'),(129,'description','tr','Açıklama','2024-10-02 08:13:07','2024-10-02 08:13:07'),(130,'description','en','Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(131,'total_product','tr','Toplam Ürün','2024-10-02 08:13:07','2024-10-02 08:13:07'),(132,'total_product','en','Total Product','2024-10-02 08:13:07','2024-10-02 08:13:07'),(133,'total_quantity','tr','Toplam Adet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(134,'total_quantity','en','Total Quantity','2024-10-02 08:13:07','2024-10-02 08:13:07'),(135,'total_price','tr','Toplam Tutar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(136,'total_price','en','Total Price','2024-10-02 08:13:07','2024-10-02 08:13:07'),(137,'total_discounted_price','tr','Toplam İndirimli Tutar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(138,'total_discounted_price','en','Total Discounted Price','2024-10-02 08:13:07','2024-10-02 08:13:07'),(139,'category_name','tr','Kategori Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(140,'category_name','en','Category Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(141,'image','tr','Fotoğraf','2024-10-02 08:13:07','2024-10-02 08:13:07'),(142,'image','en','Image','2024-10-02 08:13:07','2024-10-02 08:13:07'),(143,'product_name','tr','Ürün Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(144,'product_name','en','Product Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(145,'product_price','tr','Ürün Fiyatı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(146,'product_price','en','Product Price','2024-10-02 08:13:07','2024-10-02 08:13:07'),(147,'obf','tr','Ön Bilgilendirme Formu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(148,'obf','en','Preliminary Information Form','2024-10-02 08:13:07','2024-10-02 08:13:07'),(149,'mss','tr','Mesafeli Satış Sözleşmesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(150,'mss','en','Preliminary Information Form','2024-10-02 08:13:07','2024-10-02 08:13:07'),(151,'delivery_address','tr','Teslimat Adresi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(152,'delivery_address','en','Delivery Address','2024-10-02 08:13:07','2024-10-02 08:13:07'),(153,'payment_methods','tr','Ödeme Yöntemleri','2024-10-02 08:13:07','2024-10-02 08:13:07'),(154,'payment_methods','en','Payment Methods','2024-10-02 08:13:07','2024-10-02 08:13:07'),(155,'payment_method','tr','Ödeme Yöntemi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(156,'payment_method','en','Payment Method','2024-10-02 08:13:07','2024-10-02 08:13:07'),(157,'my_cart','tr','Sepetim','2024-10-02 08:13:07','2024-10-02 08:13:07'),(158,'my_cart','en','My Cart','2024-10-02 08:13:07','2024-10-02 08:13:07'),(159,'full_name','tr','Ad Soyad','2024-10-02 08:13:07','2024-10-02 08:13:07'),(160,'full_name','en','Fullname','2024-10-02 08:13:07','2024-10-02 08:13:07'),(161,'card_number','tr','Kart Numarası','2024-10-02 08:13:07','2024-10-02 08:13:07'),(162,'card_number','en','Card Number','2024-10-02 08:13:07','2024-10-02 08:13:07'),(163,'card_number','tr','Son Kullanma Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(164,'card_number','en','Expiration Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(165,'agreement_text','tr','Ön bilgilendirme formunu ve Mesafeli satış sözleşmesini kabul ediyorum.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(166,'agreement_text','en','I accept the preliminary information form and the distance sales contract.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(167,'pay','tr','Ödeme Yap','2024-10-02 08:13:07','2024-10-02 08:13:07'),(168,'pay','en','Pay','2024-10-02 08:13:07','2024-10-02 08:13:07'),(169,'your_order_received','tr','Siparişiniz Alındı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(170,'your_order_not_received','tr','Siparişiniz Alınamadı.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(171,'your_order_received','en','Your Order Received','2024-10-02 08:13:07','2024-10-02 08:13:07'),(172,'order_summary','tr','Sipariş Özeti','2024-10-02 08:13:07','2024-10-02 08:13:07'),(173,'order_summary','en','Order Summary','2024-10-02 08:13:07','2024-10-02 08:13:07'),(174,'contact_information','tr','İletişim Bilgileri','2024-10-02 08:13:07','2024-10-02 08:13:07'),(175,'contact_information','en','Contact Information','2024-10-02 08:13:07','2024-10-02 08:13:07'),(176,'contact_information','en','Contact Information','2024-10-02 08:13:07','2024-10-02 08:13:07'),(177,'welcome','en','Welcome','2024-10-02 08:13:07','2024-10-02 08:13:07'),(178,'welcome','tr','Hoşgeldiniz','2024-10-02 08:13:07','2024-10-02 08:13:07'),(179,'login_message','en','Enter your email address and password to log into the system.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(180,'login_message','tr','E-posta adresinizi ve şifrenizi girererek sisteme giriş yapın.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(181,'password','en','Password','2024-10-02 08:13:07','2024-10-02 08:13:07'),(182,'password','tr','Şifre','2024-10-02 08:13:07','2024-10-02 08:13:07'),(183,'remember_me','en','Remember Me','2024-10-02 08:13:07','2024-10-02 08:13:07'),(184,'remember_me','tr','Beni Hatırla','2024-10-02 08:13:07','2024-10-02 08:13:07'),(185,'login','en','Log In','2024-10-02 08:13:07','2024-10-02 08:13:07'),(186,'login','tr','Giriş Yap','2024-10-02 08:13:07','2024-10-02 08:13:07'),(187,'forgot_password','en','Forgot Password','2024-10-02 08:13:07','2024-10-02 08:13:07'),(188,'forgot_password','tr','Şifremi Unuttum','2024-10-02 08:13:07','2024-10-02 08:13:07'),(189,'dashboard_title','tr','Site Yönetim Paneli','2024-10-02 08:13:07','2024-10-02 08:13:07'),(190,'dashboard_title','en','Website Management Panel','2024-10-02 08:13:07','2024-10-02 08:13:07'),(191,'pages','tr','Sayfalar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(192,'pages','en','Pages','2024-10-02 08:13:07','2024-10-02 08:13:07'),(193,'visit_site','tr','Siteye Git','2024-10-02 08:13:07','2024-10-02 08:13:07'),(194,'visit_site','en','Visit Site','2024-10-02 08:13:07','2024-10-02 08:13:07'),(195,'logout','tr','Çıkış Yap','2024-10-02 08:13:07','2024-10-02 08:13:07'),(196,'logout','en','Logout','2024-10-02 08:13:07','2024-10-02 08:13:07'),(197,'version','tr','Versiyon','2024-10-02 08:13:07','2024-10-02 08:13:07'),(198,'version','en','Version','2024-10-02 08:13:07','2024-10-02 08:13:07'),(199,'mark_all_as_read','en','Mark All as Read','2024-10-02 08:13:07','2024-10-02 08:13:07'),(200,'mark_all_as_read','tr','Tümünü Okundu Olarak İşaretle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(201,'no_notifications','tr','Bildirim Bulunamadı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(202,'no_notifications','en','No Notifications Found','2024-10-02 08:13:07','2024-10-02 08:13:07'),(203,'sliders','en','Sliders','2024-10-02 08:13:07','2024-10-02 08:13:07'),(204,'sliders','tr','Kaydırıcılar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(205,'messages','en','Messages','2024-10-02 08:13:07','2024-10-02 08:13:07'),(206,'messages','tr','Mesajlar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(207,'users','en','Users','2024-10-02 08:13:07','2024-10-02 08:13:07'),(208,'users','tr','Kullanıcılar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(209,'team','en','Team','2024-10-02 08:13:07','2024-10-02 08:13:07'),(210,'team','tr','Takım','2024-10-02 08:13:07','2024-10-02 08:13:07'),(211,'marketplace','en','Marketplace','2024-10-02 08:13:07','2024-10-02 08:13:07'),(212,'marketplace','tr','Pazar Yeri','2024-10-02 08:13:07','2024-10-02 08:13:07'),(213,'blog','en','Blog','2024-10-02 08:13:07','2024-10-02 08:13:07'),(214,'blog','tr','Blog','2024-10-02 08:13:07','2024-10-02 08:13:07'),(215,'configuration','en','Configuration','2024-10-02 08:13:07','2024-10-02 08:13:07'),(216,'configuration','tr','Yapılandırma','2024-10-02 08:13:07','2024-10-02 08:13:07'),(217,'product_features','en','Product Features','2024-10-02 08:13:07','2024-10-02 08:13:07'),(218,'product_features','tr','Ürün Özellikleri','2024-10-02 08:13:07','2024-10-02 08:13:07'),(219,'sales_report','en','Sales Report','2024-10-02 08:13:07','2024-10-02 08:13:07'),(220,'sales_report','tr','Satış Raporu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(221,'marketing_module','en','Marketing Module','2024-10-02 08:13:07','2024-10-02 08:13:07'),(222,'marketing_module','tr','Pazarlama Modülü','2024-10-02 08:13:07','2024-10-02 08:13:07'),(223,'posts','en','Post','2024-10-02 08:13:07','2024-10-02 08:13:07'),(224,'posts','tr','Gönderi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(225,'comments','en','Comments','2024-10-02 08:13:07','2024-10-02 08:13:07'),(226,'comments','tr','Yorumlar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(227,'lang_list','en','Language List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(228,'lang_list','tr','Dil Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(229,'website_settings','en','Website Settings','2024-10-02 08:13:07','2024-10-02 08:13:07'),(230,'website_settings','tr','Web Sitesi Ayarları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(231,'general_settings','en','General Settings','2024-10-02 08:13:07','2024-10-02 08:13:07'),(232,'general_settings','tr','Genel Ayarlar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(233,'database_update','en','Database Update','2024-10-02 08:13:07','2024-10-02 08:13:07'),(234,'database_update','tr','Veritabanı Güncellemesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(235,'currency_update','en','Currency Update','2024-10-02 08:13:07','2024-10-02 08:13:07'),(236,'currency_update','tr','Para Birimi Güncellemesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(237,'themes','en','Themes','2024-10-02 08:13:07','2024-10-02 08:13:07'),(238,'themes','tr','Temalar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(239,'gallery','en','Gallery','2024-10-02 08:13:07','2024-10-02 08:13:07'),(240,'gallery','tr','Galeri','2024-10-02 08:13:07','2024-10-02 08:13:07'),(241,'projects','en','Projects','2024-10-02 08:13:07','2024-10-02 08:13:07'),(242,'projects','tr','Projeler','2024-10-02 08:13:07','2024-10-02 08:13:07'),(243,'references','en','References','2024-10-02 08:13:07','2024-10-02 08:13:07'),(244,'references','tr','Referanslar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(245,'other_pages','en','Other Pages','2024-10-02 08:13:07','2024-10-02 08:13:07'),(246,'other_pages','tr','Diğer Sayfalar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(247,'rates','en','Rates','2024-10-02 08:13:07','2024-10-02 08:13:07'),(248,'rates','tr','Oranlar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(249,'welcome_message','en','Welcome','2024-10-02 08:13:07','2024-10-02 08:13:07'),(250,'welcome_message','tr','Hoşgeldin','2024-10-02 08:13:07','2024-10-02 08:13:07'),(251,'admin_panel_welcome','en','Welcome to the administration panel, you can manage your website settings from here.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(252,'admin_panel_welcome','tr','Yönetim paneline hoşgeldiniz, buradan yapacağınız ayarlar ile sitenizi yönetebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(253,'total_products','en','Total Products','2024-10-02 08:13:07','2024-10-02 08:13:07'),(254,'total_products','tr','Toplam Ürün','2024-10-02 08:13:07','2024-10-02 08:13:07'),(255,'total_categories','en','Total Categories','2024-10-02 08:13:07','2024-10-02 08:13:07'),(256,'total_categories','tr','Toplam Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(257,'total_posts','en','Total Posts','2024-10-02 08:13:07','2024-10-02 08:13:07'),(258,'total_posts','tr','Toplam Yazı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(259,'total_messages','en','Total Messages','2024-10-02 08:13:07','2024-10-02 08:13:07'),(260,'total_messages','tr','Toplam Mesaj','2024-10-02 08:13:07','2024-10-02 08:13:07'),(261,'category_product_count_label','en','# Number of Products in Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(262,'category_product_count_label','tr','# Kategoriye Bağlı Ürün Sayıları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(263,'count','en','Count','2024-10-02 08:13:07','2024-10-02 08:13:07'),(264,'count','tr','Adet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(265,'product_count_by_category','en','Number of Products by Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(266,'product_count_by_category','tr','Kategoriye Bağlı Ürün Sayıları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(267,'category_list_title','en','Category List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(268,'category_list_title','tr','Kategori Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(269,'category_list_description','en','You can edit the categories in the category list.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(270,'category_list_description','tr','Kategori listesindeki kategorileri düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(271,'add_new_category','en','Add New Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(272,'add_new_category','tr','Yeni Kategori Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(273,'category_name','en','Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(274,'category_name','tr','Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(275,'category_order','en','Order','2024-10-02 08:13:07','2024-10-02 08:13:07'),(276,'category_order','tr','Sıra','2024-10-02 08:13:07','2024-10-02 08:13:07'),(277,'category_type','en','Category Type','2024-10-02 08:13:07','2024-10-02 08:13:07'),(278,'category_type','tr','Kategori Türü','2024-10-02 08:13:07','2024-10-02 08:13:07'),(279,'created_at','en','Date Created','2024-10-02 08:13:07','2024-10-02 08:13:07'),(280,'created_at','tr','Kayıt Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(281,'edit_delete_buttons','en','Edit/Delete','2024-10-02 08:13:07','2024-10-02 08:13:07'),(282,'edit_delete_buttons','tr','Düzenle/Sil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(283,'main_category','en','Main Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(284,'main_category','tr','Ana Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(285,'edit_delete_buttons','en','Edit/Delete','2024-10-02 08:13:07','2024-10-02 08:13:07'),(286,'edit_delete_buttons','tr','Düzenle/Sil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(287,'sub_category','en','Sub Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(288,'sub_category','tr','Alt Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(289,'delete_confirmation','en','Are you sure you want to delete this category?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(290,'delete_confirmation','tr','Bu kategoriyi silmek istediğinize emin misiniz?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(291,'forexample_bedroom','en','Exp: Bedroom','2024-10-02 08:13:07','2024-10-02 08:13:07'),(292,'forexample_bedroom','tr','Örn: Yatak Odası','2024-10-02 08:13:07','2024-10-02 08:13:07'),(293,'main_category_title','en','Main Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(294,'main_category_title','tr','Üst Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(295,'category_photo_title','en','Category Photo','2024-10-02 08:13:07','2024-10-02 08:13:07'),(296,'category_photo_title','tr','Kategori Fotoğrafı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(297,'content','en','Content','2024-10-02 08:13:07','2024-10-02 08:13:07'),(298,'content','tr','İçerik','2024-10-02 08:13:07','2024-10-02 08:13:07'),(299,'add_new_category','en','Add New Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(300,'add_new_category','tr','Yeni Kategori Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(301,'slider_list_title','en','Slider List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(302,'slider_list_title','tr','Slider Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(303,'slider_management_info','en','You can manage sliders here.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(304,'slider_management_info','tr','Sliderları buradan yönetebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(305,'add_new_slider','en','Add New Slide','2024-10-02 08:13:07','2024-10-02 08:13:07'),(306,'add_new_slider','tr','+ Yeni Slide Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(307,'photo','en','Photo','2024-10-02 08:13:07','2024-10-02 08:13:07'),(308,'photo','tr','Fotoğraf','2024-10-02 08:13:07','2024-10-02 08:13:07'),(309,'title','en','Title','2024-10-02 08:13:07','2024-10-02 08:13:07'),(310,'title','tr','Başlık','2024-10-02 08:13:07','2024-10-02 08:13:07'),(311,'language','en','Language','2024-10-02 08:13:07','2024-10-02 08:13:07'),(312,'language','tr','Dil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(313,'position','en','Position','2024-10-02 08:13:07','2024-10-02 08:13:07'),(314,'position','tr','Sıra','2024-10-02 08:13:07','2024-10-02 08:13:07'),(315,'registration_date','en','Registration Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(316,'registration_date','tr','Kayıt Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(317,'edit_delete','en','Edit/Delete','2024-10-02 08:13:07','2024-10-02 08:13:07'),(318,'edit_delete','tr','Düzenle/Sil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(319,'url_input_instruction','en','Please enter the URL of the page you want to open when clicked.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(320,'url_input_instruction','tr','Üzerine tıklandığında açılmasını istediğiniz sayfanın URL\'ini giriniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(321,'select_display_fields','en','Select the fields to be displayed','2024-10-02 08:13:07','2024-10-02 08:13:07'),(322,'select_display_fields','tr','Gösterileceği Alanları Seçin','2024-10-02 08:13:07','2024-10-02 08:13:07'),(323,'url_redirect','en','URL Redirect','2024-10-02 08:13:07','2024-10-02 08:13:07'),(324,'url_redirect','tr','URL Yönlendirme','2024-10-02 08:13:07','2024-10-02 08:13:07'),(325,'message_list_title','en','Message List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(326,'message_list_title','tr','Mesaj Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(327,'message_list_description','en','You can edit the messages in the message list.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(328,'message_list_description','tr','Mesaj listesindeki mesajları düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(329,'created_at_label','en','Creation Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(330,'created_at_label','tr','Oluşturulma Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(331,'name_label','en','Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(332,'name_label','tr','Ad','2024-10-02 08:13:07','2024-10-02 08:13:07'),(333,'surname_label','en','Surname','2024-10-02 08:13:07','2024-10-02 08:13:07'),(334,'surname_label','tr','Soyad','2024-10-02 08:13:07','2024-10-02 08:13:07'),(335,'email_label','en','Email','2024-10-02 08:13:07','2024-10-02 08:13:07'),(336,'email_label','tr','E-Posta','2024-10-02 08:13:07','2024-10-02 08:13:07'),(337,'message_label','en','Message','2024-10-02 08:13:07','2024-10-02 08:13:07'),(338,'message_label','tr','Mesaj','2024-10-02 08:13:07','2024-10-02 08:13:07'),(339,'created_at_label','en','Creation Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(340,'created_at_label','tr','Oluşturulma Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(341,'delete_label','en','Delete','2024-10-02 08:13:07','2024-10-02 08:13:07'),(342,'delete_label','tr','Sil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(343,'user_list_title','en','User List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(344,'user_list_title','tr','Kullanıcı Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(345,'user_list_description','en','You can edit the users in the user list.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(346,'user_list_description','tr','Kullanıcı listesindeki kullanıcıları düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(347,'add_new_user','en','Add New User','2024-10-02 08:13:07','2024-10-02 08:13:07'),(348,'add_new_user','tr','Yeni Kullanıcı Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(349,'full_name_label','en','Full Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(350,'full_name_label','tr','Ad Soyad','2024-10-02 08:13:07','2024-10-02 08:13:07'),(351,'registration_date_label','en','Registration Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(352,'registration_date_label','tr','Kayıt Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(353,'authority_label','en','Authority','2024-10-02 08:13:07','2024-10-02 08:13:07'),(354,'authority_label','tr','Yetki','2024-10-02 08:13:07','2024-10-02 08:13:07'),(355,'edit_label','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(356,'edit_label','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(357,'add_user_title','en','Add New User','2024-10-02 08:13:07','2024-10-02 08:13:07'),(358,'add_user_title','tr','Yeni Kullanıcı Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(359,'first_name_label','en','First Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(360,'first_name_label','tr','Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(361,'last_name_label','en','Last Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(362,'last_name_label','tr','Soyadı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(363,'email_label','en','Email','2024-10-02 08:13:07','2024-10-02 08:13:07'),(364,'email_label','tr','E-Posta Adresi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(365,'permission_label','en','Permission','2024-10-02 08:13:07','2024-10-02 08:13:07'),(366,'permission_label','tr','Yetki','2024-10-02 08:13:07','2024-10-02 08:13:07'),(367,'select_permission','en','Select...','2024-10-02 08:13:07','2024-10-02 08:13:07'),(368,'select_permission','tr','Seçiniz...','2024-10-02 08:13:07','2024-10-02 08:13:07'),(369,'discount_percent_label','en','Discount Percent','2024-10-02 08:13:07','2024-10-02 08:13:07'),(370,'discount_percent_label','tr','İndirim Yüzdesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(371,'discount_note','en','Set to 0 for no discount.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(372,'discount_note','tr','İndirim yoksa 0 olarak ayarlayın.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(373,'password_operations_title','en','Password Operations','2024-10-02 08:13:07','2024-10-02 08:13:07'),(374,'password_operations_title','tr','Şifre İşlemleri','2024-10-02 08:13:07','2024-10-02 08:13:07'),(375,'new_password_label','en','New Password','2024-10-02 08:13:07','2024-10-02 08:13:07'),(376,'new_password_label','tr','Yeni Şifre','2024-10-02 08:13:07','2024-10-02 08:13:07'),(377,'password_confirmation_label','en','Password Confirmation','2024-10-02 08:13:07','2024-10-02 08:13:07'),(378,'password_confirmation_label','tr','Şifre Onayı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(379,'save_button_label','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(380,'save_button_label','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(381,'team_title','en','Team','2024-10-02 08:13:07','2024-10-02 08:13:07'),(382,'team_title','tr','Ekip','2024-10-02 08:13:07','2024-10-02 08:13:07'),(383,'team_list_title','en','Team List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(384,'team_list_title','tr','Ekip Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(385,'team_list_description','en','You can edit team members in the team list.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(386,'team_list_description','tr','Ekip listesindeki ekip üyelerini düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(387,'add_team_member','en','Add New Team Member','2024-10-02 08:13:07','2024-10-02 08:13:07'),(388,'add_team_member','tr','Yeni Ekip Üyesi Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(389,'photo_label','en','Photo','2024-10-02 08:13:07','2024-10-02 08:13:07'),(390,'photo_label','tr','Fotoğraf','2024-10-02 08:13:07','2024-10-02 08:13:07'),(391,'position_label','en','Position','2024-10-02 08:13:07','2024-10-02 08:13:07'),(392,'position_label','tr','Pozisyon','2024-10-02 08:13:07','2024-10-02 08:13:07'),(393,'social_media_accounts_label','en','Social Media Accounts','2024-10-02 08:13:07','2024-10-02 08:13:07'),(394,'social_media_accounts_label','tr','Sosyal Medya Hesapları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(395,'created_at_label','en','Creation Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(396,'created_at_label','tr','Oluşturulma Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(397,'edit_label','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(398,'edit_label','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(399,'photo_not_found','en','Photo Not Found','2024-10-02 08:13:07','2024-10-02 08:13:07'),(400,'photo_not_found','tr','Fotoğraf Bulunamadı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(401,'add_team_member_title','en','Add Team Member','2024-10-02 08:13:07','2024-10-02 08:13:07'),(402,'add_team_member_title','tr','Ekip Üyesi Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(403,'general_information','en','General Information','2024-10-02 08:13:07','2024-10-02 08:13:07'),(404,'general_information','tr','Genel Bilgiler','2024-10-02 08:13:07','2024-10-02 08:13:07'),(405,'full_name_label','en','Full Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(406,'full_name_label','tr','İsim Soyisim','2024-10-02 08:13:07','2024-10-02 08:13:07'),(407,'position_label','en','Position','2024-10-02 08:13:07','2024-10-02 08:13:07'),(408,'position_label','tr','Pozisyon','2024-10-02 08:13:07','2024-10-02 08:13:07'),(409,'position_placeholder','en','Position held','2024-10-02 08:13:07','2024-10-02 08:13:07'),(410,'position_placeholder','tr','Çalıştığı pozisyon','2024-10-02 08:13:07','2024-10-02 08:13:07'),(411,'photo_label','en','Photo','2024-10-02 08:13:07','2024-10-02 08:13:07'),(412,'photo_label','tr','Fotoğraf','2024-10-02 08:13:07','2024-10-02 08:13:07'),(413,'social_media_accounts','en','Social Media Accounts','2024-10-02 08:13:07','2024-10-02 08:13:07'),(414,'social_media_accounts','tr','Sosyal Medya Hesapları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(415,'url_placeholder','en',':platform url','2024-10-02 08:13:07','2024-10-02 08:13:07'),(416,'url_placeholder','tr',':platform url','2024-10-02 08:13:07','2024-10-02 08:13:07'),(417,'save_button','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(418,'save_button','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(419,'enter_name_placeholder','en','Enter full name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(420,'enter_name_placeholder','tr','Tam ismi girin','2024-10-02 08:13:07','2024-10-02 08:13:07'),(421,'edit_about_us_page_title','en','Edit About Us Page','2024-10-02 08:13:07','2024-10-02 08:13:07'),(422,'edit_about_us_page_title','tr','Hakkımızda Sayfasını Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(423,'content_label','en','Content','2024-10-02 08:13:07','2024-10-02 08:13:07'),(424,'content_label','tr','İçerik','2024-10-02 08:13:07','2024-10-02 08:13:07'),(425,'save_button','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(426,'save_button','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(427,'contact_settings_title','en','Contact Settings','2024-10-02 08:13:07','2024-10-02 08:13:07'),(428,'contact_settings_title','tr','İletişim Ayarları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(429,'contact_email_label','en','Email Address','2024-10-02 08:13:07','2024-10-02 08:13:07'),(430,'contact_email_label','tr','E-Posta Adresi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(431,'contact_email_example','en','Example: info@softrede.com','2024-10-02 08:13:07','2024-10-02 08:13:07'),(432,'contact_email_example','tr','Örnek: info@softrede.com','2024-10-02 08:13:07','2024-10-02 08:13:07'),(433,'contact_phone_label','en','Phone Number','2024-10-02 08:13:07','2024-10-02 08:13:07'),(434,'contact_phone_label','tr','Telefon Numarası','2024-10-02 08:13:07','2024-10-02 08:13:07'),(435,'contact_phone_example','en','Example: +90 530 123 45 67','2024-10-02 08:13:07','2024-10-02 08:13:07'),(436,'contact_phone_example','tr','Örnek: +90 530 123 45 67','2024-10-02 08:13:07','2024-10-02 08:13:07'),(437,'contact_fax_label','en','Fax','2024-10-02 08:13:07','2024-10-02 08:13:07'),(438,'contact_fax_label','tr','Fax','2024-10-02 08:13:07','2024-10-02 08:13:07'),(439,'contact_fax_example','en','Example: +90 530 123 45 67','2024-10-02 08:13:07','2024-10-02 08:13:07'),(440,'contact_fax_example','tr','Örnek: +90 530 123 45 67','2024-10-02 08:13:07','2024-10-02 08:13:07'),(441,'contact_whatsapp_label','en','WhatsApp Contact Number','2024-10-02 08:13:07','2024-10-02 08:13:07'),(442,'contact_whatsapp_label','tr','Whatsapp İletişim Numarası','2024-10-02 08:13:07','2024-10-02 08:13:07'),(443,'contact_whatsapp_example','en','Example: +90 530 123 45 67','2024-10-02 08:13:07','2024-10-02 08:13:07'),(444,'contact_whatsapp_example','tr','Örnek: +90 530 123 45 67','2024-10-02 08:13:07','2024-10-02 08:13:07'),(445,'contact_address_label','en','Address','2024-10-02 08:13:07','2024-10-02 08:13:07'),(446,'contact_address_label','tr','Adres','2024-10-02 08:13:07','2024-10-02 08:13:07'),(447,'contact_address_example','en','Example: İstiklal Caddesi. Atatürk Sokak. NO: 10. İstanbul/Beylikdüzü','2024-10-02 08:13:07','2024-10-02 08:13:07'),(448,'contact_address_example','tr','Örnek: İstiklal Caddesi. Atatürk Sokak. NO: 10. İstanbul/Beylikdüzü','2024-10-02 08:13:07','2024-10-02 08:13:07'),(449,'google_maps_label','en','Google Maps Iframe Code','2024-10-02 08:13:07','2024-10-02 08:13:07'),(450,'google_maps_label','tr','Google Harita Iframe Kodu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(451,'google_maps_example','en','You can paste the HTML code that appears by clicking the \'Share\' button on Google Maps here. If you want it to display properly on your site, change <b>width=\"650\"</b> to <b>width=\"100%\"</b> to ensure it looks good on mobile or tablet as well.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(452,'google_maps_example','tr','Google haritalardaki \"Paylaş\" butonuna basarak, çıkan HTML kodunu buraya koyabilirsiniz. Sitenizde düzgün gözükmesini istiyorsanız <b>width=\"650\"</b> yazan yere <b>width=\"100%\"</b> yazarak mobil veya tabletlerde de düzgün gözükmesini sağlayabilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(453,'header_codes_label','en','Necessary Codes Between Head Tags','2024-10-02 08:13:07','2024-10-02 08:13:07'),(454,'header_codes_label','tr','Head Etiketi Arası Gerekli Kodlar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(455,'header_codes_example','en','You can write the codes that you need to add to the head tags here. (Live Support, Google Analytics, etc.)','2024-10-02 08:13:07','2024-10-02 08:13:07'),(456,'header_codes_example','tr','Head taglarına eklemeniz gereken kodları buraya yazabilirsiniz. (Canlı Destek, Google analistik vb.)','2024-10-02 08:13:07','2024-10-02 08:13:07'),(457,'save_button_label','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(458,'save_button_label','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(459,'projects_title','en','Projects','2024-10-02 08:13:07','2024-10-02 08:13:07'),(460,'projects_title','tr','Projeler','2024-10-02 08:13:07','2024-10-02 08:13:07'),(461,'projects_description','en','You can edit projects here.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(462,'projects_description','tr','Projeleri buradan düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(463,'create_new_project','en','Create New Project','2024-10-02 08:13:07','2024-10-02 08:13:07'),(464,'create_new_project','tr','Yeni Proje Oluştur','2024-10-02 08:13:07','2024-10-02 08:13:07'),(465,'image_label','en','Image','2024-10-02 08:13:07','2024-10-02 08:13:07'),(466,'image_label','tr','Fotoğraf','2024-10-02 08:13:07','2024-10-02 08:13:07'),(467,'title_label','en','Title','2024-10-02 08:13:07','2024-10-02 08:13:07'),(468,'title_label','tr','Başlık','2024-10-02 08:13:07','2024-10-02 08:13:07'),(469,'description_label','en','Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(470,'description_label','tr','Açıklama','2024-10-02 08:13:07','2024-10-02 08:13:07'),(471,'created_at_label','en','Creation Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(472,'created_at_label','tr','Oluşturulma Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(473,'edit_label','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(474,'edit_label','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(475,'create_new_project','en','Create New Project','2024-10-02 08:13:07','2024-10-02 08:13:07'),(476,'create_new_project','tr','Yeni Proje Oluştur','2024-10-02 08:13:07','2024-10-02 08:13:07'),(477,'title_label','en','Title','2024-10-02 08:13:07','2024-10-02 08:13:07'),(478,'title_label','tr','Başlık','2024-10-02 08:13:07','2024-10-02 08:13:07'),(479,'short_description_label','en','Short Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(480,'short_description_label','tr','Kısa Açıklama','2024-10-02 08:13:07','2024-10-02 08:13:07'),(481,'content_label','en','Content','2024-10-02 08:13:07','2024-10-02 08:13:07'),(482,'content_label','tr','İçerik','2024-10-02 08:13:07','2024-10-02 08:13:07'),(483,'category_label','en','Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(484,'category_label','tr','Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(485,'other_photos_label','en','Other Photos','2024-10-02 08:13:07','2024-10-02 08:13:07'),(486,'other_photos_label','tr','Diğer Fotoğraflar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(487,'select_option','en','Select an Option','2024-10-02 08:13:07','2024-10-02 08:13:07'),(488,'select_option','tr','Bir Seçenek Seçin','2024-10-02 08:13:07','2024-10-02 08:13:07'),(489,'add_new_category','en','Add New Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(490,'add_new_category','tr','Yeni Kategori Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(491,'list_all_categories','en','List All Categories','2024-10-02 08:13:07','2024-10-02 08:13:07'),(492,'list_all_categories','tr','Tüm Kategorileri Listele','2024-10-02 08:13:07','2024-10-02 08:13:07'),(493,'save_button','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(494,'save_button','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(495,'create_new_project_category','en','Create New Project Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(496,'create_new_project_category','tr','Yeni Proje Kategorisi Oluştur','2024-10-02 08:13:07','2024-10-02 08:13:07'),(497,'title_label','en','Title','2024-10-02 08:13:07','2024-10-02 08:13:07'),(498,'title_label','tr','Başlık','2024-10-02 08:13:07','2024-10-02 08:13:07'),(499,'short_description_label','en','Short Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(500,'short_description_label','tr','Kısa Açıklama','2024-10-02 08:13:07','2024-10-02 08:13:07'),(501,'content_label','en','Content','2024-10-02 08:13:07','2024-10-02 08:13:07'),(502,'content_label','tr','İçerik','2024-10-02 08:13:07','2024-10-02 08:13:07'),(503,'save_button','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(504,'save_button','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(505,'project_categories_title','en','Project Categories','2024-10-02 08:13:07','2024-10-02 08:13:07'),(506,'project_categories_title','tr','Proje Kategorileri','2024-10-02 08:13:07','2024-10-02 08:13:07'),(507,'project_categories_description','en','You can edit the project categories.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(508,'project_categories_description','tr','Proje kategorilerini düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(509,'create_new_category','en','Create New Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(510,'create_new_category','tr','Yeni Kategori Oluştur','2024-10-02 08:13:07','2024-10-02 08:13:07'),(511,'image_label','en','Image','2024-10-02 08:13:07','2024-10-02 08:13:07'),(512,'image_label','tr','Fotoğraf','2024-10-02 08:13:07','2024-10-02 08:13:07'),(513,'title_label','en','Title','2024-10-02 08:13:07','2024-10-02 08:13:07'),(514,'title_label','tr','Başlık','2024-10-02 08:13:07','2024-10-02 08:13:07'),(515,'description_label','en','Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(516,'description_label','tr','Açıklama','2024-10-02 08:13:07','2024-10-02 08:13:07'),(517,'created_at_label','en','Creation Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(518,'created_at_label','tr','Oluşturulma Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(519,'edit_label','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(520,'edit_label','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(521,'references_title','en','References','2024-10-02 08:13:07','2024-10-02 08:13:07'),(522,'references_title','tr','Referanslar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(523,'references_header','en','References','2024-10-02 08:13:07','2024-10-02 08:13:07'),(524,'references_header','tr','Referanslar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(525,'references_description','en','You can edit the references in the reference list.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(526,'references_description','tr','Referanslar listesindeki referansları düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(527,'create_new_reference','en','Create New Reference','2024-10-02 08:13:07','2024-10-02 08:13:07'),(528,'create_new_reference','tr','Yeni Referans Oluştur','2024-10-02 08:13:07','2024-10-02 08:13:07'),(529,'photo_label','en','Photo','2024-10-02 08:13:07','2024-10-02 08:13:07'),(530,'photo_label','tr','Fotoğraf','2024-10-02 08:13:07','2024-10-02 08:13:07'),(531,'title_label','en','Title','2024-10-02 08:13:07','2024-10-02 08:13:07'),(532,'title_label','tr','Başlık','2024-10-02 08:13:07','2024-10-02 08:13:07'),(533,'description_label','en','Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(534,'description_label','tr','Açıklama','2024-10-02 08:13:07','2024-10-02 08:13:07'),(535,'created_at_label','en','Creation Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(536,'created_at_label','tr','Oluşturulma Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(537,'edit_label','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(538,'edit_label','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(539,'create_new_reference','en','Create New Reference','2024-10-02 08:13:07','2024-10-02 08:13:07'),(540,'create_new_reference','tr','Yeni Referans Oluştur','2024-10-02 08:13:07','2024-10-02 08:13:07'),(541,'title_label','en','Title','2024-10-02 08:13:07','2024-10-02 08:13:07'),(542,'title_label','tr','Başlık','2024-10-02 08:13:07','2024-10-02 08:13:07'),(543,'short_description_label','en','Short Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(544,'short_description_label','tr','Kısa Açıklama','2024-10-02 08:13:07','2024-10-02 08:13:07'),(545,'content_label','en','Content','2024-10-02 08:13:07','2024-10-02 08:13:07'),(546,'content_label','tr','İçerik','2024-10-02 08:13:07','2024-10-02 08:13:07'),(547,'representative_photo_label','en','Representation Photo','2024-10-02 08:13:07','2024-10-02 08:13:07'),(548,'representative_photo_label','tr','Temsil Fotoğrafı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(549,'other_photos_label','en','Other Photos','2024-10-02 08:13:07','2024-10-02 08:13:07'),(550,'other_photos_label','tr','Diğer Fotoğraflar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(551,'save_button','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(552,'save_button','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(553,'gallery_title','en','Gallery','2024-10-02 08:13:07','2024-10-02 08:13:07'),(554,'gallery_title','tr','Galeri','2024-10-02 08:13:07','2024-10-02 08:13:07'),(555,'gallery_description','en','You can manage the gallery in the table below.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(556,'gallery_description','tr','Galeriyi aşağıdaki tabloda düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(557,'create_new_gallery','en','Create New Gallery Data','2024-10-02 08:13:07','2024-10-02 08:13:07'),(558,'create_new_gallery','tr','Yeni Galeri Verisi Oluştur','2024-10-02 08:13:07','2024-10-02 08:13:07'),(559,'media_label','en','Media','2024-10-02 08:13:07','2024-10-02 08:13:07'),(560,'media_label','tr','Medya','2024-10-02 08:13:07','2024-10-02 08:13:07'),(561,'type_label','en','Type','2024-10-02 08:13:07','2024-10-02 08:13:07'),(562,'type_label','tr','Tip','2024-10-02 08:13:07','2024-10-02 08:13:07'),(563,'title_label','en','Title','2024-10-02 08:13:07','2024-10-02 08:13:07'),(564,'title_label','tr','Başlık','2024-10-02 08:13:07','2024-10-02 08:13:07'),(565,'description_label','en','Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(566,'description_label','tr','Açıklama','2024-10-02 08:13:07','2024-10-02 08:13:07'),(567,'created_at_label','en','Created At','2024-10-02 08:13:07','2024-10-02 08:13:07'),(568,'created_at_label','tr','Oluşturulma Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(569,'edit_label','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(570,'edit_label','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(571,'photo_label','en','Photo','2024-10-02 08:13:07','2024-10-02 08:13:07'),(572,'photo_label','tr','Fotoğraf','2024-10-02 08:13:07','2024-10-02 08:13:07'),(573,'video_label','en','Video','2024-10-02 08:13:07','2024-10-02 08:13:07'),(574,'video_label','tr','Video','2024-10-02 08:13:07','2024-10-02 08:13:07'),(575,'create_gallery_title','en','Create New Gallery','2024-10-02 08:13:07','2024-10-02 08:13:07'),(576,'create_gallery_title','tr','Yeni Galeri Oluştur','2024-10-02 08:13:07','2024-10-02 08:13:07'),(577,'title_label','en','Title','2024-10-02 08:13:07','2024-10-02 08:13:07'),(578,'title_label','tr','Başlık','2024-10-02 08:13:07','2024-10-02 08:13:07'),(579,'short_description_label','en','Short Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(580,'short_description_label','tr','Kısa Açıklama','2024-10-02 08:13:07','2024-10-02 08:13:07'),(581,'category_label','en','Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(582,'category_label','tr','Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(583,'select_option','en','Select','2024-10-02 08:13:07','2024-10-02 08:13:07'),(584,'select_option','tr','Seçiniz','2024-10-02 08:13:07','2024-10-02 08:13:07'),(585,'add_category_link','en','Don\'t have the category you\'re looking for? Add a new category.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(586,'add_category_link','tr','Aradığınız kategori yok mu? Yeni kategori ekleyin.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(587,'list_all_categories_link','en','List all categories.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(588,'list_all_categories_link','tr','Tüm Kategorileri Listeleyin.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(589,'representative_media_label','en','Representation Media','2024-10-02 08:13:07','2024-10-02 08:13:07'),(590,'representative_media_label','tr','Temsil Medya','2024-10-02 08:13:07','2024-10-02 08:13:07'),(591,'save_button','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(592,'save_button','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(593,'create_gallery_category','en','Create New Gallery Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(594,'create_gallery_category','tr','Yeni Galeri Kategorisi Oluştur','2024-10-02 08:13:07','2024-10-02 08:13:07'),(595,'title_label','en','Title','2024-10-02 08:13:07','2024-10-02 08:13:07'),(596,'title_label','tr','Başlık','2024-10-02 08:13:07','2024-10-02 08:13:07'),(597,'short_description_label','en','Short Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(598,'short_description_label','tr','Kısa Açıklama','2024-10-02 08:13:07','2024-10-02 08:13:07'),(599,'content_label','en','Content','2024-10-02 08:13:07','2024-10-02 08:13:07'),(600,'content_label','tr','İçerik','2024-10-02 08:13:07','2024-10-02 08:13:07'),(601,'representative_photo_label','en','Representation Photo','2024-10-02 08:13:07','2024-10-02 08:13:07'),(602,'representative_photo_label','tr','Temsil Fotoğrafı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(603,'save_button','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(604,'save_button','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(605,'gallery_categories_title','en','Gallery Categories','2024-10-02 08:13:07','2024-10-02 08:13:07'),(606,'gallery_categories_title','tr','Galeri Kategorileri','2024-10-02 08:13:07','2024-10-02 08:13:07'),(607,'gallery_categories_description','en','You can manage gallery categories.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(608,'gallery_categories_description','tr','Galeri kategorilerini düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(609,'create_new_category','en','Create New Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(610,'create_new_category','tr','Yeni Kategori Oluştur','2024-10-02 08:13:07','2024-10-02 08:13:07'),(611,'photo_label','en','Photo','2024-10-02 08:13:07','2024-10-02 08:13:07'),(612,'photo_label','tr','Fotoğraf','2024-10-02 08:13:07','2024-10-02 08:13:07'),(613,'title_label','en','Title','2024-10-02 08:13:07','2024-10-02 08:13:07'),(614,'title_label','tr','Başlık','2024-10-02 08:13:07','2024-10-02 08:13:07'),(615,'description_label','en','Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(616,'description_label','tr','Açıklama','2024-10-02 08:13:07','2024-10-02 08:13:07'),(617,'created_at_label','en','Creation Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(618,'created_at_label','tr','Oluşturulma Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(619,'edit_label','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(620,'edit_label','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(621,'other_pages_title','en','Other Pages','2024-10-02 08:13:07','2024-10-02 08:13:07'),(622,'other_pages_title','tr','Diğer Sayfalar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(623,'other_pages_description','en','You can manage other pages from here.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(624,'other_pages_description','tr','Diğer sayfaları buradan yönetebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(625,'page_name_label','en','Page Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(626,'page_name_label','tr','Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(627,'status_label','en','Status','2024-10-02 08:13:07','2024-10-02 08:13:07'),(628,'status_label','tr','Durumu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(629,'url_label','en','URL','2024-10-02 08:13:07','2024-10-02 08:13:07'),(630,'url_label','tr','URL','2024-10-02 08:13:07','2024-10-02 08:13:07'),(631,'edit_delete_label','en','Edit/Delete','2024-10-02 08:13:07','2024-10-02 08:13:07'),(632,'edit_delete_label','tr','Düzenle/Sil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(633,'visit_label','en','Visit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(634,'visit_label','tr','Ziyaret Et','2024-10-02 08:13:07','2024-10-02 08:13:07'),(635,'main_category_label','en','Main Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(636,'main_category_label','tr','Ana Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(637,'sub_category_label','en','Sub Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(638,'sub_category_label','tr','Alt Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(639,'edit_label','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(640,'edit_label','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(641,'edit_page_title','en','Edit Page:','2024-10-02 08:13:07','2024-10-02 08:13:07'),(642,'edit_page_title','tr','Sayfa Düzenle:','2024-10-02 08:13:07','2024-10-02 08:13:07'),(643,'content_label','en','Content','2024-10-02 08:13:07','2024-10-02 08:13:07'),(644,'content_label','tr','İçerik','2024-10-02 08:13:07','2024-10-02 08:13:07'),(645,'page_status_label','en','Page Status','2024-10-02 08:13:07','2024-10-02 08:13:07'),(646,'page_status_label','tr','Sayfa Durumu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(647,'active_label','en','Active','2024-10-02 08:13:07','2024-10-02 08:13:07'),(648,'active_label','tr','Aktif','2024-10-02 08:13:07','2024-10-02 08:13:07'),(649,'inactive_label','en','Inactive','2024-10-02 08:13:07','2024-10-02 08:13:07'),(650,'inactive_label','tr','Pasif','2024-10-02 08:13:07','2024-10-02 08:13:07'),(651,'save_button','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(652,'save_button','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(653,'order_list_title','en','Order List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(654,'order_list_title','tr','Sipariş Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(655,'order_list_description','en','You can manage orders here.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(656,'order_list_description','tr','Siparişleri buradan yönetebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(657,'order_number_label','en','Order Number','2024-10-02 08:13:07','2024-10-02 08:13:07'),(658,'order_number_label','tr','Sipariş Numarası','2024-10-02 08:13:07','2024-10-02 08:13:07'),(659,'full_name_label','en','Full Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(660,'full_name_label','tr','Ad Soyad','2024-10-02 08:13:07','2024-10-02 08:13:07'),(661,'amount_label','en','Amount','2024-10-02 08:13:07','2024-10-02 08:13:07'),(662,'amount_label','tr','Tutar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(663,'product_count_label','en','Product Count','2024-10-02 08:13:07','2024-10-02 08:13:07'),(664,'product_count_label','tr','Ürün Sayısı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(665,'order_status_label','en','Order Status','2024-10-02 08:13:07','2024-10-02 08:13:07'),(666,'order_status_label','tr','Sipariş Durumu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(667,'payment_status_label','en','Payment Status','2024-10-02 08:13:07','2024-10-02 08:13:07'),(668,'payment_status_label','tr','Ödeme Durumu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(669,'created_at_label','en','Created At','2024-10-02 08:13:07','2024-10-02 08:13:07'),(670,'created_at_label','tr','Oluşturulma Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(671,'edit_label','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(672,'edit_label','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(673,'pending_label','en','Pending','2024-10-02 08:13:07','2024-10-02 08:13:07'),(674,'pending_label','tr','Bekliyor','2024-10-02 08:13:07','2024-10-02 08:13:07'),(675,'approved_label','en','Approved','2024-10-02 08:13:07','2024-10-02 08:13:07'),(676,'approved_label','tr','Onaylandı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(677,'rejected_label','en','Rejected','2024-10-02 08:13:07','2024-10-02 08:13:07'),(678,'rejected_label','tr','Reddedildi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(679,'return_request_label','en','Return Request','2024-10-02 08:13:07','2024-10-02 08:13:07'),(680,'return_request_label','tr','İade Talebi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(681,'payment_received_label','en','Payment Received','2024-10-02 08:13:07','2024-10-02 08:13:07'),(682,'payment_received_label','tr','Ödeme Alındı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(683,'payment_refunded_label','en','Payment Refunded','2024-10-02 08:13:07','2024-10-02 08:13:07'),(684,'payment_refunded_label','tr','Ödeme İade Edildi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(685,'unknown_label','en','Unknown','2024-10-02 08:13:07','2024-10-02 08:13:07'),(686,'unknown_label','tr','Bilinmeyen','2024-10-02 08:13:07','2024-10-02 08:13:07'),(687,'unregistered_member_label','en','Unregistered Member','2024-10-02 08:13:07','2024-10-02 08:13:07'),(688,'unregistered_member_label','tr','Kaydı Olmayan Üye','2024-10-02 08:13:07','2024-10-02 08:13:07'),(689,'reviews_title','en','Reviews','2024-10-02 08:13:07','2024-10-02 08:13:07'),(690,'reviews_title','tr','Değerlendirmeler','2024-10-02 08:13:07','2024-10-02 08:13:07'),(691,'reviews_description','en','You can approve or reject the reviews.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(692,'reviews_description','tr','Değerlendirmeleri onaylayabilir veya reddedebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(693,'first_image_label','en','First Image','2024-10-02 08:13:07','2024-10-02 08:13:07'),(694,'first_image_label','tr','İlk Fotoğraf','2024-10-02 08:13:07','2024-10-02 08:13:07'),(695,'product_name_label','en','Product Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(696,'product_name_label','tr','Ürün Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(697,'comment_label','en','Comment','2024-10-02 08:13:07','2024-10-02 08:13:07'),(698,'comment_label','tr','Yorum','2024-10-02 08:13:07','2024-10-02 08:13:07'),(699,'star_label','en','Star','2024-10-02 08:13:07','2024-10-02 08:13:07'),(700,'star_label','tr','Yıldız','2024-10-02 08:13:07','2024-10-02 08:13:07'),(701,'user_label','en','User','2024-10-02 08:13:07','2024-10-02 08:13:07'),(702,'user_label','tr','Kullanıcı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(703,'status_label','en','Status','2024-10-02 08:13:07','2024-10-02 08:13:07'),(704,'status_label','tr','Durum','2024-10-02 08:13:07','2024-10-02 08:13:07'),(705,'record_date_label','en','Record Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(706,'record_date_label','tr','Kayıt Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(707,'edit_delete_label','en','Edit/Delete','2024-10-02 08:13:07','2024-10-02 08:13:07'),(708,'edit_delete_label','tr','Düzenle/Sil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(709,'pending_approval_label','en','Pending Approval','2024-10-02 08:13:07','2024-10-02 08:13:07'),(710,'pending_approval_label','tr','Onay Bekliyor','2024-10-02 08:13:07','2024-10-02 08:13:07'),(711,'approved_label','en','Approved','2024-10-02 08:13:07','2024-10-02 08:13:07'),(712,'approved_label','tr','Onaylandı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(713,'rejected_label','en','Rejected','2024-10-02 08:13:07','2024-10-02 08:13:07'),(714,'rejected_label','tr','Reddedildi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(715,'image_not_found_label','en','Image Not Found','2024-10-02 08:13:07','2024-10-02 08:13:07'),(716,'image_not_found_label','tr','Fotoğraf Bulunamadı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(717,'product_list_title','en','Product List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(718,'product_list_title','tr','Ürün Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(719,'products_label','en','Products','2024-10-02 08:13:07','2024-10-02 08:13:07'),(720,'products_label','tr','Ürünler','2024-10-02 08:13:07','2024-10-02 08:13:07'),(721,'product_management_description','en','You can manage your products from this page.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(722,'product_management_description','tr','Ürünlerinizi bu sayfadan yönetebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(723,'add_new_product','en','Add New Product','2024-10-02 08:13:07','2024-10-02 08:13:07'),(724,'add_new_product','tr','Yeni Ürün Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(725,'add_multiple_products','en','Add Multiple Products','2024-10-02 08:13:07','2024-10-02 08:13:07'),(726,'add_multiple_products','tr','Toplu Ürün Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(727,'first_image_label','en','First Image','2024-10-02 08:13:07','2024-10-02 08:13:07'),(728,'first_image_label','tr','İlk Resim','2024-10-02 08:13:07','2024-10-02 08:13:07'),(729,'product_name_label','en','Product Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(730,'product_name_label','tr','Ürün Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(731,'category_name_label','en','Category Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(732,'category_name_label','tr','Kategori Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(733,'product_price_label','en','Product Price','2024-10-02 08:13:07','2024-10-02 08:13:07'),(734,'product_price_label','tr','Ürün Fiyatı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(735,'record_date_label','en','Record Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(736,'record_date_label','tr','Kayıt Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(737,'showroom_label','en','Showroom','2024-10-02 08:13:07','2024-10-02 08:13:07'),(738,'showroom_label','tr','Görsel Alan','2024-10-02 08:13:07','2024-10-02 08:13:07'),(739,'edit_delete_label','en','Edit/Delete','2024-10-02 08:13:07','2024-10-02 08:13:07'),(740,'edit_delete_label','tr','Düzenle/Sil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(741,'image_not_found','en','Image Not Found','2024-10-02 08:13:07','2024-10-02 08:13:07'),(742,'image_not_found','tr','Resim Bulunamadı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(743,'add_new_product','en','Add New Product','2024-10-02 08:13:07','2024-10-02 08:13:07'),(744,'add_new_product','tr','Yeni Ürün Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(745,'product_information','en','Product Information','2024-10-02 08:13:07','2024-10-02 08:13:07'),(746,'product_information','tr','Ürün Bilgileri','2024-10-02 08:13:07','2024-10-02 08:13:07'),(747,'product_name','en','Product Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(748,'product_name','tr','Ürün Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(749,'product_description','en','Product Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(750,'product_description','tr','Ürün Açıklaması','2024-10-02 08:13:07','2024-10-02 08:13:07'),(751,'product_settings','en','Product Settings','2024-10-02 08:13:07','2024-10-02 08:13:07'),(752,'product_settings','tr','Ürün Ayarları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(753,'price_inclusive_tax','en','Price (Inclusive of Tax)','2024-10-02 08:13:07','2024-10-02 08:13:07'),(754,'price_inclusive_tax','tr','Vergiler Dahil Ürün Fiyatı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(755,'decimal_format_example','en','Example: 99.99','2024-10-02 08:13:07','2024-10-02 08:13:07'),(756,'decimal_format_example','tr','Ondalıklı sayıyı nokta ile belirtiniz. (Örn: 1500.90)','2024-10-02 08:13:07','2024-10-02 08:13:07'),(757,'stock','en','Stock','2024-10-02 08:13:07','2024-10-02 08:13:07'),(758,'stock','tr','Stok','2024-10-02 08:13:07','2024-10-02 08:13:07'),(759,'product_code','en','Product Code','2024-10-02 08:13:07','2024-10-02 08:13:07'),(760,'product_code','tr','Ürün Kodu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(761,'sku','en','SKU','2024-10-02 08:13:07','2024-10-02 08:13:07'),(762,'sku','tr','SKU','2024-10-02 08:13:07','2024-10-02 08:13:07'),(763,'tax_vat_rate','en','Tax (VAT Rate)','2024-10-02 08:13:07','2024-10-02 08:13:07'),(764,'tax_vat_rate','tr','Vergi (KDV Oranı)','2024-10-02 08:13:07','2024-10-02 08:13:07'),(765,'percentage_rate','en','Percentage Rate','2024-10-02 08:13:07','2024-10-02 08:13:07'),(766,'percentage_rate','tr','Yüzdelik Oran','2024-10-02 08:13:07','2024-10-02 08:13:07'),(767,'catalog_order','en','Catalog Order','2024-10-02 08:13:07','2024-10-02 08:13:07'),(768,'catalog_order','tr','Katalog Sırası','2024-10-02 08:13:07','2024-10-02 08:13:07'),(769,'last_catalog_no','en','Last: :last_catalog_no','2024-10-02 08:13:07','2024-10-02 08:13:07'),(770,'last_catalog_no','tr','En Son: :last_catalog_no','2024-10-02 08:13:07','2024-10-02 08:13:07'),(771,'category','en','Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(772,'category','tr','Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(773,'select','en','Select...','2024-10-02 08:13:07','2024-10-02 08:13:07'),(774,'select','tr','Seçiniz...','2024-10-02 08:13:07','2024-10-02 08:13:07'),(775,'add_product_photos','en','Add Product Photos','2024-10-02 08:13:07','2024-10-02 08:13:07'),(776,'add_product_photos','tr','Ürün Fotoğrafları Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(777,'save','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(778,'save','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(779,'example_product_name','en','Example; Sofa','2024-10-02 08:13:07','2024-10-02 08:13:07'),(780,'example_product_name','tr','Örnek: Kanepe','2024-10-02 08:13:07','2024-10-02 08:13:07'),(781,'bulk_product_add_title','en','Bulk Product Add','2024-10-02 08:13:07','2024-10-02 08:13:07'),(782,'bulk_product_add_title','tr','Toplu Ürün Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(783,'how_it_works','en','How It Works?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(784,'how_it_works','tr','Nasıl İşliyor?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(785,'select_one_photo_per_product','en','Select one photo from each of your products.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(786,'select_one_photo_per_product','tr','Ürünlerinizin içinden her bir üründen 1 adet fotoğraf seçiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(787,'each_photo_means_new_product','en','Each photo means a new product.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(788,'each_photo_means_new_product','tr','Her bir fotoğraf yeni ürün demektir.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(789,'product_photos_label','en','Product Photos','2024-10-02 08:13:07','2024-10-02 08:13:07'),(790,'product_photos_label','tr','Ürün Fotoğrafları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(791,'category_label','en','Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(792,'category_label','tr','Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(793,'select_option','en','Select...','2024-10-02 08:13:07','2024-10-02 08:13:07'),(794,'select_option','tr','Seçiniz...','2024-10-02 08:13:07','2024-10-02 08:13:07'),(795,'use_photos_for_product_names','en','Should product names be taken from uploaded photos?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(796,'use_photos_for_product_names','tr','Ürün isimleri yüklenen fotoğraflardan alınsın mı?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(797,'save_button_label','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(798,'save_button_label','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(799,'add_new_feature_title','en','Add New Feature','2024-10-02 08:13:07','2024-10-02 08:13:07'),(800,'add_new_feature_title','tr','Yeni Özellik Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(801,'feature_name_label','en','Feature Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(802,'feature_name_label','tr','Özellik Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(803,'feature_name_placeholder','en','Example: Color','2024-10-02 08:13:07','2024-10-02 08:13:07'),(804,'feature_name_placeholder','tr','Örn: Renk','2024-10-02 08:13:07','2024-10-02 08:13:07'),(805,'save_button_label','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(806,'save_button_label','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(807,'feature_list_title','en','Feature List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(808,'feature_list_title','tr','Özellik Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(809,'feature_list_heading','en','Feature List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(810,'feature_list_heading','tr','Özellik Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(811,'feature_list_description','en','You can manage the features you add to your products from this page.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(812,'feature_list_description','tr','Ürünlerinize ekleyeceğiniz özellikleri bu sayfadan yönetebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(813,'add_new_feature_button','en','Add New Feature','2024-10-02 08:13:07','2024-10-02 08:13:07'),(814,'add_new_feature_button','tr','Yeni Özellik Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(815,'feature_name_column','en','Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(816,'feature_name_column','tr','Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(817,'created_at_column','en','Date Created','2024-10-02 08:13:07','2024-10-02 08:13:07'),(818,'created_at_column','tr','Kayıt Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(819,'edit_column','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(820,'edit_column','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(821,'sales_reports','en','Sales Reports','2024-10-02 08:13:07','2024-10-02 08:13:07'),(822,'sales_reports','tr','Satış Raporları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(823,'total_number_of_orders','en','Total Number of Orders','2024-10-02 08:13:07','2024-10-02 08:13:07'),(824,'total_number_of_orders','tr','Toplam Sipariş Sayısı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(825,'total_number_of_ordered_products','en','Total Number of Ordered Products','2024-10-02 08:13:07','2024-10-02 08:13:07'),(826,'total_number_of_ordered_products','tr','Toplam Sipariş Edilen Ürün Sayısı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(827,'number_of_products_pending_approval','en','Number of Products Pending Approval','2024-10-02 08:13:07','2024-10-02 08:13:07'),(828,'number_of_products_pending_approval','tr','Onay Bekleyen Ürün Sayısı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(829,'number_of_products_waiting_for_shipment','en','Number of Products Waiting for Shipment','2024-10-02 08:13:07','2024-10-02 08:13:07'),(830,'number_of_products_waiting_for_shipment','tr','Kargo Bekleyen Ürün Sayısı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(831,'number_of_products_in_shipment','en','Number of Products in Shipment','2024-10-02 08:13:07','2024-10-02 08:13:07'),(832,'number_of_products_in_shipment','tr','Kargodaki Ürün Sayısı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(833,'number_of_completed_products','en','Number of Completed Products','2024-10-02 08:13:07','2024-10-02 08:13:07'),(834,'number_of_completed_products','tr','Tamamlanan Ürün Sayısı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(835,'estimated_total_earnings_of_weekly_orders','en','Estimated total earnings of weekly orders','2024-10-02 08:13:07','2024-10-02 08:13:07'),(836,'estimated_total_earnings_of_weekly_orders','tr','Haftalık siparişlerin tahmini toplam kazancı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(837,'currency','en','Currency','2024-10-02 08:13:07','2024-10-02 08:13:07'),(838,'currency','tr','Para Birimi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(839,'total_of_orders','en','Total of Orders','2024-10-02 08:13:07','2024-10-02 08:13:07'),(840,'total_of_orders','tr','Siparişlerin Toplamı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(841,'sales_made_in_the_last_7_days','en','Sales made in the last 7 days','2024-10-02 08:13:07','2024-10-02 08:13:07'),(842,'sales_made_in_the_last_7_days','tr','Son 7 günde yapılan satışlar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(843,'payment_transactions','en','Payment Transactions','2024-10-02 08:13:07','2024-10-02 08:13:07'),(844,'payment_transactions','tr','Ödeme İşlemleri','2024-10-02 08:13:07','2024-10-02 08:13:07'),(845,'manage_payment_transactions_here','en','You can manage payment transactions here.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(846,'manage_payment_transactions_here','tr','Ödeme işlemlerini buradan yönetebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(847,'user_who_made_transaction','en','User Who Made Transaction','2024-10-02 08:13:07','2024-10-02 08:13:07'),(848,'user_who_made_transaction','tr','İşlemi Yapan Kullanıcı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(849,'payment_method','en','Payment Method','2024-10-02 08:13:07','2024-10-02 08:13:07'),(850,'payment_method','tr','Ödeme Yöntemi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(851,'message_from_bank','en','Message from Bank','2024-10-02 08:13:07','2024-10-02 08:13:07'),(852,'message_from_bank','tr','Bankadan Dönen Mesaj','2024-10-02 08:13:07','2024-10-02 08:13:07'),(853,'payment_result','en','Payment Result','2024-10-02 08:13:07','2024-10-02 08:13:07'),(854,'payment_result','tr','Ödeme Sonucu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(855,'all_data','en','All Data','2024-10-02 08:13:07','2024-10-02 08:13:07'),(856,'all_data','tr','Tüm Veriler','2024-10-02 08:13:07','2024-10-02 08:13:07'),(857,'date','en','Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(858,'date','tr','Tarih','2024-10-02 08:13:07','2024-10-02 08:13:07'),(859,'response','en','Response','2024-10-02 08:13:07','2024-10-02 08:13:07'),(860,'response','tr','Yanıt','2024-10-02 08:13:07','2024-10-02 08:13:07'),(861,'close','en','Close','2024-10-02 08:13:07','2024-10-02 08:13:07'),(862,'close','tr','Kapat','2024-10-02 08:13:07','2024-10-02 08:13:07'),(863,'user_record_not_found','en','User Record Not Found','2024-10-02 08:13:07','2024-10-02 08:13:07'),(864,'user_record_not_found','tr','Kullanıcı Kaydı Bulunamadı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(865,'examine','en','Examine','2024-10-02 08:13:07','2024-10-02 08:13:07'),(866,'examine','tr','İncele','2024-10-02 08:13:07','2024-10-02 08:13:07'),(867,'successful','en','Successful','2024-10-02 08:13:07','2024-10-02 08:13:07'),(868,'successful','tr','Başarılı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(869,'unsuccessful','en','Unsuccessful','2024-10-02 08:13:07','2024-10-02 08:13:07'),(870,'unsuccessful','tr','Başarısız','2024-10-02 08:13:07','2024-10-02 08:13:07'),(871,'marketing_module_order_list','en','Marketing Module Order List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(872,'marketing_module_order_list','tr','Pazarlama Modülü Sipariş Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(873,'edit_orders_in_list','en','You can edit the orders in the order list.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(874,'edit_orders_in_list','tr','Sipariş listesindeki siparişleri düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(875,'read_information','en','Read Information','2024-10-02 08:13:07','2024-10-02 08:13:07'),(876,'read_information','tr','Okundu Bilgisi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(877,'order_number','en','Order Number','2024-10-02 08:13:07','2024-10-02 08:13:07'),(878,'order_number','tr','Sipariş Numarası','2024-10-02 08:13:07','2024-10-02 08:13:07'),(879,'person_institution','en','Person/Institution','2024-10-02 08:13:07','2024-10-02 08:13:07'),(880,'person_institution','tr','Kişi/Kurum','2024-10-02 08:13:07','2024-10-02 08:13:07'),(881,'order_amount','en','Order Amount','2024-10-02 08:13:07','2024-10-02 08:13:07'),(882,'order_amount','tr','Sipariş Tutarı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(883,'number_of_products','en','Number of Products','2024-10-02 08:13:07','2024-10-02 08:13:07'),(884,'number_of_products','tr','Ürün Sayısı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(885,'registration_date','en','Registration Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(886,'registration_date','tr','Kayıt Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(887,'read_delete','en','Read/Delete','2024-10-02 08:13:07','2024-10-02 08:13:07'),(888,'read_delete','tr','Oku/Sil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(889,'unread','en','Unread','2024-10-02 08:13:07','2024-10-02 08:13:07'),(890,'unread','tr','Okunmamış','2024-10-02 08:13:07','2024-10-02 08:13:07'),(891,'read','en','Read','2024-10-02 08:13:07','2024-10-02 08:13:07'),(892,'read','tr','Okundu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(893,'article_list','en','Article List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(894,'article_list','tr','Yazı Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(895,'edit_articles_in_list','en','You can edit the articles in the article list.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(896,'edit_articles_in_list','tr','Yazı listesindeki yazıları düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(897,'share_new_article','en','Add New Article','2024-10-02 08:13:07','2024-10-02 08:13:07'),(898,'share_new_article','tr','Yeni Yazı Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(899,'title','en','Title','2024-10-02 08:13:07','2024-10-02 08:13:07'),(900,'title','tr','Başlık','2024-10-02 08:13:07','2024-10-02 08:13:07'),(901,'description','en','Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(902,'description','tr','Açıklama','2024-10-02 08:13:07','2024-10-02 08:13:07'),(903,'category','en','Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(904,'category','tr','Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(905,'creation_date','en','Creation Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(906,'creation_date','tr','Oluşturulma Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(907,'edit','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(908,'edit','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(909,'category_not_found','en','Category Not Found','2024-10-02 08:13:07','2024-10-02 08:13:07'),(910,'category_not_found','tr','Kategori Bulunamadı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(911,'share_article','en','Share Article','2024-10-02 08:13:07','2024-10-02 08:13:07'),(912,'share_article','tr','Yazı Paylaş','2024-10-02 08:13:07','2024-10-02 08:13:07'),(913,'title','en','Title','2024-10-02 08:13:07','2024-10-02 08:13:07'),(914,'title','tr','Başlık','2024-10-02 08:13:07','2024-10-02 08:13:07'),(915,'short_description','en','Short Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(916,'short_description','tr','Kısa Açıklama','2024-10-02 08:13:07','2024-10-02 08:13:07'),(917,'content','en','Content','2024-10-02 08:13:07','2024-10-02 08:13:07'),(918,'content','tr','İçerik','2024-10-02 08:13:07','2024-10-02 08:13:07'),(919,'category','en','Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(920,'category','tr','Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(921,'please_select','en','---Please Select---','2024-10-02 08:13:07','2024-10-02 08:13:07'),(922,'please_select','tr','---Seçiniz---','2024-10-02 08:13:07','2024-10-02 08:13:07'),(923,'select_display_areas','en','Select Display Areas','2024-10-02 08:13:07','2024-10-02 08:13:07'),(924,'select_display_areas','tr','Gösterileceği Alanları Seçin','2024-10-02 08:13:07','2024-10-02 08:13:07'),(925,'representative_media','en','Representation Media','2024-10-02 08:13:07','2024-10-02 08:13:07'),(926,'representative_media','tr','Temsil Medya','2024-10-02 08:13:07','2024-10-02 08:13:07'),(927,'other_media','en','Other Media','2024-10-02 08:13:07','2024-10-02 08:13:07'),(928,'other_media','tr','Diğer Medyalar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(929,'save','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(930,'save','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(931,'comment_list','en','Comment List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(932,'comment_list','tr','Yorum Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(933,'manage_comments_here','en','You can manage comments here.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(934,'manage_comments_here','tr','Yorumları buradan yönetebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(935,'commenter','en','Commenter','2024-10-02 08:13:07','2024-10-02 08:13:07'),(936,'commenter','tr','Yorum Yapan','2024-10-02 08:13:07','2024-10-02 08:13:07'),(937,'comment_content','en','Comment Content','2024-10-02 08:13:07','2024-10-02 08:13:07'),(938,'comment_content','tr','Yorum İçeriği','2024-10-02 08:13:07','2024-10-02 08:13:07'),(939,'status','en','Status','2024-10-02 08:13:07','2024-10-02 08:13:07'),(940,'status','tr','Durum','2024-10-02 08:13:07','2024-10-02 08:13:07'),(941,'creation_date','en','Creation Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(942,'creation_date','tr','Kayıt Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(943,'edit','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(944,'edit','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(945,'not_published','en','Not Published','2024-10-02 08:13:07','2024-10-02 08:13:07'),(946,'not_published','tr','Yayında Değil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(947,'published','en','Published','2024-10-02 08:13:07','2024-10-02 08:13:07'),(948,'published','tr','Yayında','2024-10-02 08:13:07','2024-10-02 08:13:07'),(949,'blog_categories','en','Blog Categories','2024-10-02 08:13:07','2024-10-02 08:13:07'),(950,'blog_categories','tr','Blog Kategoriler','2024-10-02 08:13:07','2024-10-02 08:13:07'),(951,'manage_blog_categories_here','en','You can manage blog categories here.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(952,'manage_blog_categories_here','tr','Blog kategorilerini buradan yönetebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(953,'add_new_category','en','Add New Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(954,'add_new_category','tr','Yeni Kategori Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(955,'name','en','Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(956,'name','tr','Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(957,'order','en','Order','2024-10-02 08:13:07','2024-10-02 08:13:07'),(958,'order','tr','Sıra','2024-10-02 08:13:07','2024-10-02 08:13:07'),(959,'category_type','en','Category Type','2024-10-02 08:13:07','2024-10-02 08:13:07'),(960,'category_type','tr','Kategori Türü','2024-10-02 08:13:07','2024-10-02 08:13:07'),(961,'creation_date','en','Creation Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(962,'creation_date','tr','Kayıt Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(963,'edit_delete','en','Edit/Delete','2024-10-02 08:13:07','2024-10-02 08:13:07'),(964,'edit_delete','tr','Düzenle/Sil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(965,'main_category','en','Main Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(966,'main_category','tr','Ana Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(967,'sub_category','en','Sub Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(968,'sub_category','tr','Alt Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(969,'add_new_blog_category','en','Add New Blog Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(970,'add_new_blog_category','tr','Yeni Blog Kategori Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(971,'category_name','en','Category Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(972,'category_name','tr','Kategori Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(973,'eg_bedroom','en','e.g. Bedroom','2024-10-02 08:13:07','2024-10-02 08:13:07'),(974,'eg_bedroom','tr','Örn: Yatak Odası','2024-10-02 08:13:07','2024-10-02 08:13:07'),(975,'content','en','Content','2024-10-02 08:13:07','2024-10-02 08:13:07'),(976,'content','tr','İçerik','2024-10-02 08:13:07','2024-10-02 08:13:07'),(977,'main_category','en','Main Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(978,'main_category','tr','Üst Kategorisi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(979,'main_category','en','---Main Category---','2024-10-02 08:13:07','2024-10-02 08:13:07'),(980,'main_category','tr','---Ana Kategori---','2024-10-02 08:13:07','2024-10-02 08:13:07'),(981,'representative_color','en','Representation Color','2024-10-02 08:13:07','2024-10-02 08:13:07'),(982,'representative_color','tr','Temsil Rengi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(983,'select_display_areas','en','Select Display Areas','2024-10-02 08:13:07','2024-10-02 08:13:07'),(984,'select_display_areas','tr','Gösterileceği Alanları Seçin','2024-10-02 08:13:07','2024-10-02 08:13:07'),(985,'representative_photo','en','Representation Photo','2024-10-02 08:13:07','2024-10-02 08:13:07'),(986,'representative_photo','tr','Temsil Fotoğrafı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(987,'save','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(988,'save','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(989,'language_list_title','en','Language List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(990,'language_list_title','tr','Dil Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(991,'language_list','en','Language List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(992,'language_list','tr','Dil Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(993,'edit_languages','en','You can edit the languages in the list.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(994,'edit_languages','tr','Dil listesindeki dilleri düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(995,'add_new_language','en','Add New Language','2024-10-02 08:13:07','2024-10-02 08:13:07'),(996,'add_new_language','tr','Yeni Dil Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(997,'edit_all_languages','en','Edit All Languages','2024-10-02 08:13:07','2024-10-02 08:13:07'),(998,'edit_all_languages','tr','Tüm Dilleri Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(999,'language_name','en','Language Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1000,'language_name','tr','Dil Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1001,'language_code','en','Language Code','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1002,'language_code','tr','Dil Kodu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1003,'default','en','Default','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1004,'default','tr','Varsayılan','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1005,'created_at','en','Created At','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1006,'created_at','tr','Oluşturulma Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1007,'status','en','Status','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1008,'status','tr','Durum','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1009,'edit','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1010,'edit','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1011,'active','en','Active','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1012,'active','tr','Aktif','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1013,'inactive','en','Inactive','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1014,'inactive','tr','Aktif Değil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1015,'add_new_language','en','Add New Language','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1016,'add_new_language','tr','Yeni Dil Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1017,'language_name','en','Language Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1018,'language_name','tr','Dil Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1019,'language_code','en','Language Code','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1020,'language_code','tr','Dil Kodu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1021,'icon','en','Icon','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1022,'icon','tr','Icon','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1023,'flag_note','en','The system uses a package that fetches the flag based on the country code, just enter the country code. Example: de','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1024,'flag_note','tr','Sistem ülke koduna göre bayrak getiren bir paket kullanıyor, sadece ülke kodunu yazın. Örn: de','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1025,'active','en','Active','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1026,'active','tr','Aktif','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1027,'inactive','en','Inactive','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1028,'inactive','tr','Aktif Değil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1029,'default','en','Default','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1030,'default','tr','Varsayılan','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1031,'yes','en','Yes','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1032,'yes','tr','Evet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1033,'no','en','No','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1034,'no','tr','Hayır','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1035,'save','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1036,'save','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1037,'edit_general_settings','en','Edit General Settings','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1038,'edit_general_settings','tr','Genel Ayarları Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1039,'email_notification_settings','en','Email Notification Settings','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1040,'email_notification_settings','tr','Email Bildirim Ayarları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1041,'which_email_receive_new_member_notification','en','Which email will receive new member notification?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1042,'which_email_receive_new_member_notification','tr','Yeni Üye Bildirimi Hangi Email Adresine Gelsin?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1043,'which_email_receive_new_order_notification','en','Which email will receive new order notification?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1044,'which_email_receive_new_order_notification','tr','Yeni Sipariş Bildirimi Hangi Email Adresine Gelsin?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1045,'which_email_receive_new_message_notification','en','Which email will receive new message notification?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1046,'which_email_receive_new_message_notification','tr','Yeni Mesaj Bildirimi Hangi Email Adresine Gelsin?','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1047,'product_image_settings','en','Product Image Settings','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1048,'product_image_settings','tr','Ürün Resim Ayarları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1049,'small_image_width','en','Small Image Width','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1050,'small_image_width','tr','Küçük Resim Genişliği','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1051,'small_image_height','en','Small Image Height','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1052,'small_image_height','tr','Küçük Resim Yüksekliği','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1053,'medium_image_width','en','Medium Image Width','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1054,'medium_image_width','tr','Orta Resim Genişliği','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1055,'medium_image_height','en','Medium Image Height','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1056,'medium_image_height','tr','Orta Resim Yüksekliği','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1057,'large_image_width','en','Large Image Width','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1058,'large_image_width','tr','Büyük Resim Genişliği','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1059,'large_image_height','en','Large Image Height','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1060,'large_image_height','tr','Büyük Resim Yüksekliği','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1061,'enter_email_format','en','Please enter a valid email format.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1062,'enter_email_format','tr','Lütfen geçerli bir e-posta formatı girin.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1063,'enter_only_number','en','Please enter only numbers.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1064,'enter_only_number','tr','Lütfen sadece sayıları girin.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1065,'database_update','en','Database Update','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1066,'database_update','tr','Veritabanı Güncelle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1067,'update_database','en','Update Database','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1068,'update_database','tr','Veritabanını Güncelle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1069,'click_button_to_update_database','en','Click the button below to update the database.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1070,'click_button_to_update_database','tr','Veritabanını güncellemek için aşağıdaki butona tıklayın.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1071,'currency_list','en','Currency List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1072,'currency_list','tr','Para Birimi Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1073,'edit_currency_list','en','You can edit the currencies in the currency list.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1074,'edit_currency_list','tr','Para birimi listesindeki para birimlerini düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1075,'add_new_currency','en','Add New Currency','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1076,'add_new_currency','tr','Yeni Para Birimi Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1077,'currency','en','Currency','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1078,'currency','tr','Para Birimi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1079,'code','en','Code','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1080,'code','tr','Kod','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1081,'symbol','en','Symbol','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1082,'symbol','tr','Sembol','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1083,'status','en','Status','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1084,'status','tr','Durum','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1085,'creation_date','en','Creation Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1086,'creation_date','tr','Oluşturulma Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1087,'edit','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1088,'edit','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1089,'multiplier_table','en','Multiplier Table','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1090,'multiplier_table','tr','Çarpan Tablosu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1091,'edit_currency_multipliers','en','You can edit the multipliers between currencies.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1092,'edit_currency_multipliers','tr','Para birimlerinin birbirine olan çarpanlarını düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1093,'active','en','Active','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1094,'active','tr','Aktif','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1095,'inactive','en','Inactive','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1096,'inactive','tr','Aktif Değil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1097,'add_new_currency','en','Add New Currency','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1098,'add_new_currency','tr','Yeni Para Birimi Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1099,'currency_name','en','Currency Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1100,'currency_name','tr','Para Birimi Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1101,'example_currency_name','en','E.g.: Turkish Lira','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1102,'example_currency_name','tr','Örn: Türk Lirası','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1103,'currency_code','en','Currency Code','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1104,'currency_code','tr','Para Birimi Kodu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1105,'example_currency_code','en','E.g.: TRY','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1106,'example_currency_code','tr','Örn: TRY','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1107,'currency_symbol','en','Currency Symbol','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1108,'currency_symbol','tr','Para Birimi Sembolü','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1109,'example_currency_symbol','en','E.g.: ₺','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1110,'example_currency_symbol','tr','Örn: ₺','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1111,'active','en','Active','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1112,'active','tr','Aktif','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1113,'inactive','en','Inactive','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1114,'inactive','tr','Aktif Değil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1115,'save','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1116,'save','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1117,'theme_list','en','Theme List','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1118,'theme_list','tr','Tema Listesi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1119,'you_can_edit_the_themes_in_the_theme_list','en','You can edit the themes in the theme list.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1120,'you_can_edit_the_themes_in_the_theme_list','tr','Tema listesindeki temaları düzenleyebilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1121,'add_new_theme','en','Add New Theme','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1122,'add_new_theme','tr','Yeni Tema Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1123,'scan_templates_folder','en','Scan Templates Folder','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1124,'scan_templates_folder','tr','Temalar Klasörünü Tarat','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1125,'theme_name','en','Theme Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1126,'theme_name','tr','Tema Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1127,'status','en','Status','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1128,'status','tr','Durum','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1129,'registration_date','en','Registration Date','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1130,'registration_date','tr','Kayıt Tarihi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1131,'last_update','en','Last Update','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1132,'last_update','tr','Son Güncelleme','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1133,'edit_delete','en','Edit/Delete','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1134,'edit_delete','tr','Düzenle/Sil','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1135,'active','en','Active','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1136,'active','tr','Aktif','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1137,'edit','en','Edit','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1138,'edit','tr','Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1139,'add_new_theme','en','Add New Theme','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1140,'add_new_theme','tr','Yeni Tema Ekle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1141,'theme_name','en','Theme Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1142,'theme_name','tr','Tema Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1143,'example_theme_name','en','e.g. SoftredeTemplate1','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1144,'example_theme_name','tr','Örn: SoftredeTemplate1','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1145,'category','en','Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1146,'category','tr','Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1147,'active','en','Active','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1148,'active','tr','Aktif','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1149,'save','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1150,'save','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1151,'language_settings','en','Language Settings','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1152,'language_settings','tr','Dil Ayarları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1153,'theme_name','en','Theme Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1154,'theme_name','tr','Tema Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1155,'example_theme_name','en','e.g., SoftredeTemplate1','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1156,'example_theme_name','tr','Örn: SoftredeTemplate1','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1157,'category','en','Category','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1158,'category','tr','Kategori','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1159,'active','en','Active','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1160,'active','tr','Aktif','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1161,'save','en','Save','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1162,'save','tr','Kaydet','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1163,'edit_site_settings','en','Edit Site Settings','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1164,'edit_site_settings','tr','Site Ayarlarını Düzenle','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1165,'site_settings','en','Site Settings','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1166,'site_settings','tr','Site Ayarları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1167,'logo','en','Logo','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1168,'logo','tr','Logo','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1169,'social_media','en','Social Media','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1170,'social_media','tr','Sosyal Medya','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1171,'payment_settings','en','Payment Settings','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1172,'payment_settings','tr','Ödeme Ayarları','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1173,'metrics','en','Metrics','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1174,'metrics','tr','Metrikler','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1175,'integrations','en','Integrations','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1176,'integrations','tr','Entegrasyonlar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1177,'site_name','en','Site Name','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1178,'site_name','tr','Site Adı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1179,'slogan','en','Slogan','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1180,'slogan','tr','Slogan','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1181,'site_description','en','Site Description','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1182,'site_description','tr','Site Açıklaması','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1183,'keywords','en','Keywords','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1184,'keywords','tr','Anahtar Kelimeler','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1185,'logo_dark','en','Logo (Dark)','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1186,'logo_dark','tr','Logo (Koyu)','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1187,'logo_light','en','Logo (Light)','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1188,'logo_light','tr','Logo (Açık)','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1189,'favicon','en','Favicon','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1190,'favicon','tr','Favicon','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1191,'facebook_url','en','Facebook URL','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1192,'facebook_url','tr','Facebook URL\'si','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1193,'twitter_url','en','Twitter URL','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1194,'twitter_url','tr','Twitter URL\'si','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1195,'instagram_url','en','Instagram URL','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1196,'instagram_url','tr','Instagram URL\'si','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1197,'linkedin_url','en','LinkedIn URL','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1198,'linkedin_url','tr','LinkedIn URL\'si','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1199,'telegram_url','en','Telegram URL','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1200,'telegram_url','tr','Telegram URL\'si','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1201,'active_payment_method','en','Active Payment Method','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1202,'active_payment_method','tr','Aktif Ödeme Yöntemi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1203,'merchant_id','en','Merchant ID','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1204,'merchant_id','tr','Satıcı ID','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1205,'merchant_key','en','Merchant Key','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1206,'merchant_key','tr','Satıcı Anahtarı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1207,'merchant_salt','en','Merchant Salt','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1208,'merchant_salt','tr','Satıcı Salt','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1209,'merchant_ok_url','en','Merchant OK URL','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1210,'merchant_ok_url','tr','Satıcı Onay URL\'si','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1211,'merchant_fail_url','en','Merchant Fail URL','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1212,'merchant_fail_url','tr','Satıcı Hata URL\'si','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1213,'eft_bank_transfer','en','EFT/Bank Transfer','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1214,'eft_bank_transfer','tr','EFT/Havale','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1215,'active_passive','en','Active/Passive','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1216,'active_passive','tr','Aktif/Pasif','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1217,'payment_transfer_content_description','en','This content will appear in the EFT/Bank Transfer section of the payment page. You can write the bank information you want your customers to see in this field.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1218,'payment_transfer_content_description','tr','Bu içerik ödeme sayfasındaki EFT/Havale bölümünde gözükecektir. Bu alana müşterilerinizin görmesini istediğiniz banka bilgilerini yazabilirsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1219,'measurement_id','en','Measurement ID','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1220,'measurement_id','tr','Ölçüm ID','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1221,'asset_identity','en','Asset Identity','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1222,'asset_identity','tr','Varlık Kimliği','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1223,'widget_id','en','Widget ID','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1224,'widget_id','tr','Widget ID','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1225,'only_valid_for_marketing_module','en','Only valid for marketing module.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1226,'only_valid_for_marketing_module','tr','Sadece pazarlama modülü için geçerlidir.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1227,'other_files','en','Other Files','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1228,'other_files','tr','Diğer Dosyalar','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1229,'credit_card','en','Credit Card','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1230,'credit_card','tr','Kredi Kartı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1231,'messaging','en','Messaging','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1232,'messaging','tr','Mesajlaşma','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1233,'operation_successful_themes_updated','en','Operation Successful, Themes Updated','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1234,'operation_successful_themes_updated','tr','İşlem Başarılı, Temalar Güncellendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1235,'language_updated_successfully','en','Language Updated Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1236,'language_updated_successfully','tr','Dil Başarılı Bir Şekilde Güncellendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1237,'operation_successful_site_info_updated','en','Operation Successful, Site Information Updated','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1238,'operation_successful_site_info_updated','tr','İşlem Başarılı, Site Bilgileri Güncellendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1239,'category_added_successfully','en','Category Added Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1240,'category_added_successfully','tr','Kategori Başarılı Bir Şekilde Eklendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1241,'category_updated_successfully','en','Category Updated Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1242,'category_updated_successfully','tr','Kategori Başarılı Bir Şekilde Güncellendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1243,'operation_completed_successfully','en','Operation Completed Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1244,'operation_completed_successfully','tr','İşlem Başarılı Bir Şekilde Gerçekleştirildi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1245,'currency_added_successfully','en','Currency Added Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1246,'currency_added_successfully','tr','Para Birimi Başarılı Bir Şekilde Eklendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1247,'text_updated_successfully','en','Text Updated Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1248,'text_updated_successfully','tr','Yazı Başarılı Bir Şekilde Güncellendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1249,'text_added_successfully','en','Text Added Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1250,'text_added_successfully','tr','Yazı Başarılı Bir Şekilde Eklendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1251,'language_added_successfully','en','Language Added Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1252,'language_added_successfully','tr','Dil Başarılı Bir Şekilde Eklendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1253,'language_definition_updated_successfully','en','Language Definition Updated Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1254,'language_definition_updated_successfully','tr','Dil Tanımı Başarılı Bir Şekilde Güncellendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1255,'language_definition_created_successfully','en','Language Definition Created Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1256,'language_definition_created_successfully','tr','Dil Tanımı Başarılı Bir Şekilde Oluşturuldu','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1257,'page_updated_successfully','en','Page Updated Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1258,'page_updated_successfully','tr','Sayfa Başarılı Bir Şekilde Güncellendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1259,'category_added_successfully','en','Category Added Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1260,'category_added_successfully','tr','Kategori Başarılı Bir Şekilde Eklendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1261,'category_updated_successfully','en','Category Updated Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1262,'category_updated_successfully','tr','Kategori Başarılı Bir Şekilde Güncellendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1263,'product_added_successfully','en','Product Added Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1264,'product_added_successfully','tr','Ürün Başarılı Bir Şekilde Eklendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1265,'slide_added_successfully','en','Slide Added Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1266,'slide_added_successfully','tr','Slide Başarılı Bir Şekilde Eklendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1267,'slide_updated_successfully','en','Slide Updated Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1268,'slide_updated_successfully','tr','Slide Başarılı Bir Şekilde Güncellendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1269,'team_member_updated_successfully','en','Team Member Updated Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1270,'team_member_updated_successfully','tr','Ekip Üyesi Başarılı Bir Şekilde Güncellendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1271,'theme_added_successfully','en','Theme Added Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1272,'theme_added_successfully','tr','Tema Başarılı Bir Şekilde Eklendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1273,'user_added_successfully','en','User Added Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1274,'user_added_successfully','tr','Kullanıcı Başarılı Bir Şekilde Eklendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1275,'user_updated_successfully','en','User Updated Successfully','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1276,'user_updated_successfully','tr','Kullanıcı Başarılı Bir Şekilde Güncellendi','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1277,'email_or_password_incorrect','en','Email Address or Password is Incorrect','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1278,'email_or_password_incorrect','tr','E-Posta Adresi veya Şifre Hatalı','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1279,'cannot_select_inactive_language_as_default','en','You cannot select an inactive language as default.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1280,'cannot_select_inactive_language_as_default','tr','Aktif Olmayan Bir Dili Varsayılan Olarak Seçemezsiniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1281,'please_enter_product_name_in_at_least_one_language','en','Please enter the product name in at least one language.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1282,'please_enter_product_name_in_at_least_one_language','tr','En Az 1 Dil de Ürün Adı Giriniz.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1283,'contact_information_updated_successfully','en','Success, contact information has been updated.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1284,'contact_information_updated_successfully','tr','İşlem Başarılı, İletişim Bilgileri Güncellendi.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1285,'new_feature_value_added_successfully','en','Success, new feature value has been added.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1286,'new_feature_value_added_successfully','tr','İşlem Başarılı, Yeni Özellik Değeri Eklendi.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1287,'general_information_updated_successfully','en','Success, general information has been updated.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1288,'general_information_updated_successfully','tr','İşlem Başarılı, Genel Bilgiler Güncellendi.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1289,'site_settings_updated_successfully','en','Site settings have been updated successfully.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1290,'site_settings_updated_successfully','tr','Site Ayarları Başarıyla Güncellendi.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1291,'new_feature_added_successfully','en','Success, new feature has been added.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1292,'new_feature_added_successfully','tr','İşlem Başarılı, Yeni Özellik Eklendi.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1293,'feature_updated_successfully','en','Success, feature has been updated.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1294,'feature_updated_successfully','tr','İşlem Başarılı, Özellik Güncellendi.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1295,'feature_value_updated_successfully','en','Success, feature value has been updated.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1296,'feature_value_updated_successfully','tr','İşlem Başarılı, Özellik Değeri Güncellendi.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1297,'order_information_updated_successfully','en','Success, order information has been updated.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1298,'order_information_updated_successfully','tr','İşlem Başarılı, Sipariş Bilgileri Güncellendi.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1299,'product_updated_successfully','en','Product has been updated successfully.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1300,'product_updated_successfully','tr','Ürün Başarıyla Güncellendi.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1301,'products_added_successfully','en','Products have been added successfully.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1302,'products_added_successfully','tr','Ürünler Başarıyla Eklendi.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1303,'review_status_changed_successfully','en','Review status changed successfully.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1304,'review_status_changed_successfully','tr','İnceleme Durumu Başarıyla Değiştirildi.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1305,'information_updated_successfully','en','Success, information has been updated.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1306,'information_updated_successfully','tr','İşlem Başarılı, Bilgiler Güncellendi.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1307,'theme_updated_successfully','en','Success, theme has been updated.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1308,'theme_updated_successfully','tr','İşlem Başarılı, Tema Güncellendi.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1309,'registration_completed_successfully','en','Your registration has been completed successfully. We wish you happy shopping!','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1310,'registration_completed_successfully','tr','Kaydınız Başarıyla Tamamlandı. Keyifli Alışverişler Dileriz!','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1311,'operation_successful','en','Operation Successful!','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1312,'operation_successful','tr','İşlem Başarılı!','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1313,'return_request_received','en','Your return request has been received.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1314,'return_request_received','tr','İade Talebiniz Alındı.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1315,'operation_failed_old_password_mismatch','en','Operation Failed, old password does not match!','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1316,'operation_failed_old_password_mismatch','tr','İşlem Başarısız, Eski Şifre Uyuşmuyor!','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1317,'operation_failed_order_not_approved','en','Operation Failed, the order is not approved.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1318,'operation_failed_order_not_approved','tr','İşlem Başarısız, Sipariş Onaylanmamış.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1319,'page_not_found','en','Page not found.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1320,'page_not_found','tr','Böyle bir sayfa bulunamadı.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1321,'review_not_found','en','Review not found.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1322,'review_not_found','tr','İnceleme bulunamadı.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1323,'login_failed_check_credentials','en','Login failed, please check your credentials.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1324,'login_failed_check_credentials','tr','Giriş Başarısız, Lütfen Giriş Bilgilerinizi Kontrol Edin.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1325,'email_or_password_incorrect','en','Email address or password is incorrect.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1326,'email_or_password_incorrect','tr','E-Posta Adresi veya Şifre Hatalı.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1327,'phone_number_required','en','Phone number is required.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1328,'phone_number_required','tr','Telefon numarası gereklidir.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1329,'phone_number_required','en','Phone number is required.','2024-10-02 08:13:07','2024-10-02 08:13:07'),(1330,'phone_number_required','tr','Telefon numarası gereklidir.','2024-10-02 08:13:07','2024-10-02 08:13:07');
/*!40000 ALTER TABLE `language_strings` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `languages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `lang_code` varchar(255) NOT NULL,
  `lang_name` varchar(255) NOT NULL,
  `lang_icon_url` varchar(255) DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT 0,
  `default` int(11) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `languages_lang_code_unique` (`lang_code`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `languages` WRITE;
/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
INSERT INTO `languages` VALUES (1,'en','English','en_flag.png',1,1,NULL,'2024-10-02 08:13:07','2024-10-02 08:13:07'),(2,'tr','Türkçe','tr_flag.png',1,0,NULL,'2024-10-02 08:13:07','2024-10-02 08:13:07');
/*!40000 ALTER TABLE `languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `log_searches`
--

DROP TABLE IF EXISTS `log_searches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `log_searches` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) DEFAULT NULL,
  `search` varchar(255) DEFAULT NULL,
  `ip_address` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `log_searches`
--

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

--
-- Table structure for table `ltm_translations`
--

DROP TABLE IF EXISTS `ltm_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ltm_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` int(11) NOT NULL DEFAULT 0,
  `locale` varchar(255) NOT NULL,
  `group` varchar(255) 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ltm_translations`
--

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

--
-- Table structure for table `messages`
--

DROP TABLE IF EXISTS `messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `messages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `surname` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `message` varchar(255) NOT NULL,
  `read_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `messages`
--

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

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

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

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

LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES (80,'2014_04_02_193005_create_translations_table',1),(81,'2014_10_12_000000_create_users_table',1),(82,'2014_10_12_100000_create_password_resets_table',1),(83,'2016_06_01_000001_create_oauth_auth_codes_table',1),(84,'2016_06_01_000002_create_oauth_access_tokens_table',1),(85,'2016_06_01_000003_create_oauth_refresh_tokens_table',1),(86,'2016_06_01_000004_create_oauth_clients_table',1),(87,'2016_06_01_000005_create_oauth_personal_access_clients_table',1),(88,'2019_08_19_000000_create_failed_jobs_table',1),(89,'2021_04_14_130237_create_categories_table',1),(90,'2021_05_22_200749_create_settings_table',1),(91,'2021_05_22_200956_create_contact_table',1),(92,'2021_06_05_233954_create_languages_table',1),(93,'2021_06_05_234013_create_language_strings_table',1),(94,'2021_06_09_224212_create_categories_language_table',1),(95,'2021_06_17_221632_create_products_table',1),(96,'2021_06_17_223300_create_products_language_table',1),(97,'2021_06_17_225632_create_product_images_table',1),(98,'2021_06_20_133220_create_messages_table',1),(99,'2021_06_20_152520_create_templates_table',1),(100,'2021_06_21_223325_create_about_us_table',1),(101,'2021_06_22_141225_create_products_showroom_table',1),(102,'2021_06_27_170040_create_posts_table',1),(103,'2021_06_27_173228_create_posts_language_table',1),(104,'2021_08_04_220402_create_auth_table',1),(105,'2021_08_14_025724_create_salesman_orders_table',1),(106,'2021_08_14_025846_create_salesman_order_products_table',1),(107,'2021_08_14_031741_create_cart_table',1),(108,'2021_08_28_155213_create_post_categories_table',1),(109,'2021_08_28_155336_create_post_categories_language_table',1),(110,'2021_12_19_035335_create_headers_table',1),(111,'2021_12_20_053559_create_blog_comments_table',1),(112,'2022_01_07_184838_create_currencies_table',1),(113,'2022_03_19_181953_create_post_places_table',1),(114,'2022_05_23_001437_create_user_addresses_table',1),(115,'2022_05_23_231349_create_countries_table',1),(116,'2022_05_28_135200_create_orders_table',1),(117,'2022_05_28_195610_create_order_products_table',1),(118,'2022_05_28_195838_create_order_addresses_table',1),(119,'2022_05_29_125205_create_pages_table',1),(120,'2022_05_29_125941_create_page_languages_table',1),(121,'2022_07_03_173307_create_options_table',1),(122,'2022_07_03_174342_create_options_language_table',1),(123,'2022_07_04_001425_create_option_values_table',1),(124,'2022_07_04_001919_create_options_value_table',1),(125,'2022_07_04_002005_create_options_value_language_table',1),(126,'2022_07_12_204951_create_product_variants_table',1),(127,'2022_07_17_203918_create_user_favorite_products_table',1),(128,'2022_07_18_020923_create_order_user_information_table',1),(129,'2022_07_23_045602_create_jobs_table',1),(130,'2022_07_23_052219_create_general_settings_table',1),(131,'2022_07_23_222324_create_order_product_returns_table',1),(132,'2022_07_25_013259_create_sliders_table',1),(133,'2022_10_20_125858_create_payment_transactions_table',1),(134,'2023_05_13_195655_create_site_settings_table',1),(135,'2023_05_15_005327_create_notifications_table',1),(136,'2023_05_26_160039_create_projects_table',1),(137,'2023_05_26_161459_create_project_languages_table',1),(138,'2023_05_27_033947_create_project_categories_table',1),(139,'2023_05_27_034503_create_project_category_languages_table',1),(140,'2023_05_28_032419_create_project_images_table',1),(141,'2023_06_21_075527_create_references_table',1),(142,'2023_06_21_075548_create_reference_languages_table',1),(143,'2023_06_21_080142_create_reference_images_table',1),(144,'2023_07_19_173658_create_post_category_places_table',1),(145,'2023_08_01_133201_create_galleries_table',1),(146,'2023_08_01_133212_create_gallery_media_table',1),(147,'2023_08_01_133222_create_gallery_languages_table',1),(148,'2023_08_02_133608_create_post_images_table',1),(149,'2023_11_18_061153_create_currency_rates_table',1),(150,'2023_11_24_094454_create_product_reviews_table',1),(151,'2023_11_25_062801_create_product_variant_options_table',1),(152,'2023_11_28_075929_create_category_variants_table',1),(153,'2023_12_13_015930_create_log_searches_table',1),(154,'2023_12_13_145033_create_slider_places_table',1),(155,'2023_12_20_153449_create_product_variant_images_table',1),(156,'2023_12_28_195600_create_teams_table',1),(157,'2024_03_20_000851_create_gallery_categories_table',1),(158,'2024_03_20_000912_create_gallery_category_languages_table',1);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `notifications`
--

DROP TABLE IF EXISTS `notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `notifications` (
  `id` char(36) NOT NULL,
  `type` varchar(255) NOT NULL,
  `notifiable_type` varchar(255) NOT NULL,
  `notifiable_id` bigint(20) unsigned NOT NULL,
  `data` text NOT NULL,
  `read_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `notifications_notifiable_type_notifiable_id_index` (`notifiable_type`,`notifiable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notifications`
--

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- Table structure for table `option_values`
--

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

--
-- Dumping data for table `option_values`
--

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

--
-- Table structure for table `options`
--

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

--
-- Dumping data for table `options`
--

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

--
-- Table structure for table `options_language`
--

DROP TABLE IF EXISTS `options_language`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `options_language` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `option_id` int(11) NOT NULL DEFAULT 1,
  `language_id` int(11) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `options_language`
--

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

--
-- Table structure for table `options_value`
--

DROP TABLE IF EXISTS `options_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `options_value` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_id` int(11) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `options_value`
--

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

--
-- Table structure for table `options_value_language`
--

DROP TABLE IF EXISTS `options_value_language`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `options_value_language` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `option_value_id` int(11) NOT NULL DEFAULT 1,
  `language_id` int(11) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `options_value_language`
--

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

--
-- Table structure for table `order_addresses`
--

DROP TABLE IF EXISTS `order_addresses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `order_addresses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `fullname` varchar(255) DEFAULT NULL,
  `country_id` int(11) NOT NULL,
  `city` varchar(255) DEFAULT NULL,
  `district` varchar(255) DEFAULT NULL,
  `postcode` varchar(255) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `user_id` int(11) NOT NULL DEFAULT 0,
  `type` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0- delivery address, 1- invoice address',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_addresses`
--

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

--
-- Table structure for table `order_product_returns`
--

DROP TABLE IF EXISTS `order_product_returns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `order_product_returns` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_product_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `cargo_company_name` varchar(255) DEFAULT NULL,
  `cargo_number` varchar(255) DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_product_returns`
--

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

--
-- Table structure for table `order_products`
--

DROP TABLE IF EXISTS `order_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `order_products` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL DEFAULT 0,
  `product_variant_id` int(11) DEFAULT NULL,
  `category_id` int(11) NOT NULL DEFAULT 1,
  `quantity` int(11) NOT NULL DEFAULT 1,
  `price` decimal(8,2) NOT NULL DEFAULT 0.00,
  `currency_id` int(11) NOT NULL DEFAULT 1,
  `showroom` tinyint(4) NOT NULL DEFAULT 0,
  `position` tinyint(4) NOT NULL DEFAULT 0,
  `sku` varchar(255) NOT NULL DEFAULT '0',
  `code` varchar(255) DEFAULT NULL,
  `stock` int(11) NOT NULL DEFAULT 0,
  `cargo_company_name` varchar(255) DEFAULT NULL,
  `cargo_number` varchar(255) DEFAULT NULL,
  `status` enum('active','pending','denied','hidden') NOT NULL DEFAULT 'hidden',
  `order_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0-Pending, 1-Approved, Cargo Waiting, 2-In Cargo, 3-Completed, 4-Return Request, 5-Return Completed, 6-Canceled',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_products`
--

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

--
-- Table structure for table `order_user_information`
--

DROP TABLE IF EXISTS `order_user_information`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `order_user_information` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `email` varchar(255) NOT NULL,
  `phone` varchar(255) NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_user_information`
--

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

--
-- Table structure for table `orders`
--

DROP TABLE IF EXISTS `orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `orders` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_number` varchar(255) NOT NULL,
  `user_id` int(11) NOT NULL,
  `coupon` varchar(255) DEFAULT NULL,
  `price` decimal(8,2) NOT NULL,
  `currency_id` int(11) NOT NULL DEFAULT 1 COMMENT '1- TRY',
  `discount_amount` decimal(8,2) NOT NULL DEFAULT 0.00,
  `quantity` tinyint(4) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0-Pending, 1- Approved, 2- Canceled',
  `payment_type` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0-Credit Card, 1- EFT/Havale',
  `payment_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0-Pending, 1- Paid, 2- Returned',
  `obf` longtext DEFAULT NULL COMMENT 'Ön Bilgilendirme Formu',
  `mss` longtext DEFAULT NULL COMMENT 'Mesafeli Satış Sözleşmesi',
  `invoice_filename` varchar(255) DEFAULT NULL,
  `transaction_id` varchar(255) DEFAULT NULL,
  `session_id` varchar(255) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `orders_order_number_unique` (`order_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `orders`
--

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

--
-- Table structure for table `page_languages`
--

DROP TABLE IF EXISTS `page_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_languages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `page_id` int(11) NOT NULL,
  `content` longtext DEFAULT NULL,
  `language_id` int(11) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_languages`
--

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

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

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

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

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

--
-- Table structure for table `password_resets`
--

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

--
-- Dumping data for table `password_resets`
--

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

--
-- Table structure for table `payment_transactions`
--

DROP TABLE IF EXISTS `payment_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_transactions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) DEFAULT NULL,
  `responseCode` varchar(255) DEFAULT NULL,
  `responseMessage` varchar(255) DEFAULT NULL,
  `response` longtext DEFAULT NULL,
  `payment_method` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_transactions`
--

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

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

DROP TABLE IF EXISTS `post_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `post_categories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `icon` varchar(255) DEFAULT NULL,
  `parent_id` int(11) NOT NULL DEFAULT 0,
  `image` varchar(255) DEFAULT NULL,
  `position` int(11) NOT NULL DEFAULT 0,
  `color` varchar(255) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `post_categories_language`
--

DROP TABLE IF EXISTS `post_categories_language`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `post_categories_language` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `language_id` varchar(255) NOT NULL DEFAULT '1',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `post_categories_language`
--

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

--
-- Table structure for table `post_category_places`
--

DROP TABLE IF EXISTS `post_category_places`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `post_category_places` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_category_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `position` int(11) NOT NULL DEFAULT 0,
  `key` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `post_category_places_post_category_id_foreign` (`post_category_id`),
  KEY `post_category_places_user_id_foreign` (`user_id`),
  CONSTRAINT `post_category_places_post_category_id_foreign` FOREIGN KEY (`post_category_id`) REFERENCES `posts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `post_category_places_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `post_category_places`
--

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

--
-- Table structure for table `post_images`
--

DROP TABLE IF EXISTS `post_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `post_images` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `post_id` bigint(20) NOT NULL,
  `position` int(11) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `post_images`
--

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

--
-- Table structure for table `post_places`
--

DROP TABLE IF EXISTS `post_places`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `post_places` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `position` int(11) NOT NULL DEFAULT 0,
  `key` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `post_places_post_id_foreign` (`post_id`),
  KEY `post_places_user_id_foreign` (`user_id`),
  CONSTRAINT `post_places_post_id_foreign` FOREIGN KEY (`post_id`) REFERENCES `posts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `post_places_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `post_places`
--

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

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

DROP TABLE IF EXISTS `posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `posts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int(11) NOT NULL DEFAULT 1,
  `image` varchar(255) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `posts_language`
--

DROP TABLE IF EXISTS `posts_language`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `posts_language` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `language_id` int(11) NOT NULL DEFAULT 1,
  `post_id` int(11) NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `posts_language`
--

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

--
-- Table structure for table `product_images`
--

DROP TABLE IF EXISTS `product_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_images` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `product_id` int(11) NOT NULL,
  `prime` int(11) NOT NULL DEFAULT 0,
  `position` int(11) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_images`
--

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

--
-- Table structure for table `product_reviews`
--

DROP TABLE IF EXISTS `product_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_reviews` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `product_id` int(11) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `rate` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT 0 COMMENT '0:pending, 1:approved, 2:rejected',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_reviews`
--

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

--
-- Table structure for table `product_variant_images`
--

DROP TABLE IF EXISTS `product_variant_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_variant_images` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `product_variant_id` int(11) NOT NULL,
  `product_image_id` int(11) NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_variant_images`
--

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

--
-- Table structure for table `product_variant_options`
--

DROP TABLE IF EXISTS `product_variant_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_variant_options` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `product_variant_id` int(11) NOT NULL,
  `product_option_id` int(11) NOT NULL,
  `option_value_id` int(11) NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_variant_options`
--

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

--
-- Table structure for table `product_variants`
--

DROP TABLE IF EXISTS `product_variants`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_variants` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `price` decimal(8,2) NOT NULL DEFAULT 0.00,
  `stock` int(11) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_variants`
--

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

--
-- Table structure for table `products`
--

DROP TABLE IF EXISTS `products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int(11) NOT NULL DEFAULT 1,
  `price` decimal(8,2) NOT NULL DEFAULT 0.00,
  `currency_id` int(11) NOT NULL DEFAULT 1,
  `showroom` int(11) NOT NULL DEFAULT 0,
  `position` int(11) NOT NULL DEFAULT 0,
  `sku` varchar(255) NOT NULL DEFAULT '0',
  `code` varchar(255) DEFAULT NULL,
  `stock` int(11) NOT NULL DEFAULT 0,
  `status` enum('active','pending','denied','hidden') NOT NULL DEFAULT 'hidden',
  `user_id` int(11) NOT NULL DEFAULT 0,
  `vat` int(11) NOT NULL DEFAULT 18,
  `catalog_no` int(11) DEFAULT NULL,
  `rate` decimal(2,1) NOT NULL DEFAULT 0.0,
  `review_count` int(11) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products`
--

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

--
-- Table structure for table `products_language`
--

DROP TABLE IF EXISTS `products_language`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products_language` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `permalink` varchar(255) DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `cargo_info` longtext DEFAULT NULL,
  `product_id` int(11) NOT NULL DEFAULT 1,
  `language_id` int(11) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products_language`
--

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

--
-- Table structure for table `products_showroom`
--

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

--
-- Dumping data for table `products_showroom`
--

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

--
-- Table structure for table `project_categories`
--

DROP TABLE IF EXISTS `project_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `project_categories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `image` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_categories`
--

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

--
-- Table structure for table `project_category_languages`
--

DROP TABLE IF EXISTS `project_category_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `project_category_languages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `language_id` bigint(20) NOT NULL DEFAULT 1,
  `project_category_id` bigint(20) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_category_languages`
--

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

--
-- Table structure for table `project_images`
--

DROP TABLE IF EXISTS `project_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `project_images` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `project_id` bigint(20) NOT NULL,
  `position` int(11) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_images`
--

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

--
-- Table structure for table `project_languages`
--

DROP TABLE IF EXISTS `project_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `project_languages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `language_id` bigint(20) NOT NULL DEFAULT 1,
  `project_id` bigint(20) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_languages`
--

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

--
-- Table structure for table `projects`
--

DROP TABLE IF EXISTS `projects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `projects` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `image` varchar(255) DEFAULT NULL,
  `project_category_id` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `projects`
--

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

--
-- Table structure for table `reference_images`
--

DROP TABLE IF EXISTS `reference_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reference_images` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `reference_id` bigint(20) NOT NULL,
  `position` int(11) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reference_images`
--

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

--
-- Table structure for table `reference_languages`
--

DROP TABLE IF EXISTS `reference_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reference_languages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `language_id` int(11) NOT NULL DEFAULT 1,
  `reference_id` bigint(20) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reference_languages`
--

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

--
-- Table structure for table `references`
--

DROP TABLE IF EXISTS `references`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `references` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `image` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `references`
--

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

--
-- Table structure for table `salesman_order_products`
--

DROP TABLE IF EXISTS `salesman_order_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesman_order_products` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `price` decimal(8,2) NOT NULL DEFAULT 0.00,
  `quantity` int(11) NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesman_order_products`
--

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

--
-- Table structure for table `salesman_orders`
--

DROP TABLE IF EXISTS `salesman_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesman_orders` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_number` varchar(255) NOT NULL,
  `company_name` varchar(255) DEFAULT NULL,
  `company_user` varchar(255) DEFAULT NULL,
  `company_phone` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `discount_amount` decimal(8,2) NOT NULL DEFAULT 0.00,
  `discount_percent` decimal(8,2) NOT NULL DEFAULT 0.00,
  `total_price` decimal(8,2) NOT NULL DEFAULT 0.00,
  `products_total_price` decimal(8,2) NOT NULL DEFAULT 0.00,
  `user_id` int(11) NOT NULL,
  `status` int(11) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesman_orders`
--

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

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

DROP TABLE IF EXISTS `settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `site_name` varchar(255) DEFAULT NULL,
  `site_slogan` varchar(255) DEFAULT NULL,
  `site_description` varchar(255) DEFAULT NULL,
  `site_keywords` varchar(255) DEFAULT NULL,
  `language_id` int(11) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `settings` WRITE;
/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
INSERT INTO `settings` VALUES (1,'Sitem','En modern ve kaliteli mobilyaların doğru adresi!','Modern ve kaliteli mobilya ürünlerimizi sizlerle buluşturuyoruz. Bize ulaşarak daha fazla bilgi alabilirsiniz.','softrede, website, yazılım, mobil uygulama, cms, crm, sistem yönetimi, personal takip',1,NULL,NULL),(2,'Sitem','En modern ve kaliteli mobilyaların doğru adresi!','Modern ve kaliteli mobilya ürünlerimizi sizlerle buluşturuyoruz. Bize ulaşarak daha fazla bilgi alabilirsiniz.','softrede, website, yazılım, mobil uygulama, cms, crm, sistem yönetimi, personal takip',2,NULL,NULL),(3,'Sitem','En modern ve kaliteli mobilyaların doğru adresi!','Modern ve kaliteli mobilya ürünlerimizi sizlerle buluşturuyoruz. Bize ulaşarak daha fazla bilgi alabilirsiniz.','softrede, website, yazılım, mobil uygulama, cms, crm, sistem yönetimi, personal takip',3,NULL,NULL);
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `site_settings`
--

DROP TABLE IF EXISTS `site_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `site_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(255) NOT NULL,
  `value` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `site_settings`
--

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

--
-- Table structure for table `slider_places`
--

DROP TABLE IF EXISTS `slider_places`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `slider_places` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slider_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `position` int(11) NOT NULL DEFAULT 0,
  `key` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `slider_places_slider_id_foreign` (`slider_id`),
  KEY `slider_places_user_id_foreign` (`user_id`),
  CONSTRAINT `slider_places_slider_id_foreign` FOREIGN KEY (`slider_id`) REFERENCES `sliders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `slider_places_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `slider_places`
--

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

--
-- Table structure for table `sliders`
--

DROP TABLE IF EXISTS `sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sliders` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `image` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `link` varchar(255) DEFAULT NULL,
  `language_id` bigint(20) NOT NULL,
  `position` tinyint(4) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sliders`
--

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

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

DROP TABLE IF EXISTS `teams`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `teams` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `employee_position` varchar(255) DEFAULT NULL COMMENT 'employee''s position in the company',
  `image` varchar(255) DEFAULT NULL,
  `facebook_url` varchar(255) DEFAULT NULL,
  `twitter_url` varchar(255) DEFAULT NULL,
  `instagram_url` varchar(255) DEFAULT NULL,
  `linkedin_url` varchar(255) DEFAULT NULL,
  `telegram_url` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `templates`
--

DROP TABLE IF EXISTS `templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `templates` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `status` enum('active','passive') NOT NULL DEFAULT 'passive',
  `type` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0-Default, 1-Blog',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `templates`
--

LOCK TABLES `templates` WRITE;
/*!40000 ALTER TABLE `templates` DISABLE KEYS */;
INSERT INTO `templates` VALUES (1,'default','active',0,NULL,'2024-10-02 08:13:07','2024-10-02 08:13:07'),(48,'alibebemobilya','passive',0,NULL,'2024-10-02 07:18:46','2024-10-02 08:14:43'),(49,'aytegmobilya','passive',0,NULL,'2024-10-02 07:18:46','2024-10-02 08:14:43'),(50,'default-ecommerce','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(51,'e-trade','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(52,'ecommerce-argekom','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(53,'egesafira','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(54,'fantastikmobilya','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(55,'hukukburosu','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(56,'hukukburosu2','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(57,'istarslan','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(58,'kerem','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(59,'neyapiyon','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(60,'nivemeshome','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(61,'ozenparkanaokulu','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(62,'safirmobilya','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(63,'softrede-blog','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(64,'softrede-ecommerce','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(65,'softrede-gelirimevden','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(66,'softrede-gelirimsensin','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(67,'softrede-geliryuvan','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(68,'softrede-maydonezoyun','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(69,'softrede-maydonezoyun2','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43'),(70,'solinmobilya','passive',0,NULL,'2024-10-02 07:18:47','2024-10-02 08:14:43');
/*!40000 ALTER TABLE `templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_addresses`
--

DROP TABLE IF EXISTS `user_addresses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_addresses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `fullname` varchar(255) DEFAULT NULL,
  `country_id` int(11) NOT NULL,
  `city` varchar(255) DEFAULT NULL,
  `district` varchar(255) DEFAULT NULL,
  `postcode` varchar(255) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `user_id` int(11) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_addresses`
--

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

--
-- Table structure for table `user_favorite_products`
--

DROP TABLE IF EXISTS `user_favorite_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_favorite_products` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_favorite_products`
--

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

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

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `surname` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `email` varchar(255) NOT NULL,
  `type` enum('admin','personal','customer') NOT NULL DEFAULT 'customer',
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(255) NOT NULL,
  `auth_id` int(11) NOT NULL DEFAULT 1,
  `discount_percent` decimal(8,2) NOT NULL DEFAULT 0.00,
  `remember_token` varchar(100) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'Admin','',NULL,'admin@gmail.com','customer',NULL,'$2y$10$ypf6v4rsa8j74ksS/Q5eZ.v03VQhZB1ohSkh84v3D7xDoId93c9yK',2,0.00,NULL,NULL,'2024-10-02 08:13:06','2024-10-02 08:13:06'),(2,'Onur','Bozkurt   ',NULL,'onurbozkurt@usa.com','customer',NULL,'$2y$10$1F960gdssOH24j4CJyhhOOopoQ0om6GaJtbnAE7ke.6eluHA6QwOK',2,0.00,NULL,NULL,'2024-10-02 08:13:06','2024-10-02 08:13:06');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2024-10-01 15:15:14
