-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathsmmstore_test.sql
621 lines (542 loc) · 132 KB
/
smmstore_test.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
-- MySQL dump 10.13 Distrib 5.7.31, for Win64 (x86_64)
--
-- Host: localhost Database: smmstore
-- ------------------------------------------------------
-- Server version 5.7.31
/*!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 utf8 */;
/*!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 `admins`
--
DROP TABLE IF EXISTS `admins`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admins` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`firstname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`lastname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`avatar` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'avatar.jpg',
`status` enum('active','deactive') COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `admins_email_unique` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admins`
--
LOCK TABLES `admins` WRITE;
/*!40000 ALTER TABLE `admins` DISABLE KEYS */;
INSERT INTO `admins` VALUES (1,'admin','admin','demo','avatar.jpg','active','[email protected]','$2y$10$mZ5CtpTyruYmcGLKsAi6uuGYPDKcioIve2s.7foA4TkI2gO83O1eC','nZPBSpdpM1mZazGfdMLRv0X52D4MKIOIjNsBKtmdYEzjIAdwQULTyGPe3CXf','2021-11-03 13:59:16','2021-11-05 17:14:23');
/*!40000 ALTER TABLE `admins` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `announcements`
--
DROP TABLE IF EXISTS `announcements`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `announcements` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`type` enum('new service','disabled service','updated service','announcement') COLLATE utf8mb4_unicode_ci NOT NULL,
`start` date NOT NULL,
`end` date NOT NULL,
`status` enum('active','deactive') COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `announcements`
--
LOCK TABLES `announcements` WRITE;
/*!40000 ALTER TABLE `announcements` DISABLE KEYS */;
/*!40000 ALTER TABLE `announcements` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `api_providers`
--
DROP TABLE IF EXISTS `api_providers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `api_providers` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`url` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`api_key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`percentage_increase` double(8,2) NOT NULL,
`services_count` int(11) DEFAULT '0',
`status` enum('active','deactive') COLLATE utf8mb4_unicode_ci NOT NULL,
`notes` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `api_providers`
--
LOCK TABLES `api_providers` WRITE;
/*!40000 ALTER TABLE `api_providers` DISABLE KEYS */;
/*!40000 ALTER TABLE `api_providers` 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,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`sort` int(11) DEFAULT '0',
`status` enum('active','deactive') COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `categories_name_unique` (`name`)
) ENGINE=MyISAM 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 `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(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`)
) ENGINE=MyISAM 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 `faqs`
--
DROP TABLE IF EXISTS `faqs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `faqs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`question` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`sort` int(11) DEFAULT '0',
`status` enum('active','deactive') COLLATE utf8mb4_unicode_ci NOT NULL,
`answer` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `faqs`
--
LOCK TABLES `faqs` WRITE;
/*!40000 ALTER TABLE `faqs` DISABLE KEYS */;
INSERT INTO `faqs` VALUES (1,'SMM panels - what are they?',0,'active','<p>An SMM panel is an online shop that you can visit to purchase SMM services at great prices.</p>','2021-11-04 07:17:36','2021-11-14 12:47:31'),(2,'What SMM services can I find on this panel?',0,'active','<p>We sell different types of SMM services — likes, followers, views, etc.</p>','2021-11-04 07:18:11','2021-11-04 07:18:11'),(3,'Are SMM services on your panel safe to buy?',0,'active','<p>Sure! Your accounts won\'t get banned.</p>','2021-11-04 07:19:46','2021-11-04 07:19:46'),(4,'What is the start time & speed after placing an order?',0,'active','<p>Every service is different. Whenever you select a service from the drop-down menu, you will see a Description box with all the specifications for that particular service</p>','2021-11-04 07:21:10','2021-11-04 07:21:10'),(5,'How do I place an order?',0,'active','<p><strong>Step 1</strong>: Select the Social Media platform you want to grow.</p><p><strong>Step 2</strong>: Carefully read details for every service before placing an order.</p><p><strong>Step 3</strong>: Enter the username or page link.</p><p><strong>Step 4</strong>: It will shows your order cost.</p><p>Press Submit and enjoy your order!</p>','2021-11-04 07:23:17','2021-11-04 07:30:17');
/*!40000 ALTER TABLE `faqs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `language_values`
--
DROP TABLE IF EXISTS `language_values`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `language_values` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`key` text COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci NOT NULL,
`language_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `language_values_language_id_foreign` (`language_id`)
) ENGINE=MyISAM AUTO_INCREMENT=17364 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `language_values`
--
LOCK TABLES `language_values` WRITE;
/*!40000 ALTER TABLE `language_values` DISABLE KEYS */;
INSERT INTO `language_values` VALUES (1,'dashboad','Dashboad',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(3,'services','Services',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(747,'order details','Order Details',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(5,'categories','Categories',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(7,'orders','Orders',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(3688,'language saved successfully','language saved successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(9,'tickets','Tickets',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(11,'transactions','Transactions',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(13,'users managment','Users managment',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(200,'these credentials do not match our records.','These credentials do not match our records.',1,'2021-09-21 18:31:41','2021-09-21 18:31:41'),(15,'regular users','Regular users',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(1637,'firstname is required','firstname is required',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(17,'admins','Admins',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(19,'api providers','API Providers',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(745,'user','User',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(21,'payments methods','Payments Methods',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(1639,'lastname is required','lastname is required',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(23,'system settings','System Settings',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(25,'general settings','General Settings',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(27,'service settings','Service Settings',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(29,'apparence','Apparence',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(31,'languages','Languages',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(33,'seo manager','Seo Manager',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(35,'terms and policy','Terms and Policy',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(37,'email settings','Email Settings',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(39,'faqs','FAQs',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(41,'announcements','Announcements',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(43,'log out','Log out',1,'2021-09-15 19:09:25','2021-09-15 19:09:25'),(16895,'awaiting','awaiting',1,'2021-12-05 22:07:01','2021-12-05 22:07:01'),(17354,'default settings','الإعدادات الافتراضية',2,NULL,NULL),(67,'sign in','Sign In',1,'2021-09-17 15:49:33','2021-09-17 15:49:33'),(69,'email or username','Email or Username',1,'2021-09-17 15:49:33','2021-09-17 15:49:33'),(71,'password','Password',1,'2021-09-17 15:49:33','2021-09-17 15:49:33'),(73,'remember me','Remember Me',1,'2021-09-17 15:49:33','2021-09-17 15:49:33'),(75,'forgot password?','Forgot Password?',1,'2021-09-17 15:49:33','2021-09-17 15:49:33'),(17344,'log in','تسجيل دخول',2,NULL,NULL),(17345,'email templates','قوالب البريد الإلكتروني',2,NULL,NULL),(17346,'email smtp settings','إعدادات SMTP للبريد الإلكتروني',2,NULL,NULL),(17347,'mail driver','سائق البريد',2,NULL,NULL),(16893,'in progress','in progress',1,'2021-12-05 22:07:01','2021-12-05 22:07:01'),(104,'create new account','Create New Account',1,'2021-09-17 16:35:10','2021-09-17 16:35:10'),(106,'username','Username',1,'2021-09-17 16:35:10','2021-09-17 16:35:10'),(108,'lastname','Lastname',1,'2021-09-17 16:35:10','2021-09-17 16:35:10'),(110,'email','Email',1,'2021-09-17 16:35:10','2021-09-17 16:35:10'),(112,'i agree','I agree',1,'2021-09-17 16:35:10','2021-09-17 16:35:10'),(114,'sign up','Sign Up',1,'2021-09-17 16:35:10','2021-09-17 16:35:10'),(116,'terms & conditions','Terms & Conditions',1,'2021-09-17 16:35:10','2021-09-17 16:35:10'),(118,'firstname','Firstname',1,'2021-09-17 16:37:42','2021-09-17 16:37:42'),(17342,'sign in as admin','تسجيل الدخول كمسؤول',2,NULL,NULL),(157,'already have an account ?','Already have an account ?',1,'2021-09-20 14:32:13','2021-09-20 14:32:13'),(161,'you don\'t have an account yet?','you don\'t have an account yet?',1,'2021-09-20 14:34:02','2021-09-20 14:34:02'),(202,'the username field is required.','The username field is required.',1,'2021-09-21 19:23:14','2021-09-21 19:23:14'),(17343,'log in as admin','تسجيل الدخول كمسؤول',2,NULL,NULL),(204,'the firstname field is required.','The firstname field is required.',1,'2021-09-21 19:23:14','2021-09-21 19:23:14'),(206,'the lastname field is required.','The lastname field is required.',1,'2021-09-21 19:23:14','2021-09-21 19:23:14'),(208,'the email field is required.','The email field is required.',1,'2021-09-21 19:23:14','2021-09-21 19:23:14'),(210,'the password field is required.','The password field is required.',1,'2021-09-21 19:23:14','2021-09-21 19:23:14'),(212,'add funds','Add funds',1,'2021-09-21 19:35:33','2021-09-21 19:35:33'),(214,'transactions log','Transactions log',1,'2021-09-21 19:35:33','2021-09-21 19:35:33'),(17348,'mail host','مضيف البريد',2,NULL,NULL),(17349,'mail port','منفذ البريد',2,NULL,NULL),(216,'the password confirmation does not match.','The password confirmation does not match.',1,'2021-09-21 19:53:08','2021-09-21 19:53:08'),(218,'the terms must be accepted.','The terms must be accepted.',1,'2021-09-21 19:53:08','2021-09-21 19:53:08'),(267,'password confirm','Password Confirm',1,'2021-09-22 05:31:33','2021-09-22 05:31:33'),(17350,'mail encryption','تشفير البريد',2,NULL,NULL),(317,'search','Search',1,'2021-09-22 05:42:28','2021-09-22 05:42:28'),(319,'api provider','Api Provider',1,'2021-09-22 05:42:28','2021-09-22 05:42:28'),(321,'service','Service',1,'2021-09-22 05:42:28','2021-09-22 05:42:28'),(323,'rate/original rate per 1000','Rate/Original Rate per 1000',1,'2021-09-22 05:42:28','2021-09-22 05:42:28'),(325,'min/max order','Min/Max order',1,'2021-09-22 05:42:28','2021-09-22 05:42:28'),(327,'status','Status',1,'2021-09-22 05:42:28','2021-09-22 05:42:28'),(329,'actions','Actions',1,'2021-09-22 05:42:28','2021-09-22 05:42:28'),(386,'add new service','Add New Service',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(388,'name','Name',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(390,'service name','Service name',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(17351,'mail username','اسم المستخدم البريد',2,NULL,NULL),(17352,'mail password','كلمة المرور البريدية',2,NULL,NULL),(392,'name is required','Name is required',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(394,'maximum characters is 150','maximum characters is 150',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(396,'type','Type',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(398,'normal','Normal',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(400,'api','Api',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(17336,'icon','أيقونة',2,NULL,NULL),(17337,'apple icon','أيقونة أبل',2,NULL,NULL),(17338,'apple touch icon','رمز Apple touch',2,NULL,NULL),(402,'category','Category',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(404,'select category','Select Category',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(406,'category is required','Category is required',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(408,'api provider is required','Api provider is required',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(410,'minimum amount','Minimum Amount',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(412,'max amount','Max Amount',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(414,'maximum amount','Maximum Amount',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(416,'rate per 1000','Rate per 1000',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(418,'price percentage increase','Price percentage increase',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(420,'description','Description',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(422,'submit','submit',1,'2021-09-22 06:00:22','2021-09-22 06:00:22'),(17353,'email can not be sent. please check your configuration','لا يمكن إرسال البريد الإلكتروني. يرجى التحقق من التكوين الخاص بك',2,NULL,NULL),(17341,'your email has been sent successfully','تم إرسال البريد الإلكتروني الخاص بك بنجاح',2,NULL,NULL),(17335,'appearance settings','إعدادات المظهر',2,NULL,NULL),(498,'active','Active',1,'2021-09-22 06:07:39','2021-09-22 06:07:39'),(500,'deactive','Deactive',1,'2021-09-22 06:07:40','2021-09-22 06:07:40'),(578,'sorting','Sorting',1,'2021-09-22 06:26:07','2021-09-22 06:26:07'),(657,'add new category','add new category',1,'2021-09-22 06:34:06','2021-09-22 06:34:06'),(659,'category name','Category name',1,'2021-09-22 06:34:06','2021-09-22 06:34:06'),(17339,'terms & conditions','البنود و الشروط',2,NULL,NULL),(663,'sorting number','Sorting number',1,'2021-09-22 06:34:06','2021-09-22 06:34:06'),(749,'created at','Created at',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(751,'add new order','add new order',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(753,'select service','Select Service',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(755,'service is required','service is required',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(757,'link','Link',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(759,'link is required','link is required',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(17340,'terms & privacy policy','الشروط وسياسة الخصوصية',2,NULL,NULL),(761,'link not valid','link not valid',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(763,'qantity','Qantity',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(765,'quantity','quantity',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(767,'quantity is required','quantity is required',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(769,'quantity must be less than or equal to maximum amount','quantity must be less than or equal to maximum amount',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(17333,'linkedin link','لينكد إن لينك',2,NULL,NULL),(17334,'instagram link','رابط إنستقرام',2,NULL,NULL),(771,'quantity must be greater than or equal to minimum amount','quantity must be greater than or equal to minimum amount',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(17331,'facebook link','رابط الفيسبوك',2,NULL,NULL),(773,'notes','Notes',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(775,'i have confirmed this order','I have confirmed this order',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(777,'confirmation is required','confirmation is required',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(779,'order resume','Order Resume',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(781,'name : ','name : ',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(792,'min','min',1,'2021-09-22 07:10:18','2021-09-22 07:10:18'),(783,'min : ','min : ',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(785,'max : ','max : ',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(794,'max','max',1,'2021-09-22 07:10:18','2021-09-22 07:10:18'),(787,'rate : ','rate : ',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(789,'description : ','description : ',1,'2021-09-22 06:52:07','2021-09-22 06:52:07'),(796,'rate','rate',1,'2021-09-22 07:10:18','2021-09-22 07:10:18'),(17332,'twitter link','رابط تويتر',2,NULL,NULL),(898,'place order','Place Order',1,'2021-09-22 07:24:10','2021-09-22 07:24:10'),(1001,'created','Created',1,'2021-09-22 07:34:07','2021-09-22 07:34:07'),(1003,'ticket','Ticket',1,'2021-09-22 07:35:22','2021-09-22 07:35:22'),(1005,'change status','Change Status',1,'2021-09-22 07:35:22','2021-09-22 07:35:22'),(1007,'pending','pending',1,'2021-09-22 07:35:22','2021-09-22 07:35:22'),(1009,'answered','answered',1,'2021-09-22 07:35:22','2021-09-22 07:35:22'),(1011,'closed','closed',1,'2021-09-22 07:35:22','2021-09-22 07:35:22'),(1013,'fullname','Fullname',1,'2021-09-22 07:35:23','2021-09-22 07:35:23'),(1015,'subject','Subject',1,'2021-09-22 07:35:23','2021-09-22 07:35:23'),(1017,'message','Message',1,'2021-09-22 07:35:23','2021-09-22 07:35:23'),(1019,'send','Send',1,'2021-09-22 07:35:23','2021-09-22 07:35:23'),(17328,'error','خطأ',2,NULL,NULL),(17329,'you just found an error page..','لقد وجدت للتو صفحة خطأ ..',2,NULL,NULL),(1131,'transaction id','Transaction ID',1,'2021-09-22 07:48:24','2021-09-22 07:48:24'),(1133,'payment method','Payment Method',1,'2021-09-22 07:48:24','2021-09-22 07:48:24'),(1135,'amount','Amount',1,'2021-09-22 07:48:24','2021-09-22 07:48:24'),(1137,'fee','Fee',1,'2021-09-22 07:48:24','2021-09-22 07:48:24'),(1139,'profit','Profit',1,'2021-09-22 07:48:24','2021-09-22 07:48:24'),(1141,'your payment has been processed successfully','your payment has been processed successfully',1,'2021-09-22 07:48:24','2021-09-22 07:48:24'),(17330,'we are sorry but the page you are looking for was not found..','نأسف ولكن الصفحة التي تبحث عنها غير موجودة ..',2,NULL,NULL),(1259,'are you sure you want to delete this service?','Are you sure you want to delete this service?',1,'2021-09-22 07:52:32','2021-09-22 07:52:32'),(1261,'are you sure you want to delete this category?','Are you sure you want to delete this category?',1,'2021-09-22 07:52:37','2021-09-22 07:52:37'),(1263,'are you sure you want to delete this order?','Are you sure you want to delete this order?',1,'2021-09-22 07:52:45','2021-09-22 07:52:45'),(17326,'© copyright by','© حقوق التأليف والنشر',2,NULL,NULL),(17327,'<p>an smm panel is an online shop that you can visit to purchase smm services at great prices.</p>','<p> لوحة SMM هي متجر عبر الإنترنت يمكنك زيارته لشراء خدمات SMM بأسعار رائعة. </p>',2,NULL,NULL),(1384,'are you sure you want to delete this ticket?','Are you sure you want to delete this ticket?',1,'2021-09-22 07:54:58','2021-09-22 07:54:58'),(1506,'users','Users',1,'2021-09-22 08:41:21','2021-09-22 08:41:21'),(1508,'user profil','User profil',1,'2021-09-22 08:41:21','2021-09-22 08:41:21'),(1510,'funds','Funds',1,'2021-09-22 08:41:21','2021-09-22 08:41:21'),(1641,'username is required','username is required',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(1643,'$status','$status',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(1645,'email is required','email is required',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(1647,'password is required','password is required',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(1649,'password should have minimum 8 characters','password should have minimum 8 characters',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(1651,'confirm password','confirm password',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(17317,'superior quality','جودة عالية',2,NULL,NULL),(17318,'send message','أرسل رسالة',2,NULL,NULL),(1653,'confirm password is required','confirm password is required',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(1655,'password didn\'t match','password didn\'t match',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(1657,'address','Address',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(1659,'address is required','address is required',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(1661,'phone','Phone',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(1663,'phone is required','phone is required',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(1665,'are you sure you want to delete this user?','Are you sure you want to delete this user?',1,'2021-09-22 08:49:42','2021-09-22 08:49:42'),(17299,'david martin','ديفيد مارتن',2,NULL,NULL),(17300,'if you are looking for the most reasonable smm panel then smm booster is the best panel.','إذا كنت تبحث عن لوحة SMM الأكثر منطقية ، فإن smm booster هو أفضل لوحة.',2,NULL,NULL),(17301,'instagram model','عارض',2,NULL,NULL),(17302,'kelvin wood','كلفن وود',2,NULL,NULL),(17303,'youtuber','صاحب قناة يوتيوب',2,NULL,NULL),(17304,'catherine soft','كاثرين سوفت',2,NULL,NULL),(1805,'add new user','add new user',1,'2021-09-22 08:57:13','2021-09-22 08:57:13'),(1946,'add new admin','add new admin',1,'2021-09-22 09:21:37','2021-09-22 09:21:37'),(1948,'are you sure you want to delete this admin?','Are you sure you want to delete this admin?',1,'2021-09-22 09:21:56','2021-09-22 09:21:56'),(2091,'delete','Delete',1,'2021-09-22 09:30:37','2021-09-22 09:30:37'),(2093,'no','No',1,'2021-09-22 09:30:38','2021-09-22 09:30:38'),(2095,'yes','Yes',1,'2021-09-22 09:30:38','2021-09-22 09:30:38'),(17319,'your message','رسالتك',2,NULL,NULL),(17320,'e-mail address','البريد الإلكتروني',2,NULL,NULL),(2097,'are you sure you want to delete this transaction?','Are you sure you want to delete this transaction?',1,'2021-09-22 09:30:51','2021-09-22 09:30:51'),(2099,'are you sure you want to delete this api?','Are you sure you want to delete this API?',1,'2021-09-22 09:31:10','2021-09-22 09:31:10'),(2101,'are you sure you want to delete this payment method?','Are you sure you want to delete this payment Method?',1,'2021-09-22 09:31:16','2021-09-22 09:31:16'),(2250,'balance','Balance',1,'2021-09-22 09:35:12','2021-09-22 09:35:12'),(2252,'url','Url',1,'2021-09-22 09:35:12','2021-09-22 09:35:12'),(2254,'connected','Connected',1,'2021-09-22 09:35:12','2021-09-22 09:35:12'),(2256,'add new api','Add New API',1,'2021-09-22 09:39:43','2021-09-22 09:39:43'),(2258,'api provider name','Api provider name',1,'2021-09-22 09:39:43','2021-09-22 09:39:43'),(2260,'url is required','url is required',1,'2021-09-22 09:39:43','2021-09-22 09:39:43'),(2262,'url not valid','url not valid',1,'2021-09-22 09:39:43','2021-09-22 09:39:43'),(2264,'api key','Api key',1,'2021-09-22 09:39:43','2021-09-22 09:39:43'),(2266,'api key is required','api key is required',1,'2021-09-22 09:39:43','2021-09-22 09:39:43'),(17308,'24/7 customer support','24/7 دعم العملاء',2,NULL,NULL),(2424,'payment methods','Payment Methods',1,'2021-09-22 11:10:57','2021-09-22 11:10:57'),(2426,'transaction fee','transaction fee',1,'2021-09-22 11:10:57','2021-09-22 11:10:57'),(2428,'payment method name','Payment Method Name',1,'2021-09-22 11:10:57','2021-09-22 11:10:57'),(2430,'minimal payment','Minimal payment',1,'2021-09-22 11:10:57','2021-09-22 11:10:57'),(2432,'maximal payment','Maximal payment',1,'2021-09-22 11:10:57','2021-09-22 11:10:57'),(17309,'you can rest assured that your orders will be delivered fast.','يمكنك أن تطمئن إلى أنه سيتم تسليم طلباتك بسرعة وجودة عالية.',2,NULL,NULL),(2434,'fee %','fee %',1,'2021-09-22 11:10:57','2021-09-22 11:10:57'),(2436,'environment','Environment',1,'2021-09-22 11:10:57','2021-09-22 11:10:57'),(2438,'sandbox','sandbox',1,'2021-09-22 11:10:57','2021-09-22 11:10:57'),(2440,'production','production',1,'2021-09-22 11:10:57','2021-09-22 11:10:57'),(2442,'public key','public key',1,'2021-09-22 11:10:57','2021-09-22 11:10:57'),(2444,'client id','Client ID',1,'2021-09-22 11:10:57','2021-09-22 11:10:57'),(2446,'private key','Private key',1,'2021-09-22 11:10:57','2021-09-22 11:10:57'),(2448,'secret key','secret key',1,'2021-09-22 11:10:58','2021-09-22 11:10:58'),(17313,'pick a payment option you prefer to add funds.','اختر خيار الدفع الذي تفضله لإضافة الأموال.',2,NULL,NULL),(17314,'various payment methods','طرق دفع مختلفة',2,NULL,NULL),(17315,'friendly dashboard','لوحة تحكم رائعة',2,NULL,NULL),(17316,'we provide our panel users with superb smm services.','نحن نقدم لمستخدمينا لوحة خدمات SMM رائعة.',2,NULL,NULL),(17310,'prompt delivery','التسليم الفوري',2,NULL,NULL),(17311,'cheap smm services to meet the needs of our customers.','خدمات SMM رخيصة لتلبية احتياجات عملائنا و تسويق حساباتهم',2,NULL,NULL),(2619,'modify payment method','Modify Payment Method',1,'2021-09-22 11:19:27','2021-09-22 11:19:27'),(17312,'shockingly cheap','رخيصة جدا',2,NULL,NULL),(3130,'edit','edit',1,'2021-09-22 11:32:58','2021-09-22 11:32:58'),(3303,'maintenance mode','Maintenance mode',1,'2021-09-22 11:40:19','2021-09-22 11:40:19'),(3305,'user registration','User Registration',1,'2021-09-22 11:40:19','2021-09-22 11:40:19'),(3307,'user login','User Login',1,'2021-09-22 11:40:19','2021-09-22 11:40:19'),(3309,'email verification','Email verification',1,'2021-09-22 11:40:19','2021-09-22 11:40:19'),(3311,'website name 1','Website Name 1',1,'2021-09-22 11:40:19','2021-09-22 11:40:19'),(3313,'website name 2','Website Name 2',1,'2021-09-22 11:40:19','2021-09-22 11:40:19'),(3315,'website title','Website Title',1,'2021-09-22 11:40:19','2021-09-22 11:40:19'),(3317,'currency code','Currency Code',1,'2021-09-22 11:40:19','2021-09-22 11:40:19'),(3319,'currency symbol','Currency Symbol',1,'2021-09-22 11:40:19','2021-09-22 11:40:19'),(3321,'save','Save',1,'2021-09-22 11:40:19','2021-09-22 11:40:19'),(3504,'settings saved successfully','settings saved successfully',1,'2021-09-22 11:43:11','2021-09-22 11:43:11'),(17323,'contact us','تواصل معنا',2,NULL,NULL),(3690,'ticket saved successfully','ticket saved successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3692,'ticket updated successfully','ticket updated successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3694,'language updated successfully','language updated successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(17321,'full name','الاسم لكامل',2,NULL,NULL),(17322,'login','تسجيل الدخول',2,NULL,NULL),(3696,'user updated successfully','user updated successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3698,'new user added successfully','New user added successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3700,'user notification updated successfully','user notification updated successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3702,'new user notification added successfully','new user notification added successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3704,'transaction updated successfully','transaction updated successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3706,'service updated successfully','service updated successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3708,'new service added successfully','New service added successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(17325,'home','الرئيسية',2,NULL,NULL),(3710,'payment method updated successfully','payment method updated successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3712,'new payment method added successfully','New payment Method added successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(17305,'everyday we work hard to make life of our clients better and happier','نعمل كل يوم بجد لجعل حياة عملائنا أفضل وأكثر سعادة',2,NULL,NULL),(3714,'order updated successfully','order updated successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3716,'you don\'t have enough balance','You don\'t have enough balance',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3718,'new order added successfully','New order added successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3720,' $ added successfully to your account',' $ added successfully to your account',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(4383,'are you sure you want to delete this announcement?','Are you sure you want to delete this announcement?',1,'2021-09-22 16:12:54','2021-09-22 16:12:54'),(3722,'faq updated successfully','faq updated successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3724,'new faq added successfully','New faq added successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3726,'category updated successfully','category updated successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(17324,'testimonials','قالوا عنا',2,NULL,NULL),(3728,'new category added successfully','New category added successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3730,'item deleted successfully','item deleted successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3732,'api provider updated successfully','api provider updated successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3734,'new api provider added successfully','New API provider added successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3736,'announcement updated successfully','announcement updated successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3738,'new announcement added successfully','New announcement added successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3740,'admin updated successfully','admin updated successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3742,'new admin added successfully','New admin added successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(3744,'services synchronized successfully','services synchronized successfully',1,'2021-09-22 12:34:56','2021-09-22 12:34:56'),(4169,'are you sure you want to delete this language?','Are you sure you want to delete this language?',1,'2021-09-22 14:42:56','2021-09-22 14:42:56'),(17291,'comes with all the essential features and elements you need','يأتي مع جميع الميزات والعناصر الأساسية التي تحتاجها',2,NULL,NULL),(17292,'features','الميزات',2,NULL,NULL),(17293,'we provide the oldest and most reliable automated social media services. system is a fully automated and has a structure where you can get followers, likes, views and more without sharing your password.','نحن نقدم أقدم خدمات الوسائط الاجتماعية الآلية وأكثرها موثوقية. النظام مؤتمت بالكامل وله هيكل يمكنك من خلاله الحصول على متابعين وإعجابات ومشاهدات والمزيد دون مشاركة كلمة المرور الخاصة بك.',2,NULL,NULL),(4385,'are you sure you want to delete this faq?','Are you sure you want to delete this faq?',1,'2021-09-22 16:15:03','2021-09-22 16:15:03'),(4387,'default service settings','Default Service Settings',1,'2021-09-22 16:16:25','2021-09-22 16:16:25'),(4389,'default min order','Default Min Order',1,'2021-09-22 16:16:25','2021-09-22 16:16:25'),(4391,'default max order','Default Max Order',1,'2021-09-22 16:16:25','2021-09-22 16:16:25'),(4393,'default price per 1000','Default price per 1000',1,'2021-09-22 16:16:25','2021-09-22 16:16:25'),(4395,'apparence settings','Apparence Settings',1,'2021-09-22 16:16:34','2021-09-22 16:16:34'),(4397,'site base color','Site Base Color',1,'2021-09-22 16:16:34','2021-09-22 16:16:34'),(4399,'site secondary color','Site Secondary Color',1,'2021-09-22 16:16:34','2021-09-22 16:16:34'),(4401,'site tertiary color','Site Tertiary Color',1,'2021-09-22 16:16:34','2021-09-22 16:16:34'),(4403,'logo','Logo',1,'2021-09-22 16:16:34','2021-09-22 16:16:34'),(17298,'blogger','مدون',2,NULL,NULL),(4405,'website logo','website Logo',1,'2021-09-22 16:16:34','2021-09-22 16:16:34'),(4407,'select','SELECT',1,'2021-09-22 16:16:34','2021-09-22 16:16:34'),(4409,'shortcut icon','shortcut icon',1,'2021-09-22 16:16:34','2021-09-22 16:16:34'),(4411,'website icon','website icon',1,'2021-09-22 16:16:34','2021-09-22 16:16:34'),(4413,'scripts integrations','Scripts Integrations',1,'2021-09-22 16:16:49','2021-09-22 16:16:49'),(4415,'website keywords','Website Keywords',1,'2021-09-22 16:16:49','2021-09-22 16:16:49'),(4417,'website description','Website Description',1,'2021-09-22 16:16:49','2021-09-22 16:16:49'),(4419,'social title','Social Title',1,'2021-09-22 16:16:49','2021-09-22 16:16:49'),(4421,'social description','Social Description',1,'2021-09-22 16:16:49','2021-09-22 16:16:49'),(17297,'talk to us','تواصل معنا',2,NULL,NULL),(4423,'terms & policy','Terms & Policy',1,'2021-09-22 16:16:56','2021-09-22 16:16:56'),(4425,'cookie policy','Cookie Policy',1,'2021-09-22 16:16:56','2021-09-22 16:16:56'),(17355,'for security reasons you can\'t update data in demo version','لأسباب أمنية ، لا يمكنك تحديث البيانات في الإصدار التجريبي',2,NULL,NULL),(4427,'welcome email','Welcome Email',1,'2021-09-22 16:17:05','2021-09-22 16:17:05'),(4429,'payment notification','Payment Notification',1,'2021-09-22 16:17:05','2021-09-22 16:17:05'),(4431,'order status','Order Status',1,'2021-09-22 16:17:05','2021-09-22 16:17:05'),(4433,'question','Question',1,'2021-09-22 16:17:13','2021-09-22 16:17:13'),(4435,'answer','Answer',1,'2021-09-22 16:17:13','2021-09-22 16:17:13'),(4437,'start date','Start Date',1,'2021-09-22 16:17:22','2021-09-22 16:17:22'),(4439,'end date','End Date',1,'2021-09-22 16:17:22','2021-09-22 16:17:22'),(17307,'with us, you get 24/7 customer support that can help you.','معنا ، تحصل على دعم عملاء على مدار الساعة طوال أيام الأسبوع يمكنه مساعدتك.',2,NULL,NULL),(5448,'are you sure you want to delete this user notifications ?','Are you sure you want to delete this user notifications ?',1,'2021-09-22 19:46:51','2021-09-22 19:46:51'),(17306,'what do they say?','ماذا قالوا عنا ؟',2,NULL,NULL),(4682,'appearance','Appearance',1,'2021-09-22 16:33:16','2021-09-22 16:33:16'),(17296,'technical support for all our services <br> 24/7 to help you','دعم فني لجميع خدماتنا <br> 24/7 لمساعدتك',2,NULL,NULL),(4926,'language values','Language values',1,'2021-09-22 18:09:29','2021-09-22 18:09:29'),(4928,'key','Key',1,'2021-09-22 18:09:29','2021-09-22 18:09:29'),(17294,'affordable price and fast delivery guarantee!','سعر مناسب وضمان التسليم السريع!',2,NULL,NULL),(5174,'are you sure you want to delete this user_notifications?','Are you sure you want to delete this user_notifications?',1,'2021-09-22 18:31:38','2021-09-22 18:31:38'),(17295,'see all services','انظر جميع الخدمات',2,NULL,NULL),(5176,'user notifications','User Notifications',1,'2021-09-22 19:21:50','2021-09-22 19:21:50'),(5178,'content','Content',1,'2021-09-22 19:21:50','2021-09-22 19:21:50'),(5180,'send notification to','Send Notification To',1,'2021-09-22 19:21:51','2021-09-22 19:21:51'),(5182,'select user','select user',1,'2021-09-22 19:21:51','2021-09-22 19:21:51'),(5184,'user is required','user is required',1,'2021-09-22 19:21:51','2021-09-22 19:21:51'),(5186,'subject is required','subject is required',1,'2021-09-22 19:21:51','2021-09-22 19:21:51'),(5188,'maximum characters is 250','maximum characters is 250',1,'2021-09-22 19:21:51','2021-09-22 19:21:51'),(5190,'view notification','view notification',1,'2021-09-22 19:21:51','2021-09-22 19:21:51'),(5192,'value','Value',1,'2021-09-22 19:22:43','2021-09-22 19:22:43'),(5702,'add new question','add new Question',1,'2021-09-22 19:49:30','2021-09-22 19:49:30'),(5704,'new service','new service',1,'2021-09-22 19:49:30','2021-09-22 19:49:30'),(5706,'disabled service','disabled service',1,'2021-09-22 19:49:30','2021-09-22 19:49:30'),(5708,'updated service','updated service',1,'2021-09-22 19:49:30','2021-09-22 19:49:30'),(17290,'here are the key features of our services you must know.','فيما يلي الميزات الرئيسية لخدماتنا التي يجب أن تعرفها.',2,NULL,NULL),(5710,'announcement','announcement',1,'2021-09-22 19:49:30','2021-09-22 19:49:30'),(17280,'type is required','النوع مطلوب',2,NULL,NULL),(17281,'payment','المدفوعات و الأموال',2,NULL,NULL),(17282,'message is required','الرسالة مطلوبة',2,NULL,NULL),(5712,'start','Start',1,'2021-09-22 19:49:30','2021-09-22 19:49:30'),(5714,'start date is required','Start date is required',1,'2021-09-22 19:49:30','2021-09-22 19:49:30'),(5716,'end','End',1,'2021-09-22 19:49:30','2021-09-22 19:49:30'),(5718,'end date is required','End date is required',1,'2021-09-22 19:49:30','2021-09-22 19:49:30'),(5720,'description is required','Description is required',1,'2021-09-22 19:49:30','2021-09-22 19:49:30'),(5722,'you can deposit funds with','You can deposit funds with',1,'2021-09-22 20:04:56','2021-09-22 20:04:56'),(5724,'they will be automaticly added into your account','they will be automaticly added into your account',1,'2021-09-22 20:04:56','2021-09-22 20:04:56'),(5726,'amount in usd','Amount in usd',1,'2021-09-22 20:04:56','2021-09-22 20:04:56'),(5728,'amount must be less than maximum amount','amount must be less than maximum amount',1,'2021-09-22 20:04:56','2021-09-22 20:04:56'),(5730,'amount must be greater than minimum amount','amount must be greater than minimum amount',1,'2021-09-22 20:04:56','2021-09-22 20:04:56'),(5732,'total amount to pay','Total Amount To Pay',1,'2021-09-22 20:04:56','2021-09-22 20:04:56'),(5734,'i understand that funds will not be asked for refund','I understand that funds will not be asked for refund',1,'2021-09-22 20:04:56','2021-09-22 20:04:56'),(5736,'add new ticket','add new ticket',1,'2021-09-22 20:08:10','2021-09-22 20:08:10'),(5738,'maximum characters is 100','maximum characters is 100',1,'2021-09-22 20:08:10','2021-09-22 20:08:10'),(5740,'select type','select type',1,'2021-09-22 20:08:10','2021-09-22 20:08:10'),(5742,'order','order',1,'2021-09-22 20:08:10','2021-09-22 20:08:10'),(5744,'payment','payment',1,'2021-09-22 20:08:10','2021-09-22 20:08:10'),(5746,'type is required','type is required',1,'2021-09-22 20:08:10','2021-09-22 20:08:10'),(5748,'message is required','message is required',1,'2021-09-22 20:08:10','2021-09-22 20:08:10'),(5750,'maximum characters is 600','maximum characters is 600',1,'2021-09-22 20:08:10','2021-09-22 20:08:10'),(5752,'attachment file','Attachment file',1,'2021-09-22 20:08:10','2021-09-22 20:08:10'),(5754,'user options','User Options',1,'2021-09-23 08:22:37','2021-09-23 08:22:37'),(5756,'profile','Profile',1,'2021-09-23 08:23:31','2021-09-23 08:23:31'),(5758,'sign out','Sign Out',1,'2021-09-23 08:23:31','2021-09-23 08:23:31'),(5760,'code','code',1,'2021-09-23 08:25:09','2021-09-23 08:25:09'),(5762,'image','image',1,'2021-09-23 08:25:09','2021-09-23 08:25:09'),(5764,'direction','direction',1,'2021-09-23 08:25:09','2021-09-23 08:25:09'),(5766,'sort','sort',1,'2021-09-23 08:25:09','2021-09-23 08:25:09'),(5768,'is default','is default',1,'2021-09-23 08:25:09','2021-09-23 08:25:09'),(5770,'add new language','add new Language',1,'2021-09-23 08:25:10','2021-09-23 08:25:10'),(5772,'code is required','Code is required',1,'2021-09-23 08:25:10','2021-09-23 08:25:10'),(5774,'maximum characters is 10','maximum characters is 10',1,'2021-09-23 08:25:10','2021-09-23 08:25:10'),(5776,'ltr','ltr',1,'2021-09-23 08:25:10','2021-09-23 08:25:10'),(5778,'rtl','rtl',1,'2021-09-23 08:25:10','2021-09-23 08:25:10'),(5780,'select image','Select Image',1,'2021-09-23 08:25:10','2021-09-23 08:25:10'),(5782,'image is required','image is required',1,'2021-09-23 08:25:10','2021-09-23 08:25:10'),(6077,'they will be automatically added into your account','they will be automatically added into your account',1,'2021-09-23 08:42:05','2021-09-23 08:42:05'),(17289,'as a member of our website, you can quickly gain popularity on social media. you can buy likes and followers on your social media account in the fastest way. add balance and start processing with the auto online payment and money transfer methods, instantly','بصفتك عضوًا في موقعنا ، يمكنك أن تكتسب شعبية بسرعة على وسائل التواصل الاجتماعي. يمكنك شراء الإعجابات والمتابعين على حساب الوسائط الاجتماعية الخاص بك بأسرع طريقة. أضف رصيدًا وابدأ في المعالجة باستخدام طرق الدفع التلقائي عبر الإنترنت وتحويل الأموال على الفور',2,NULL,NULL),(6373,'usd','USD',1,'2021-09-23 11:33:43','2021-09-23 11:33:43'),(6375,'total earnings','Total Earnings',1,'2021-09-23 11:33:43','2021-09-23 11:33:43'),(6377,'total users','Total Users',1,'2021-09-23 11:33:43','2021-09-23 11:33:43'),(6379,'total orders','Total Orders',1,'2021-09-23 11:33:43','2021-09-23 11:33:43'),(6381,'total services','Total Services',1,'2021-09-23 11:33:43','2021-09-23 11:33:43'),(6383,'processing','Processing',1,'2021-09-23 11:33:43','2021-09-23 11:33:43'),(6385,'partial','Partial',1,'2021-09-23 11:33:43','2021-09-23 11:33:43'),(17288,'worldwide top quality social media panel','لوحة إدارة عالية الجودة مع مميزات متعددة',2,NULL,NULL),(6387,'completed','Completed',1,'2021-09-23 11:33:43','2021-09-23 11:33:43'),(6389,'cancelled','Cancelled',1,'2021-09-23 11:33:43','2021-09-23 11:33:43'),(6391,'refunded','Refunded',1,'2021-09-23 11:33:43','2021-09-23 11:33:43'),(6393,'keys','keys',1,'2021-09-23 11:37:17','2021-09-23 11:37:17'),(6395,'values','Values',1,'2021-09-23 11:37:33','2021-09-23 11:37:33'),(6703,'your balance','Your Balance',1,'2021-09-23 11:52:10','2021-09-23 11:52:10'),(6705,'total spent','Total Spent',1,'2021-09-23 12:04:16','2021-09-23 12:04:16'),(6707,'notifications','Notifications',1,'2021-10-30 12:17:32','2021-10-30 12:17:32'),(6709,'note','Note',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(6711,'displays the user\'s username','displays the user\'s username',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(17287,'is default','إفتراضي',2,NULL,NULL),(6713,'displays the user\'s firstname','displays the user\'s firstname',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(17285,'add new ticket','إضافة تذكرة جديدة',2,NULL,NULL),(6715,'displays the user\'s lastname','displays the user\'s lastname',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(6717,'displays user\'s email','displays user\'s email',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(6719,'displays the website name','displays the website name',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(6721,'displays the activation link','displays the activation link',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(6723,'displays the transaction currency','displays the transaction currency',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(17274,'you can deposit funds with','يمكنك إيداع الأموال ب',2,NULL,NULL),(17275,'amount in usd','المبلغ بالدولار الأمريكي',2,NULL,NULL),(6725,'displays the transaction payment method name','displays the transaction payment method name',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(6727,'displays the transaction number','displays the transaction number',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(6729,'displays user balance','displays user balance',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(6731,'displays the order currency','displays the order currency',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(17286,'user options','خيارات المستخدم',2,NULL,NULL),(6733,'displays service name','displays service name',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(6735,'displays service category','displays service category',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(6737,'displays order service_category','displays order service_category',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(17284,'maximum characters is 100','الحد الأقصى لعدد الأحرف هو 100',2,NULL,NULL),(17283,'select type','اختر صنف',2,NULL,NULL),(6739,'displays order status','displays order status',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(17279,'start date','تاريخ البدء',2,NULL,NULL),(6741,'displays order id','displays order ID',1,'2021-10-30 14:40:50','2021-10-30 14:40:50'),(6743,'password recovery','Password Recovery',1,'2021-10-30 14:53:35','2021-10-30 14:53:35'),(6745,'displays the recoverypassword link','displays the recoverypassword link',1,'2021-10-30 14:53:35','2021-10-30 14:53:35'),(6747,'password reminder','Password Reminder',1,'2021-10-30 15:51:14','2021-10-30 15:51:14'),(6749,'username or email','Username or Email',1,'2021-10-30 15:54:42','2021-10-30 15:54:42'),(6751,'reset password','Reset Password',1,'2021-10-30 15:54:42','2021-10-30 15:54:42'),(6753,'we can\'t find a user with that email address.','We can\'t find a user with that email address.',1,'2021-10-30 19:51:08','2021-10-30 19:51:08'),(17273,'amount must be greater than minimum amount','يجب أن يكون المبلغ أكبر من الحد الأدنى',2,NULL,NULL),(17278,'order','الطلبات',2,NULL,NULL),(6755,'verify your email address','Verify Your Email Address',1,'2021-10-30 20:01:05','2021-10-30 20:01:05'),(6757,'before proceeding, please check your email for a verification link.','Before proceeding, please check your email for a verification link.',1,'2021-10-30 20:01:05','2021-10-30 20:01:05'),(6759,'if you did not receive the email','If you did not receive the email',1,'2021-10-30 20:01:05','2021-10-30 20:01:05'),(17277,'maximum characters is 600','الحد الأقصى لعدد الأحرف هو 600 حرف',2,NULL,NULL),(6761,'resend an other','resend an other',1,'2021-10-30 20:01:05','2021-10-30 20:01:05'),(6763,'we have emailed your password reset link!','We have emailed your password reset link!',1,'2021-10-30 20:02:12','2021-10-30 20:02:12'),(17276,'attachment file','ملف مرفق',2,NULL,NULL),(17266,'disabled service','خدمة غير نشطة',2,NULL,NULL),(17267,'start','بداية',2,NULL,NULL),(17268,'new service','خدمة جديدة',2,NULL,NULL),(17269,'total amount to pay','المبلغ الإجمالي للدفع',2,NULL,NULL),(17270,'add new question','إضافة سؤال جديد',2,NULL,NULL),(17271,'i understand that funds will not be asked for refund','أتفهم أنه لن يتم طلب استرداد الأموال',2,NULL,NULL),(17272,'amount must be less than maximum amount','يجب أن يكون المبلغ أقل من الحد الأقصى',2,NULL,NULL),(17264,'announcement','إعلان',2,NULL,NULL),(17265,'maximum characters is 250','الحد الأقصى لعدد الأحرف هو 250',2,NULL,NULL),(17263,'start date is required','تاريخ البدء مطلوب',2,NULL,NULL),(17259,'subject is required','الموضوع مطلوب',2,NULL,NULL),(17260,'ticket updated successfully','تم تحديث التذكرة بنجاح',2,NULL,NULL),(17262,'end','نهاية',2,NULL,NULL),(17261,'end date is required','تاريخ الانتهاء مطلوب',2,NULL,NULL),(17258,'description is required','الوصف مطلوب',2,NULL,NULL),(17257,'view notification','عرض الإشعار',2,NULL,NULL),(17256,'updated service','تحديث خدمة',2,NULL,NULL),(17255,'service updated successfully','تم تحديث الخدمة بنجاح',2,NULL,NULL),(17254,'you don\'t have an account yet?','ليس لديك حساب ؟',2,NULL,NULL),(17253,'appearance','المظهر الخارجي',2,NULL,NULL),(17252,'user notifications','إشعارات المستخدم',2,NULL,NULL),(17249,'are you sure you want to delete this language?','هل أنت متأكد أنك تريد حذف هذه اللغة؟',2,NULL,NULL),(17250,'faq updated successfully','تم تحديث السؤال بنجاح',2,NULL,NULL),(17251,'content','المحتوى',2,NULL,NULL),(17248,'transaction updated successfully','تم تحديث المعاملة بنجاح',2,NULL,NULL),(17246,'api provider updated successfully','تم تحديث مزود api بنجاح',2,NULL,NULL),(17242,'new service added successfully','تمت إضافة خدمة جديدة بنجاح',2,NULL,NULL),(17247,'payment method updated successfully','تم تحديث طريقة الدفع بنجاح',2,NULL,NULL),(7101,'displays order service category','displays order service category',1,'2021-10-30 20:15:21','2021-10-30 20:15:21'),(7103,'displays the recovery password link','displays the recovery password link',1,'2021-10-30 20:15:21','2021-10-30 20:15:21'),(17244,'new user notification added successfully','تم إضافة إشعار المستخدم بنجاح',2,NULL,NULL),(17245,'new payment method added successfully','تم إضافة طريقة الدفع جديدة بنجاح',2,NULL,NULL),(17243,'you don\'t have enough balance','ليس لديك رصيد كافي',2,NULL,NULL),(17241,'order updated successfully','تم تحديث الطلب بنجاح',2,NULL,NULL),(17240,'new order added successfully','تم إضافة طلب جديد بنجاح',2,NULL,NULL),(17237,'announcement updated successfully','تم تحديث الإعلان بنجاح',2,NULL,NULL),(17238,'admin updated successfully','تم تحديث المشرف بنجاح',2,NULL,NULL),(17236,'category updated successfully','تم تحديث الفئة بنجاح',2,NULL,NULL),(7443,'worldwide top quality social media panel','Worldwide Top Quality Social Media Panel',1,'2021-11-03 14:01:52','2021-11-03 14:01:52'),(17239,'new category added successfully','تم إضافة فئة جديدة بنجاح',2,NULL,NULL),(17235,'we have emailed your password reset link!','لقد أرسلنا عبر البريد الإلكتروني رابط إعادة تعيين كلمة المرور الخاصة بك!',2,NULL,NULL),(7445,'as a member of our website, you can quickly gain popularity on social media. you can buy likes and followers on your social media account in the fastest way. add balance and start processing with the auto online payment and money transfer methods, instantly','As a member of our website, you can quickly gain popularity on social media. You can buy likes and followers on your social media account in the fastest way. Add balance and start processing with the Auto Online Payment and Money Transfer methods, instantly',1,'2021-11-03 14:04:49','2021-11-03 14:04:49'),(17231,'resend an other','إعادة إرسال',2,NULL,NULL),(7447,'see all services','See All Services',1,'2021-11-03 14:10:50','2021-11-03 14:10:50'),(17234,'before proceeding, please check your email for a verification link.','قبل المتابعة ، يرجى التحقق من بريدك الإلكتروني للحصول على رابط التحقق.',2,NULL,NULL),(7449,'affordable price and fast delivery guarantee!','Affordable Price and Fast Delivery Guarantee!',1,'2021-11-03 14:10:50','2021-11-03 14:10:50'),(7451,'we provide the oldest and most reliable automated social media services. system is a fully automated and has a structure where you can get followers, likes, views and more without sharing your password.','We provide the oldest and most reliable automated social media services. System is a fully automated and has a structure where you can get followers, likes, views and more without sharing your password.',1,'2021-11-03 14:10:50','2021-11-03 14:10:50'),(17232,'if you did not receive the email','إذا لم تستلم البريد الإلكتروني',2,NULL,NULL),(17233,'verify your email address','تحقق من عنوان بريدك الإلكتروني',2,NULL,NULL),(17229,'website title','عنوان الموقع',2,NULL,NULL),(7453,'features','Features',1,'2021-11-03 14:10:50','2021-11-03 14:10:50'),(7455,'comes with all the essential features and elements you need','Comes with all the essential features and elements you need',1,'2021-11-03 14:10:50','2021-11-03 14:10:50'),(7457,'here are the key features of our services you must know.','here are the key features of our services you must know.',1,'2021-11-03 14:10:50','2021-11-03 14:10:50'),(7459,'superior quality','Superior quality',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7461,'we provide our panel users with superb smm services.','We provide our panel users with superb SMM services.',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(17230,'we can\'t find a user with that email address.','لا يمكننا العثور على مستخدم بعنوان البريد الإلكتروني هذا.',2,NULL,NULL),(7463,'friendly dashboard','Friendly Dashboard',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7465,'we have the friendliest dashbord in the smm world! updated regularly.','We have the friendliest dashbord in the SMM World! Updated regularly.',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(17228,'username or email','اسم المستخدم أو البريد الالكتروني',2,NULL,NULL),(17225,'password reminder','تذكير كلمة السر',2,NULL,NULL),(17226,'password recovery','استعادة كلمة السر',2,NULL,NULL),(7467,'various payment methods','Various payment methods',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(17227,'reset password','إعادة تعيين كلمة المرور',2,NULL,NULL),(7469,'pick a payment option you prefer to add funds.','Pick a payment option you prefer to add funds.',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(17224,'note','ملحوظة',2,NULL,NULL),(7471,'shockingly cheap','Shockingly cheap',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7473,'cheap smm services to meet the needs of our customers.','Cheap SMM services to meet the needs of our customers.',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(17221,'displays the user\'s lastname','يعرض الاسم الأخير للمستخدم',2,NULL,NULL),(7475,'prompt delivery','Prompt delivery',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7477,'you can rest assured that your orders will be delivered fast.','You can rest assured that your orders will be delivered fast.',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7479,'24/7 customer support','24/7 Customer Support',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7481,'with us, you get 24/7 customer support that can help you.','With us, you get 24/7 customer support that can help you.',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7483,'what do they say?','What do they say?',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7485,'everyday we work hard to make life of our clients better and happier','Everyday we work hard to make life of our clients better and happier',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(17223,'displays the user\'s username','يعرض اسم المستخدم الخاص بالمستخدم',2,NULL,NULL),(17220,'displays user\'s email','يعرض البريد الإلكتروني للمستخدم',2,NULL,NULL),(7487,'smm booster is the best smm reseller panel that understands the customer’s needs and provides services.','smm booster is the best SMM reseller panel that understands the customer’s needs and provides services.',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(17219,'displays the website name','يعرض اسم الموقع',2,NULL,NULL),(7489,'catherine soft','Catherine Soft',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7491,'youtuber','Youtuber',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7493,'order lots of instagram followers and got my followers as promised in time! happy to purchased from smm booster.','Order lots of Instagram Followers and got my followers as promised in time! Happy to Purchased from smm booster.',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(17222,'displays the user\'s firstname','يعرض الاسم الأول للمستخدم',2,NULL,NULL),(7495,'kelvin wood','Kelvin Wood',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7497,'instagram model','Instagram Model',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(17216,'displays the transaction payment method name','يعرض اسم طريقة دفع المعاملة',2,NULL,NULL),(7499,'if you are looking for the most reasonable smm panel then smm booster is the best panel.','If you are looking for the most reasonable smm panel then smm booster is the best panel.',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(17218,'displays the activation link','يعرض رابط التفعيل',2,NULL,NULL),(17217,'displays the transaction currency','يعرض عملة الصفقة',2,NULL,NULL),(17215,'displays user balance','يعرض رصيد المستخدم',2,NULL,NULL),(7501,'david martin','David Martin',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7503,'blogger','Blogger',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7505,'talk to us','Talk To Us',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7507,'technical support for all our services <br> 24/7 to help you','Technical support for all our services <br> 24/7 to help you',1,'2021-11-03 15:31:41','2021-11-03 15:31:41'),(7509,'we provide the cheapest smm reseller panel services amongst our competitors. if you’re looking for a super-easy way to offer additional marketing services to your existing and new clients, look no further! our site offers that and more !','We provide the cheapest SMM Reseller Panel services amongst our competitors. If you’re looking for a super-easy way to offer additional marketing services to your existing and new clients, look no further! our site offers that and more !',1,'2021-11-03 15:31:42','2021-11-03 15:31:42'),(17214,'displays the transaction number','يعرض رقم المعاملة',2,NULL,NULL),(17213,'displays service name','يعرض اسم الخدمة',2,NULL,NULL),(7511,'full name','Full Name',1,'2021-11-03 15:31:42','2021-11-03 15:31:42'),(7513,'e-mail address','E-Mail Address',1,'2021-11-03 15:31:42','2021-11-03 15:31:42'),(7515,'your message','Your Message',1,'2021-11-03 15:31:42','2021-11-03 15:31:42'),(17212,'displays the order currency','يعرض عملة الأمر',2,NULL,NULL),(7517,'send message','Send Message',1,'2021-11-03 15:31:42','2021-11-03 15:31:42'),(17211,'displays service category','يعرض فئة الخدمة',2,NULL,NULL),(7519,'home','Home',1,'2021-11-03 15:36:13','2021-11-03 15:36:13'),(7521,'testimonials','Testimonials',1,'2021-11-03 15:36:13','2021-11-03 15:36:13'),(7523,'contact us','Contact Us',1,'2021-11-03 15:36:13','2021-11-03 15:36:13'),(7525,'login','login',1,'2021-11-03 15:36:13','2021-11-03 15:36:13'),(7527,'© copyright by','© Copyright by',1,'2021-11-03 15:36:14','2021-11-03 15:36:14'),(17205,'your balance','رصيدك',2,NULL,NULL),(17206,'select user','اختر المستخدم',2,NULL,NULL),(17207,'total spent','إجمالي المصروفات',2,NULL,NULL),(17210,'displays order status','يعرض حالة الطلب',2,NULL,NULL),(17209,'notifications','إشعارات',2,NULL,NULL),(17208,'displays order id','يعرض معرف الطلب',2,NULL,NULL),(17203,'send notification to','إرسال الإشعار إلى',2,NULL,NULL),(17204,'question','السؤال',2,NULL,NULL),(17202,'they will be automatically added into your account','ستتم إضافتهم تلقائيًا إلى حسابك',2,NULL,NULL),(17201,'payment notification','إشعار الدفع',2,NULL,NULL),(17200,'end date','تاريخ الانتهاء',2,NULL,NULL),(17199,'welcome email','الرسالة الترحيبية',2,NULL,NULL),(17192,'order status','حالة الطلب',2,NULL,NULL),(17193,'site base color','لون قاعدة الموقع',2,NULL,NULL),(17194,'cookie policy','سياسة ملفات الارتباط',2,NULL,NULL),(17195,'user updated successfully','تم تحديث المستخدم بنجاح',2,NULL,NULL),(17198,'new user added successfully','تمت إضافة مستخدم جديد بنجاح',2,NULL,NULL),(17197,'user notification updated successfully','تم تحديث إشعار المستخدم بنجاح',2,NULL,NULL),(17196,'website description','وصف الموقع',2,NULL,NULL),(17191,'terms & policy','الشروط وسياسة الإستخدام',2,NULL,NULL),(17189,'website keywords','كلمات مفتاحية',2,NULL,NULL),(17182,'default service settings','الإعدادات الافتراضية للخدمة',2,NULL,NULL),(17190,'social title','العنوان الاجتماعي',2,NULL,NULL),(8303,'we provide the cheapest smm panel services amongst our competitors. if you’re looking for a super-easy way to offer additional marketing services to your existing and new clients, look no further! our site offers that and more !','We provide the cheapest SMM Panel services amongst our competitors. If you’re looking for a super-easy way to offer additional marketing services to your existing and new clients, look no further! our site offers that and more !',1,'2021-11-03 16:09:18','2021-11-03 16:09:18'),(17188,'logo','الشعار',2,NULL,NULL),(17186,'website logo','شعار الموقع',2,NULL,NULL),(17187,'scripts integrations','إضافة scripts',2,NULL,NULL),(17183,'social description','الوصف الاجتماعي',2,NULL,NULL),(17184,'select','تحديد',2,NULL,NULL),(17185,'site tertiary color','اللون الثلاثي للموقع',2,NULL,NULL),(17180,'site secondary color','اللون الثانوي للموقع',2,NULL,NULL),(17181,'default min order','الحد الأدنى الافتراضي للطلب',2,NULL,NULL),(17177,'production','إنتاج (production)',2,NULL,NULL),(17178,'shortcut icon','رمز الاختصار',2,NULL,NULL),(17179,'are you sure you want to delete this faq?','هل أنت متأكد أنك تريد حذف هذا السؤال؟',2,NULL,NULL),(17175,'website icon','رمز الموقع',2,NULL,NULL),(17176,'environment','البيئة',2,NULL,NULL),(17174,'default max order','الحد الأقصى الافتراضي للطلب',2,NULL,NULL),(17173,'user is required','المستخدم مطلوب',2,NULL,NULL),(17172,'default price per 1000','السعر الافتراضي لكل 1000',2,NULL,NULL),(17171,'are you sure you want to delete this announcement?','هل انت متاكد انك تريد حذف هذا الاعلان؟',2,NULL,NULL),(17170,'secret key','المفتاح السري (secret key)',2,NULL,NULL),(17169,'add new admin','إضافة مدير جديد',2,NULL,NULL),(17164,'public key','المفتاح العمومي (public key)',2,NULL,NULL),(17168,'url is required','الرابط مطلوب',2,NULL,NULL),(17162,'transaction fee','رسوم العملية',2,NULL,NULL),(17163,'new faq added successfully','تم إضافة سؤال جديد بنجاح',2,NULL,NULL),(17167,'settings saved successfully','تم حفظ الإعدادات بنجاح',2,NULL,NULL),(17165,'client id','معرف العميل (Client ID)',2,NULL,NULL),(17166,'maximal payment','الحد الأقصى للدفع',2,NULL,NULL),(17161,'minimal payment','الحد الأدنى للدفع',2,NULL,NULL),(17159,'link not valid','رابط غير صالح',2,NULL,NULL),(17160,'fee %','الرسوم %',2,NULL,NULL),(17158,'are you sure you want to delete this transaction?','هل أنت متأكد أنك تريد حذف هذه العملية؟',2,NULL,NULL),(17151,'link is required','الرابط مطلوب',2,NULL,NULL),(17152,'actions','العمليات',2,NULL,NULL),(17153,'are you sure you want to delete this user?','هل أنت متأكد أنك تريد حذف هذا المستخدم؟',2,NULL,NULL),(17157,'sandbox','(تجريبي) sandbox',2,NULL,NULL),(17156,'are you sure you want to delete this api?','هل أنت متأكد أنك تريد حذف هذا API؟',2,NULL,NULL),(17154,'link','الرابط',2,NULL,NULL),(17155,'yes','نعم',2,NULL,NULL),(17150,'description','وصف',2,NULL,NULL),(17149,'are you sure you want to delete this admin?','هل أنت متأكد أنك تريد حذف هذا المدير ؟',2,NULL,NULL),(8291,'we have the friendliest dashboard in the smm world! updated regularly.','We have the friendliest dashboard in the SMM World! Updated regularly.',1,'2021-11-03 16:06:42','2021-11-03 16:06:42'),(17148,'no','لا',2,NULL,NULL),(17147,'category','فئة',2,NULL,NULL),(8293,' is the best smm reseller panel that understands the customer’s needs and provides services.',' is the best SMM reseller panel that understands the customer’s needs and provides services.',1,'2021-11-03 16:06:43','2021-11-03 16:06:43'),(8301,' is the best smm panel that understands the customer’s needs and provides services.',' is the best SMM panel that understands the customer’s needs and provides services.',1,'2021-11-03 16:09:17','2021-11-03 16:09:17'),(8295,'order lots of instagram followers and got my followers as promised in time! happy to purchased from.','Order lots of Instagram Followers and got my followers as promised in time! Happy to Purchased from.',1,'2021-11-03 16:06:43','2021-11-03 16:06:43'),(8297,'if you are looking for the most reasonable smm panel then','If you are looking for the most reasonable smm panel then',1,'2021-11-03 16:06:43','2021-11-03 16:06:43'),(10219,'is the best smm panel that understands the customer’s needs and provides services.','is the best SMM panel that understands the customer’s needs and provides services.',1,'2021-11-03 16:46:26','2021-11-03 16:46:26'),(8299,'is the best panel.','is the best panel.',1,'2021-11-03 16:06:43','2021-11-03 16:06:43'),(10606,'reply support ticket','Reply Support Ticket',1,'2021-11-04 13:27:00','2021-11-04 13:27:00'),(10602,'add new announcement','add new announcement',1,'2021-11-03 20:21:51','2021-11-03 20:21:51'),(17146,'these credentials do not match our records.','إسم المستخدم أو كلمة المرور غير صحيحة',2,NULL,NULL),(10604,'f.a.q','F.A.Q',1,'2021-11-04 06:48:45','2021-11-04 06:48:45'),(10608,'displays the ticket id','displays the ticket id',1,'2021-11-04 13:27:02','2021-11-04 13:27:02'),(17144,'order details','تفاصيل الطلب',2,NULL,NULL),(10610,'displays the ticket subject','displays the ticket subject',1,'2021-11-04 13:27:02','2021-11-04 13:27:02'),(10612,'displays the ticket link','displays the ticket link',1,'2021-11-04 13:27:02','2021-11-04 13:27:02'),(10614,'payments','Payments',1,'2021-11-04 13:27:48','2021-11-04 13:27:48'),(10616,'support ticket','Support Ticket',1,'2021-11-04 13:27:48','2021-11-04 13:27:48'),(17142,'order resume','ملخص الطلب',2,NULL,NULL),(10618,'price','price',1,'2021-11-04 16:08:40','2021-11-04 16:08:40'),(17140,'select service','حدد الخدمة',2,NULL,NULL),(10620,'total price','total price',1,'2021-11-04 16:15:06','2021-11-04 16:15:06'),(10622,'user profile','User Profile',1,'2021-11-05 15:42:37','2021-11-05 15:42:37'),(17141,'created at','أنشئ في',2,NULL,NULL),(10624,'your account’s info. your username will be publicly visible.','Your account’s info. Your username will be publicly visible.',1,'2021-11-05 15:42:37','2021-11-05 15:42:37'),(17145,'are you sure you want to delete this payment method?','هل أنت متأكد أنك تريد حذف طريقة الدفع هذه؟',2,NULL,NULL),(10626,'email address','Email Address',1,'2021-11-05 15:42:37','2021-11-05 15:42:37'),(17143,'add new service','إضافة خدمة جديدة',2,NULL,NULL),(10628,'your avatar','Your Avatar',1,'2021-11-05 15:42:37','2021-11-05 15:42:37'),(10630,'choose a new avatar','Choose a new avatar',1,'2021-11-05 15:42:38','2021-11-05 15:42:38'),(17137,'add new user','إضافة مستخدم جديد',2,NULL,NULL),(10632,'change password','Change Password',1,'2021-11-05 15:42:38','2021-11-05 15:42:38'),(10634,'changing your sign in password is an easy way to keep your account secure.','Changing your sign in password is an easy way to keep your account secure.',1,'2021-11-05 15:42:38','2021-11-05 15:42:38'),(17139,'normal','طبيعي',2,NULL,NULL),(10636,'current password','Current Password',1,'2021-11-05 15:42:38','2021-11-05 15:42:38'),(10638,'new password','New Password',1,'2021-11-05 15:42:38','2021-11-05 15:42:38'),(10640,'confirm new password','Confirm New Password',1,'2021-11-05 15:42:38','2021-11-05 15:42:38'),(17138,'type','النوع',2,NULL,NULL),(10642,'update profile','Update Profile',1,'2021-11-05 15:42:38','2021-11-05 15:42:38'),(10644,',new password is required',',new password is required',1,'2021-11-05 16:02:46','2021-11-05 16:02:46'),(10646,'new password should have minimum 8 characters','new password should have minimum 8 characters',1,'2021-11-05 16:02:46','2021-11-05 16:02:46'),(17136,'quantity is required','الكمية مطلوبة',2,NULL,NULL),(17135,'quantity','الكمية',2,NULL,NULL),(10648,'comfirm password is required','comfirm password is required',1,'2021-11-05 16:02:47','2021-11-05 16:02:47'),(17134,'email settings','البريد الإلكتروني',2,NULL,NULL),(10650,'comfirm password should have minimum 8 characters','comfirm password should have minimum 8 characters',1,'2021-11-05 16:02:47','2021-11-05 16:02:47'),(17133,'select category','اختر الفئة',2,NULL,NULL),(17131,'active','نشيط',2,NULL,NULL),(10652,'new password is required','new password is required',1,'2021-11-05 16:18:02','2021-11-05 16:18:02'),(10654,'the password new must be at least 8 characters.','The password new must be at least 8 characters.',1,'2021-11-05 16:31:04','2021-11-05 16:31:04'),(17132,'terms & conditions','شروط الإستخدام',2,NULL,NULL),(10656,'your password is incorrect','Your password is incorrect',1,'2021-11-05 16:45:04','2021-11-05 16:45:04'),(17130,'add funds','إضافة الأموال',2,NULL,NULL),(10658,'your profil updated successfully','your profil updated successfully',1,'2021-11-05 16:46:57','2021-11-05 16:46:57'),(10660,'our services vary from getting likes and followers, to comments and views','Our services vary from getting likes and followers, to comments and views',1,'2021-11-13 10:05:45','2021-11-13 10:05:45'),(17129,'firstname','الإسم',2,NULL,NULL),(17123,'email','البريد الإلكتروني',2,NULL,NULL),(17128,'delete','حذف',2,NULL,NULL),(10662,'which can help you to understand your account better and how you can become more effective.','which can help you to understand your account better and how you can become more effective.',1,'2021-11-13 10:05:46','2021-11-13 10:05:46'),(17126,'api','Api',2,NULL,NULL),(17127,'service name','اسم الخدمة',2,NULL,NULL),(10664,'our services can help you to understand your account better and how you can become more effective.','Our services can help you to understand your account better and how you can become more effective.',1,'2021-11-13 10:08:09','2021-11-13 10:08:09'),(17119,'the password confirmation does not match.','تأكيد كلمة المرور غير متطابق.',2,NULL,NULL),(17120,'name','الإسم',2,NULL,NULL),(10666,'our services can help you to understand your account better and your account will become more effective.','Our services can help you to understand your account better and your account will become more effective.',1,'2021-11-13 10:09:43','2021-11-13 10:09:43'),(17124,'name is required','مطلوب اسم',2,NULL,NULL),(17125,'submit','حفظ',2,NULL,NULL),(17122,'seo manager','إدارة seo',2,NULL,NULL),(10668,'facebook','facebook',1,'2021-11-13 10:14:55','2021-11-13 10:14:55'),(10670,'facebook page likes - facebook page followers - facebook profile followers - facebook post likes - facebook group members','Facebook Page Likes - Facebook Page Followers - Facebook Profile Followers - Facebook Post Likes - Facebook Group Members',1,'2021-11-13 10:14:55','2021-11-13 10:14:55'),(17121,'i agree','موافق',2,NULL,NULL),(17118,'transactions log','سجل المعاملات',2,NULL,NULL),(10672,'twitch followers instant delivery','Twitch Followers Instant Delivery',1,'2021-11-13 10:26:40','2021-11-13 10:26:40'),(10674,'twitch followers - twitter likes - twitter views - twitter retweets - twitter comments','Twitch Followers - Twitter Likes - Twitter Views - Twitter Retweets - Twitter Comments',1,'2021-11-13 10:29:27','2021-11-13 10:29:27'),(17117,'maximum characters is 150','الحد الأقصى لعدد الأحرف هو 150 حرفًا',2,NULL,NULL),(17116,'the lastname field is required.','مطلوب حقل اسم العائلة.',2,NULL,NULL),(17115,'languages','اللغات',2,NULL,NULL),(17112,'apparence','الواجهة',2,NULL,NULL),(17113,'terms and policy','شروط وسياسة الإستخدام',2,NULL,NULL),(17114,'users managment','إدارة المستخدمين',2,NULL,NULL),(17111,'api providers','المزودين API',2,NULL,NULL),(17110,'forgot password?','نسيت كلمة المرور؟',2,NULL,NULL),(17109,'faqs','أسئلة وأجوبة',2,NULL,NULL),(17108,'orders','الطلبات',2,NULL,NULL),(17107,'announcements','إعلانات',2,NULL,NULL),(17106,'tickets','تذاكر',2,NULL,NULL),(17105,'categories','الأصناف',2,NULL,NULL),(17104,'already have an account ?','هل لديك حساب ؟',2,NULL,NULL),(17103,'sign up','تسجيل حساب جديد',2,NULL,NULL),(17102,'admins','المدراء',2,NULL,NULL),(17101,'api provider','مزود API',2,NULL,NULL),(17100,'email or username','البريد الإلكتروني أو إسم المستخدم',2,NULL,NULL),(17098,'service settings','إعدادات الخدمات',2,NULL,NULL),(17099,'services','الخدمات',2,NULL,NULL),(17097,'the email field is required.','حقل البريد الإلكتروني مطلوب.',2,NULL,NULL),(17095,'the username field is required.','حقل اسم المستخدم مطلوب.',2,NULL,NULL),(17096,'api provider is required','مطلوب موفر Api',2,NULL,NULL),(17086,'log out','خروج',2,NULL,NULL),(17087,'status','الحالة',2,NULL,NULL),(17088,'min','الحد الأدني',2,NULL,NULL),(17089,'create new account','حساب جديد',2,NULL,NULL),(17090,'username','إسم المستخدم',2,NULL,NULL),(17091,'payments methods','طرق الدفع',2,NULL,NULL),(17092,'regular users','المستخدمبن',2,NULL,NULL),(17093,'transactions','العمليات',2,NULL,NULL),(17094,'dashboad','الرئيسية',2,NULL,NULL),(17085,'the firstname field is required.','حقل الاسم الأول مطلوب.',2,NULL,NULL),(17084,'general settings','الإعدادات العامة',2,NULL,NULL),(17083,'rate/original rate per 1000','السعر / السعر الأصلي لكل 1000',2,NULL,NULL),(17081,'lastname','الإسم العائلي',2,NULL,NULL),(17082,'search','بحث',2,NULL,NULL),(17080,'min/max order','الحد الأدنى / الحد الأقصى للطلب',2,NULL,NULL),(17079,'rate per 1000','السعر لكل 1000',2,NULL,NULL),(17077,'deactive','معطل',2,NULL,NULL),(17078,'notes','ملحوظات',2,NULL,NULL),(17063,'maximum characters is 10','الحد الأقصى لعدد الأحرف هو 10',2,NULL,NULL),(17064,'sort','الترتيب',2,NULL,NULL),(17065,'place order','إرسال الطلب',2,NULL,NULL),(17066,'the terms must be accepted.','يجب قبول الشروط.',2,NULL,NULL),(17067,'system settings','الإعدادات',2,NULL,NULL),(17068,'send','إرسال',2,NULL,NULL),(17069,'ticket','تذكرة',2,NULL,NULL),(17070,'quantity must be less than or equal to maximum amount','يجب أن تكون الكمية أقل من أو تساوي الحد الأقصى',2,NULL,NULL),(17071,'add new category','إضافة صنف جديد',2,NULL,NULL),(17072,'confirmation is required','مطلوب التأكيد',2,NULL,NULL),(17073,'password','كلمة المرور',2,NULL,NULL),(17074,'price percentage increase','زيادة نسبة السعر',2,NULL,NULL),(17075,'service','الخدمة',2,NULL,NULL),(17076,'sorting','التصنيف',2,NULL,NULL),(17061,'user','المستخدم',2,NULL,NULL),(17062,'sorting number','رقم التصنيف',2,NULL,NULL),(17060,'sign in','تسجيل الدخول',2,NULL,NULL),(17057,'max amount','المبلغ الأقصى',2,NULL,NULL),(17058,'password confirm','تأكيد كلمة المرور',2,NULL,NULL),(17059,'category is required','اختيار القسم مطلوب',2,NULL,NULL),(17056,'the password field is required.','حقل كلمة المرور مطلوب.',2,NULL,NULL),(11093,'your account info. your username will be publicly visible.','Your account info. your username will be publicly visible.',1,'2021-11-13 16:05:25','2021-11-13 16:05:25'),(17055,'minimum amount','الحد الأدنى للمبلغ',2,NULL,NULL),(17050,'i have confirmed this order','لقد أكدت هذا الطلب',2,NULL,NULL),(17054,'change status','تغيير الحالة',2,NULL,NULL),(17052,'category name','إسم الصنف',2,NULL,NULL),(17053,'transaction id','رقم المعاملة',2,NULL,NULL),(17051,'rate','السعر',2,NULL,NULL),(17049,'quantity must be greater than or equal to minimum amount','يجب أن تكون الكمية أكبر من أو تساوي الحد الأدنى',2,NULL,NULL),(17042,'remember me','تذكرني',2,NULL,NULL),(17043,'subject','الموضوع',2,NULL,NULL),(17044,'max','الحد الأقصى',2,NULL,NULL),(17045,'maximum amount','الحد الأقصى للمبلغ',2,NULL,NULL),(17046,'pending','في الأنتظار',2,NULL,NULL),(17047,'fullname','الاسم الكامل',2,NULL,NULL),(17048,'are you sure you want to delete this service?','هل أنت متأكد أنك تريد حذف هذه الخدمة؟',2,NULL,NULL),(17041,'answered','تم الإجابة',2,NULL,NULL),(17039,'payment method','طريقة الدفع',2,NULL,NULL),(17040,'closed','مغلق',2,NULL,NULL),(17038,'your payment has been processed successfully','تمت عملية الدفع الخاص بك بنجاح',2,NULL,NULL),(17034,'amount','المبلغ',2,NULL,NULL),(11503,'our quality smm panel can help to increase facebook page likes, facebook followers, increase post likes, auto comments and boost live views.','Our Quality SMM Panel can help to increase Facebook Page Likes, Facebook Followers, Increase Post Likes, Auto comments and boost live views.',1,'2021-11-13 16:10:31','2021-11-13 16:10:31'),(17037,'email is required','البريد الالكتروني مطلوب',2,NULL,NULL),(17036,'profit','ربح',2,NULL,NULL),(17035,'confirm password','تأكيد كلمة المرور',2,NULL,NULL),(17030,'are you sure you want to delete this category?','هل أنت متأكد أنك تريد حذف هذه الفئة؟',2,NULL,NULL),(11505,'twitter','twitter',1,'2021-11-13 16:10:31','2021-11-13 16:10:31'),(11507,'we can help you to boost your tweets. we can help you to increase twitter followers as your requirement. also boost your twitter re-tweets, likes and favourites.','we can help you to boost your tweets. We can help you to increase Twitter followers as your requirement. Also boost your twitter re-tweets, likes and favourites.',1,'2021-11-13 16:10:31','2021-11-13 16:10:31'),(17033,'lastname is required','إسم العائلة مطلوب',2,NULL,NULL),(17032,'add new order','طلب جديد',2,NULL,NULL),(17031,'address','العنوان',2,NULL,NULL),(17029,'fee','الرسوم',2,NULL,NULL),(17028,'message','الرسالة',2,NULL,NULL),(11509,'instagram','instagram',1,'2021-11-13 16:10:31','2021-11-13 16:10:31'),(11511,'increase your instagram real followers, videos & picture likes, boost live viewers count and get custom comments to increase your post engagement.','Increase your Instagram real followers, Videos & Picture Likes, Boost live viewers count and get custom comments to increase your post engagement.',1,'2021-11-13 16:10:32','2021-11-13 16:10:32'),(11513,'youtube','youtube',1,'2021-11-13 16:10:32','2021-11-13 16:10:32'),(11515,'increase youtube views and conversations. it is the fastest way to increase your youtube views, and it can help to increase likes and boost your views with just one click.','Increase YouTube Views and conversations. It is the fastest way to increase your YouTube views, and it can help to increase likes and boost your views with just one click.',1,'2021-11-13 16:10:32','2021-11-13 16:10:32'),(17026,'username is required','اسم المستخدم مطلوب',2,NULL,NULL),(17025,'are you sure you want to delete this ticket?','هل أنت متأكد أنك تريد حذف هذه التذكرة؟',2,NULL,NULL),(17024,'confirm password is required','تأكيد كلمة المرور مطلوب',2,NULL,NULL),(11517,'tiktok','TikTok',1,'2021-11-13 16:10:32','2021-11-13 16:10:32'),(11519,'increase your tiktok real followers, videos & picture likes, boost your post engagements, it is the fastest way to increase your tiktok views and followers with just one click.','Increase your TikTok real followers, Videos & Picture Likes, Boost your post engagements, It is the fastest way to increase your TikTok views and followers with just one click.',1,'2021-11-13 16:10:32','2021-11-13 16:10:32'),(17027,'user profil','الملف التعريفي',2,NULL,NULL),(17020,'firstname is required','الإسم الأول مطلوب',2,NULL,NULL),(17021,'password is required','كلمة المرور مطلوبة',2,NULL,NULL),(17022,'funds','المبلغ المودع',2,NULL,NULL),(17023,'service is required','الخدمة مطلوبة',2,NULL,NULL),(17016,'address is required','العنوان مطلوب',2,NULL,NULL),(17017,'users','المستخدمون',2,NULL,NULL),(11521,'and more','and more',1,'2021-11-13 16:10:32','2021-11-13 16:10:32'),(11523,'we provide all kind of social media platforms including website traffic, soundcloud, spotify & many more. our support team and we make sure that we provide only the best services.','we provide all kind of social media platforms including website Traffic, Soundcloud, Spotify & many more. our Support team and we make sure that we provide only the best services.',1,'2021-11-13 16:10:32','2021-11-13 16:10:32'),(17019,'password didn\'t match','كلمة المرور غير متطابقة',2,NULL,NULL),(17018,'user login','تسجيل دخول المستخدمين',2,NULL,NULL),(17014,'balance','الرصيد',2,NULL,NULL),(17015,'password should have minimum 8 characters','يجب ألا تقل كلمة المرور عن 8 أحرف',2,NULL,NULL),(17013,'url not valid','الرابط غير صحيح',2,NULL,NULL),(17010,'edit','تعديل',2,NULL,NULL),(17011,'add new api','إضافة API جديد',2,NULL,NULL),(17012,'save','حفظ',2,NULL,NULL),(17008,'api key is required','مفتاح API مطلوب',2,NULL,NULL),(12363,'smm panels - what are they?','SMM panels - what are they?',1,'2021-11-13 16:27:46','2021-11-13 16:27:46'),(12365,'<p>an smm panel is an online shop that you can visit to puchase smm services at great prices.</p>','<p>An SMM panel is an online shop that you can visit to puchase SMM services at great prices.</p>',1,'2021-11-13 16:27:46','2021-11-13 16:27:46'),(12367,'what smm services can i find on this panel?','What SMM services can I find on this panel?',1,'2021-11-13 16:27:46','2021-11-13 16:27:46'),(17009,'phone is required','الهاتف مطلوب',2,NULL,NULL),(12369,'<p>we sell different types of smm services — likes, followers, views, etc.</p>','<p>We sell different types of SMM services — likes, followers, views, etc.</p>',1,'2021-11-13 16:27:46','2021-11-13 16:27:46'),(12371,'are smm services on your panel safe to buy?','Are SMM services on your panel safe to buy?',1,'2021-11-13 16:27:46','2021-11-13 16:27:46'),(12373,'<p>sure! your accounts won\'t get banned.</p>','<p>Sure! Your accounts won\'t get banned.</p>',1,'2021-11-13 16:27:46','2021-11-13 16:27:46'),(12375,'what is the start time & speed after placing an order?','What is the start time & speed after placing an order?',1,'2021-11-13 16:27:46','2021-11-13 16:27:46'),(16999,'services synchronized successfully','تم مزامنة الخدمات بنجاح',2,NULL,NULL),(17000,'item deleted successfully','تم حذف العنصر بنجاح',2,NULL,NULL),(17001,'currency symbol','رمز العملة',2,NULL,NULL),(17002,'phone','الهاتف',2,NULL,NULL),(17003,'modify payment method','تعديل طريقة الدفع',2,NULL,NULL),(17004,'connected','متصل',2,NULL,NULL),(12377,'<p>every service is different. whenever you select a service from the drop-down menu, you will see a description box with all the specifications for that particular service</p>','<p>Every service is different. Whenever you select a service from the drop-down menu, you will see a Description box with all the specifications for that particular service</p>',1,'2021-11-13 16:27:46','2021-11-13 16:27:46'),(17005,'website name 2','اسم الموقع 2',2,NULL,NULL),(17006,'api key','المفتاح (api key)',2,NULL,NULL),(17007,'are you sure you want to delete this order?','هل أنت متأكد أنك تريد حذف هذا الطلب؟',2,NULL,NULL),(16991,'new api provider added successfully','تم إضافة مزود API الجديد بنجاح',2,NULL,NULL),(16992,'url','الرابط',2,NULL,NULL),(12379,'how do i place an order?','How do I place an order?',1,'2021-11-13 16:27:46','2021-11-13 16:27:46'),(12381,'<p><strong>step 1</strong>: select the social media platform you want to grow.</p><p><strong>step 2</strong>: carefully read details for every service before placing an order.</p><p><strong>step 3</strong>: enter the username or page link.</p><p><strong>step 4</strong>: it will shows your order cost.</p><p>press submit and enjoy your order!</p>','<p><strong>Step 1</strong>: Select the Social Media platform you want to grow.</p><p><strong>Step 2</strong>: Carefully read details for every service before placing an order.</p><p><strong>Step 3</strong>: Enter the username or page link.</p><p><strong>Step 4</strong>: It will shows your order cost.</p><p>Press Submit and enjoy your order!</p>',1,'2021-11-13 16:27:46','2021-11-13 16:27:46'),(16994,'currency code','كود العملة',2,NULL,NULL),(16995,'api provider name','إسم مزود API',2,NULL,NULL),(16996,'website name 1','اسم الموقع 1',2,NULL,NULL),(16997,'payment methods','طرق الدفع',2,NULL,NULL),(16998,'email verification','تأكيد البريد الالكتروني',2,NULL,NULL),(16993,'new admin added successfully','تم إضافة المسؤول الجديد بنجاح',2,NULL,NULL),(16989,'user registration','تسجيل المستخدم',2,NULL,NULL),(16990,'maintenance mode','نمط الصيانة',2,NULL,NULL),(16988,'new announcement added successfully','تم إضافة إعلان جديد بنجاح',2,NULL,NULL),(14104,'our services can help you make your account more effective.','Our services can help you make your account more effective.',1,'2021-11-14 13:04:00','2021-11-14 13:04:00'),(13670,'smm booster','smm booster',1,'2021-11-14 12:44:36','2021-11-14 12:44:36'),(16975,'sign out','خروج',2,NULL,NULL),(16976,'add new language','أضف لغة جديدة',2,NULL,NULL),(13672,'<p>an smm panel is an online shop that you can visit to purchase smm services at great prices.</p>','<p>An SMM panel is an online shop that you can visit to purchase SMM services at great prices.</p>',1,'2021-11-14 12:49:52','2021-11-14 12:49:52'),(16987,'displays the recovery password link','يعرض رابط استعادة كلمة المرور',2,NULL,NULL),(16981,'select image','اختر صورة',2,NULL,NULL),(16982,'rtl','rtl',2,NULL,NULL),(16983,'ltr','ltr',2,NULL,NULL),(16984,'image','صورة',2,NULL,NULL),(16985,'direction','اتجاه',2,NULL,NULL),(16986,'displays order service category','يعرض فئة خدمة الطلب',2,NULL,NULL),(16979,'image is required','الصورة مطلوبة',2,NULL,NULL),(16980,'code','الكود',2,NULL,NULL),(16977,'profile','الملف الشخصي',2,NULL,NULL),(16978,'code is required','الكود مطلوب',2,NULL,NULL),(16971,'answer','الإجابة',2,NULL,NULL),(14536,'error','Error',1,'2021-11-22 08:45:30','2021-11-22 08:45:30'),(16972,'private key','المفتاح سري (private key)',2,NULL,NULL),(14538,'you just found an error page..','You just found an error page..',1,'2021-11-22 08:45:30','2021-11-22 08:45:30'),(16969,'refunded','إعادة مال',2,NULL,NULL),(14540,'we are sorry but the page you are looking for was not found..','We are sorry but the page you are looking for was not found..',1,'2021-11-22 08:45:30','2021-11-22 08:45:30'),(16973,'language updated successfully','تم تحديث اللغة بنجاح',2,NULL,NULL),(16974,'ticket saved successfully','تم حفظ التذكرة بنجاح',2,NULL,NULL),(14542,'facebook link','Facebook Link',1,'2021-11-22 11:19:10','2021-11-22 11:19:10'),(14544,'twitter link','Twitter Link',1,'2021-11-22 11:19:10','2021-11-22 11:19:10'),(14546,'linkedin link','Linkedin Link',1,'2021-11-22 11:19:10','2021-11-22 11:19:10'),(14548,'instagram link','Instagram Link',1,'2021-11-22 11:19:10','2021-11-22 11:19:10'),(14550,'appearance settings','Appearance Settings',1,'2021-11-22 11:21:04','2021-11-22 11:21:04'),(16970,'language saved successfully','تم حفظ اللغة بنجاح',2,NULL,NULL),(14552,'icon','Icon',1,'2021-11-22 11:21:04','2021-11-22 11:21:04'),(14554,'apple icon','Apple Icon',1,'2021-11-22 11:21:04','2021-11-22 11:21:04'),(16967,'cancelled','ملغية',2,NULL,NULL),(14556,'apple touch icon','Apple touch icon',1,'2021-11-22 11:21:04','2021-11-22 11:21:04'),(16968,'are you sure you want to delete this user notifications ?','هل أنت متأكد أنك تريد حذف هذا الإشعارات ؟',2,NULL,NULL),(14558,'terms & conditions','Terms & Conditions',1,'2021-11-29 13:32:47','2021-11-29 13:32:47'),(16966,'completed','مكتملة',2,NULL,NULL),(14560,'terms & privacy policy','Terms & Privacy Policy',1,'2021-11-29 14:04:59','2021-11-29 14:04:59'),(16965,'partial','إكمال جزئي',2,NULL,NULL),(14562,'your email has been sent successfully','your email has been sent successfully',1,'2021-11-29 21:13:13','2021-11-29 21:13:13'),(16964,'processing','في طور المعالجة',2,NULL,NULL),(14564,'sign in as admin','Sign In As Admin',1,'2021-11-30 07:59:32','2021-11-30 07:59:32'),(14566,'log in as admin','Log In As Admin',1,'2021-11-30 08:00:59','2021-11-30 08:00:59'),(14568,'log in','Log In',1,'2021-11-30 08:00:59','2021-11-30 08:00:59'),(14570,'email templates','Email Templates',1,'2021-11-30 08:09:02','2021-11-30 08:09:02'),(16963,'total services','الخدمات',2,NULL,NULL),(14572,'email smtp settings','Email SMTP Settings',1,'2021-11-30 08:17:31','2021-11-30 08:17:31'),(16962,'total orders','الطلبات',2,NULL,NULL),(14574,'mail driver','MAIL DRIVER',1,'2021-11-30 08:21:09','2021-11-30 08:21:09'),(16961,'total users','المستخدمون',2,NULL,NULL),(14576,'mail host','MAIL HOST',1,'2021-11-30 08:21:09','2021-11-30 08:21:09'),(16959,'usd','دولار',2,NULL,NULL),(14578,'mail port','MAIL PORT',1,'2021-11-30 08:21:09','2021-11-30 08:21:09'),(16960,'total earnings','مجموع الأرباح',2,NULL,NULL),(14580,'mail encryption','MAIL ENCRYPTION',1,'2021-11-30 08:21:09','2021-11-30 08:21:09'),(14582,'mail username','MAIL USERNAME',1,'2021-11-30 08:21:09','2021-11-30 08:21:09'),(14584,'mail password','MAIL PASSWORD',1,'2021-11-30 08:21:09','2021-11-30 08:21:09'),(16956,'value','القيمة',2,NULL,NULL),(14586,'email can not be sent. please check your configuration','Email can not be sent. please check your configuration',1,'2021-11-30 09:03:46','2021-11-30 09:03:46'),(16957,'values','القيم',2,NULL,NULL),(16958,'keys','المفاتيح',2,NULL,NULL),(16955,'key','المفتاح',2,NULL,NULL),(14588,'default settings','Default Settings',1,'2021-11-30 09:58:36','2021-11-30 09:58:36'),(14590,'for security reasons you can\'t update data in demo version','for security reasons you can\'t update data in demo version',1,'2021-11-30 17:01:33','2021-11-30 17:01:33'),(16953,'language values','قيم اللغة',2,NULL,NULL),(14594,'close','close',1,'2021-11-30 20:29:34','2021-11-30 20:29:34'),(16954,'payment method name','اسم طريقة الدفع',2,NULL,NULL),(16949,'is the best panel.','هي أفضل لوحة.',2,NULL,NULL),(16950,'if you are looking for the most reasonable smm panel then','إذا كنت تبحث عن لوحة SMM الأكثر منطقية إذن',2,NULL,NULL),(16951,'order lots of instagram followers and got my followers as promised in time! happy to purchased from.','اطلب الكثير من متابعي Instagram وحصل على متابعيني في الوقت المناسب!',2,NULL,NULL),(16952,'we have the friendliest dashboard in the smm world! updated regularly.','لدينا لوحة القيادة الأكثر سهولة يتم تحديثها بانتظام.',2,NULL,NULL),(16946,'add new announcement','اضافة اعلان جديد',2,NULL,NULL),(16947,'is the best smm panel that understands the customer’s needs and provides services.','هي أفضل لوحة SMM تتفهم احتياجات العميل وتقدم الخدمات.',2,NULL,NULL),(16948,'we provide the cheapest smm panel services amongst our competitors. if you’re looking for a super-easy way to offer additional marketing services to your existing and new clients, look no further! our site offers that and more !','نحن نقدم أرخص خدمات SMM Panel بين منافسينا. إذا كنت تبحث عن طريقة فائقة السهولة لتقديم خدمات تسويقية إضافية لعملائك الحاليين والجدد ، فلا مزيد من البحث! يقدم موقعنا هذا وأكثر!',2,NULL,NULL),(16945,'f.a.q','أسئلة وأجوبة',2,NULL,NULL),(16944,'reply support ticket','تذكرة دعم الرد',2,NULL,NULL),(16943,'displays the ticket id','يعرض معرف التذكرة',2,NULL,NULL),(16942,'displays the ticket subject','يعرض موضوع التذكرة',2,NULL,NULL),(16941,'displays the ticket link','يعرض رابط التذكرة',2,NULL,NULL),(16940,'payments','المدفوعات',2,NULL,NULL),(16939,'support ticket','بطاقة الدعم',2,NULL,NULL),(16938,'price','سعر',2,NULL,NULL),(16931,'changing your sign in password is an easy way to keep your account secure.','يعد تغيير كلمة مرور تسجيل الدخول طريقة سهلة للحفاظ على أمان حسابك.',2,NULL,NULL),(16932,'change password','تغيير كلمة المرور',2,NULL,NULL),(16933,'choose a new avatar','اختر صورة إفتراضية جديدة',2,NULL,NULL),(16934,'your avatar','شخصيتك الإفتراضية',2,NULL,NULL),(16935,'email address','عنوان البريد الإلكتروني',2,NULL,NULL),(16936,'user profile','ملف تعريفي للمستخدم',2,NULL,NULL),(16937,'total price','السعر الكلي',2,NULL,NULL),(16927,'update profile','تحديث الملف',2,NULL,NULL),(16928,'confirm new password','تأكيد كلمة المرور الجديدة',2,NULL,NULL),(16929,'new password','كلمة مرور جديدة',2,NULL,NULL),(16922,'your account info. your username will be publicly visible.','معلومات حسابك. سيكون اسم المستخدم الخاص بك مرئيًا للعامة.',2,NULL,NULL),(16930,'current password','كلمة المرور الحالية',2,NULL,NULL),(16923,'your password is incorrect','كلمة مرورك غير صحيحة',2,NULL,NULL),(16924,'the password new must be at least 8 characters.','يجب أن تتكون كلمة المرور الجديدة من 8 أحرف على الأقل.',2,NULL,NULL),(16926,'new password should have minimum 8 characters','يجب أن تتكون كلمة المرور الجديدة من 8 أحرف على الأقل',2,NULL,NULL),(16919,'our quality smm panel can help to increase facebook page likes, facebook followers, increase post likes, auto comments and boost live views.','يمكن أن تساعد لوحة SMM عالية الجودة الخاصة بنا في زيادة الإعجابات على صفحة Facebook ومتابعي Facebook وزيادة الإعجابات على المنشورات والتعليقات التلقائية وزيادة المشاهدات الحية.',2,NULL,NULL),(16925,'new password is required','مطلوب كلمة مرور جديدة',2,NULL,NULL),(16920,'facebook','فيسبوك',2,NULL,NULL),(16921,'our services can help you to understand your account better and your account will become more effective.','يمكن أن تساعدك خدماتنا على فهم حسابك بشكل أفضل وسيصبح حسابك أكثر فعالية.',2,NULL,NULL),(16916,'instagram','الانستغرام',2,NULL,NULL),(16917,'we can help you to boost your tweets. we can help you to increase twitter followers as your requirement. also boost your twitter re-tweets, likes and favourites.','يمكننا مساعدتك في تعزيز تغريداتك. يمكننا مساعدتك على زيادة متابعين Twitter حسب متطلباتك. قم أيضًا بتعزيز إعادة تغريدات تويتر وإعجاباتك إجعل حسابك أكثر تفاعلا.',2,NULL,NULL),(16911,'increase your tiktok real followers, videos & picture likes, boost your post engagements, it is the fastest way to increase your tiktok views and followers with just one click.','قم بزيادة متابعيك الحقيقيين في TikTok ومقاطع الفيديو وإعجابات الصور وتعزيز مشاركاتك المنشورة ، إنها أسرع طريقة لزيادة مشاهدات TikTok ومتابعيها بنقرة واحدة فقط.',2,NULL,NULL),(16918,'twitter','تويتر',2,NULL,NULL),(16915,'increase your instagram real followers, videos & picture likes, boost live viewers count and get custom comments to increase your post engagement.','قم بزيادة متابعيك الحقيقيين على Instagram ومقاطع الفيديو وإعجابات الصور وزيادة عدد المشاهدين المباشرين والحصول على تعليقات مخصصة لزيادة مشاركة منشورك.',2,NULL,NULL),(16914,'youtube','يوتيوب',2,NULL,NULL),(16913,'increase youtube views and conversations. it is the fastest way to increase your youtube views, and it can help to increase likes and boost your views with just one click.','زيادة المشاهدات والمحادثات على يوتيوب. إنها أسرع طريقة لزيادة مشاهدات YouTube ، ويمكن أن تساعد في زيادة الإعجابات وتعزيز المشاهدات بنقرة واحدة فقط.',2,NULL,NULL),(16912,'tiktok','تيك توك',2,NULL,NULL),(16910,'and more','و اكثر',2,NULL,NULL),(16908,'smm panels - what are they?','لوحات SMM - ما هي؟',2,NULL,NULL),(16909,'we provide all kind of social media platforms including website traffic, soundcloud, spotify & many more. our support team and we make sure that we provide only the best services.','نحن نقدم جميع أنواع منصات الوسائط الاجتماعية بما في ذلك زيادة الزوار مواقع الويب ، و soundcloud ، و Spotify وغيرها الكثير. فريق الدعم لدينا ينتأكد من أننا نقدم أفضل الخدمات لدينا.',2,NULL,NULL),(16907,'what smm services can i find on this panel?','ما هي خدمات SMM التي يمكنني العثور عليها في هذه اللوحة؟',2,NULL,NULL),(16906,'<p>we sell different types of smm services — likes, followers, views, etc.</p>','<p> نبيع أنواعًا مختلفة من خدمات SMM - الإعجابات ، المتابعون ، المشاهدات ، إلخ. </ p>',2,NULL,NULL),(16905,'are smm services on your panel safe to buy?','هل خدمات SMM على لوحتك آمنة للشراء؟',2,NULL,NULL),(16904,'<p>sure! your accounts won\'t get banned.</p>','<p> بالتأكيد! لن يتم حظر حساباتك. </ p>',2,NULL,NULL),(16903,'what is the start time & speed after placing an order?','ما هو وقت البدء والسرعة بعد تقديم الطلب؟',2,NULL,NULL),(16901,'how do i place an order?','كيف يمكنني الطلب',2,NULL,NULL),(16902,'<p>every service is different. whenever you select a service from the drop-down menu, you will see a description box with all the specifications for that particular service</p>','<p> تختلف كل خدمة عن غيرها. عندما تحدد خدمة من القائمة المنسدلة ، فسترى مربع الوصف مع جميع المواصفات لهذه الخدمة المعينة </ p>',2,NULL,NULL),(16899,'our services can help you make your account more effective.','يمكن أن تساعدك خدماتنا في جعل حسابك أكثر فعالية.',2,NULL,NULL),(16897,'awaiting','تنتظر',2,NULL,NULL),(16900,'<p><strong>step 1</strong>: select the social media platform you want to grow.</p><p><strong>step 2</strong>: carefully read details for every service before placing an order.</p><p><strong>step 3</strong>: enter the username or page link.</p><p><strong>step 4</strong>: it will shows your order cost.</p><p>press submit and enjoy your order!</p>','<p> <strong> الخطوة الأولى </ strong>: حدد نظام الوسائط الاجتماعية الذي تريد تطويره. </ p> <p> <strong> الخطوة 2 </strong>: اقرأ التفاصيل بعناية لكل خدمة قبل تقديمها طلب. </ p> <p> <strong> الخطوة الثالثة </ strong>: أدخل اسم المستخدم أو رابط الصفحة. </ p> <p> <strong> الخطوة 4 </strong>: سيعرض تكلفة الطلب. </ p> <p> اضغط على إرسال واستمتع بطلبك! </ p>',2,NULL,NULL),(16432,'login as admin','Login As Admin',1,'2021-12-04 19:39:19','2021-12-04 19:39:19'),(16898,'in progress','في تقدم',2,NULL,NULL),(17356,'close','أغلق',2,NULL,NULL),(17357,'login as admin','دخول كمسؤول',2,NULL,NULL),(17358,'amount is required','Amount is required',1,'2021-12-05 22:29:59','2021-12-05 22:29:59'),(17359,'amount is required','Amount is required',2,'2021-12-05 22:29:59','2021-12-05 22:29:59'),(17360,'amount (include fee)','Amount (include fee)',1,'2021-12-05 22:30:15','2021-12-05 22:30:15'),(17361,'amount (include fee)','Amount (include fee)',2,'2021-12-05 22:30:15','2021-12-05 22:30:15'),(17362,'caregory','Caregory',1,'2021-12-05 22:57:55','2021-12-05 22:57:55'),(17363,'caregory','Caregory',2,'2021-12-05 22:57:55','2021-12-05 22:57:55');
/*!40000 ALTER TABLE `language_values` 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,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`sort` int(11) DEFAULT '0',
`direction` enum('ltr','rtl') COLLATE utf8mb4_unicode_ci NOT NULL,
`status` enum('active','deactive') COLLATE utf8mb4_unicode_ci NOT NULL,
`is_default` enum('yes','no') COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM 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,'English','EN','1635603173.png',0,'ltr','active','yes','2021-10-30 12:12:53','2021-10-30 13:02:00'),(2,'العربية','AR','1635603223.png',0,'rtl','active','no','2021-10-30 12:13:43','2021-10-30 13:06:51');
/*!40000 ALTER TABLE `languages` 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(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=128 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 (97,'2021_06_17_103121_create_categories_table',1),(98,'2021_07_10_140536_create_api_providers_table',1),(99,'2021_07_10_172959_create_admins_table',1),(100,'2021_07_20_210908_create_payment_methods_table',1),(101,'2021_07_25_025117_create_transactions_table',1),(102,'2021_07_29_180719_create_tickets_table',1),(103,'2021_07_30_115957_create_settings_table',1),(104,'2021_08_03_232023_create_faqs_table',1),(105,'2021_08_04_001402_create_announcements_table',1),(106,'2021_08_07_015547_ticket_messages',1),(108,'2021_09_11_061933_create_languages_table',1),(109,'2021_09_14_155140_create_language_values_table',1),(73,'2014_10_12_000000_create_users_table',1),(74,'2014_10_12_100000_create_password_resets_table',1),(75,'2019_08_19_000000_create_failed_jobs_table',1),(76,'2021_06_16_154254_create_orders_table',1),(77,'2021_06_16_154349_create_services_table',1),(78,'2021_06_17_103121_create_categories_table',1),(10,'2021_07_25_025117_create_transactions_table',1),(11,'2021_07_29_180719_create_tickets_table',1),(12,'2021_07_30_115957_create_settings_table',1),(13,'2021_08_03_232023_create_faqs_table',1),(14,'2021_08_04_001402_create_announcements_table',1),(15,'2021_08_07_015547_ticket_messages',1),(17,'2021_09_11_061933_create_languages_table',1),(18,'2021_09_14_155140_create_language_values_table',1),(92,'2014_10_12_000000_create_users_table',1),(93,'2014_10_12_100000_create_password_resets_table',1),(94,'2019_08_19_000000_create_failed_jobs_table',1),(95,'2021_06_16_154254_create_orders_table',1),(96,'2021_06_16_154349_create_services_table',1),(124,'2021_08_07_015547_ticket_messages',1),(125,'2021_08_14_232327_create_user_notifications_table',1),(126,'2021_09_11_061933_create_languages_table',1),(127,'2021_09_14_155140_create_language_values_table',1),(1,'2014_10_12_000000_create_users_table',1),(2,'2014_10_12_100000_create_password_resets_table',1),(3,'2019_08_19_000000_create_failed_jobs_table',1),(4,'2021_06_16_154254_create_orders_table',1),(5,'2021_06_16_154349_create_services_table',1),(6,'2021_06_17_103121_create_categories_table',1),(7,'2021_07_10_140536_create_api_providers_table',1),(8,'2021_07_10_172959_create_admins_table',1),(9,'2021_07_20_210908_create_payment_methods_table',1),(110,'2014_10_12_000000_create_users_table',1),(111,'2014_10_12_100000_create_password_resets_table',1),(112,'2019_08_19_000000_create_failed_jobs_table',1),(113,'2021_06_16_154254_create_orders_table',1),(114,'2021_06_16_154349_create_services_table',1),(115,'2021_06_17_103121_create_categories_table',1),(116,'2021_07_10_140536_create_api_providers_table',1),(117,'2021_07_10_172959_create_admins_table',1),(118,'2021_07_20_210908_create_payment_methods_table',1),(119,'2021_07_25_025117_create_transactions_table',1),(120,'2021_07_29_180719_create_tickets_table',1),(121,'2021_07_30_115957_create_settings_table',1),(122,'2021_08_03_232023_create_faqs_table',1),(123,'2021_08_04_001402_create_announcements_table',1),(79,'2021_07_10_140536_create_api_providers_table',1),(80,'2021_07_10_172959_create_admins_table',1),(81,'2021_07_20_210908_create_payment_methods_table',1),(82,'2021_07_25_025117_create_transactions_table',1),(83,'2021_07_29_180719_create_tickets_table',1),(84,'2021_07_30_115957_create_settings_table',1),(85,'2021_08_03_232023_create_faqs_table',1),(86,'2021_08_04_001402_create_announcements_table',1),(87,'2021_08_07_015547_ticket_messages',1),(89,'2021_09_11_061933_create_languages_table',1),(90,'2021_09_14_155140_create_language_values_table',1);
/*!40000 ALTER TABLE `migrations` 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,
`user_id` int(11) NOT NULL,
`service_id` int(11) NOT NULL,
`order_api_id` int(11) DEFAULT NULL,
`api_provider_error` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`quantity` int(11) NOT NULL,
`link` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`total` decimal(10,4) NOT NULL,
`details` text COLLATE utf8mb4_unicode_ci NOT NULL,
`notes` text COLLATE utf8mb4_unicode_ci,
`status` enum('pending','processing','in progress','completed','partial','refunded','awaiting','error') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM 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 `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(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
KEY `password_resets_email_index` (`email`)
) ENGINE=MyISAM 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_methods`
--
DROP TABLE IF EXISTS `payment_methods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_methods` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`min` int(11) NOT NULL,
`max` int(11) NOT NULL,
`status` enum('active','deactive') COLLATE utf8mb4_unicode_ci NOT NULL,
`fee` decimal(10,4) DEFAULT '0.0000',
`environment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`api_key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`private_key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`client_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payment_methods`
--
LOCK TABLES `payment_methods` WRITE;
/*!40000 ALTER TABLE `payment_methods` DISABLE KEYS */;
INSERT INTO `payment_methods` VALUES (1,'Paypal Checkout',10,10000000,'active',10.0000,'sandbox','','','','paypal.png','2021-11-03 13:59:16','2021-11-03 13:59:16'),(2,'Stripe Checkout',10,10000000,'active',15.0000,'sandbox','','','','stripe.png','2021-11-03 13:59:16','2021-11-03 13:59:16');
/*!40000 ALTER TABLE `payment_methods` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `services`
--
DROP TABLE IF EXISTS `services`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `services` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(11) NOT NULL,
`api_provider_id` int(11) DEFAULT NULL,
`api_provider_service_id` int(11) DEFAULT NULL,
`type` enum('normal','api') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'normal',
`status` enum('active','deactive') COLLATE utf8mb4_unicode_ci NOT NULL,
`name` text COLLATE utf8mb4_unicode_ci NOT NULL,
`rate` decimal(10,4) NOT NULL,
`rate_original` decimal(10,4) DEFAULT NULL,
`min` int(11) NOT NULL,
`max` int(11) NOT NULL,
`percentage_increase` double(8,2) DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `services_category_id_foreign` (`category_id`),
KEY `services_api_provider_id_foreign` (`api_provider_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `services`
--
LOCK TABLES `services` WRITE;
/*!40000 ALTER TABLE `services` DISABLE KEYS */;
/*!40000 ALTER TABLE `services` 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,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci,
`type` enum('general','apparence','seo','policy','email','default') COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=56 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,'site_base_color','#3B5998','apparence',NULL,'2021-10-25 11:58:25'),(2,'site_secondary_color','#304C86','apparence',NULL,'2021-10-25 11:58:25'),(3,'site_tertiary_color','#F9FBFD','apparence',NULL,NULL),(4,'user_registration','on','general',NULL,NULL),(5,'user_login','on','general',NULL,NULL),(6,'website_name_1','smm','general',NULL,NULL),(7,'website_name_2','booster','general',NULL,NULL),(8,'new_user_welcome_email_tpl_active','on','email','2021-10-25 11:46:42','2021-10-25 11:46:42'),(9,'new_user_welcome_email_tpl_subject','{{website_name}} - Getting Started with Our Service!','email','2021-10-25 11:46:42','2021-10-26 07:14:21'),(10,'new_user_welcome_email_tpl','<p><strong>Welcome to {{website_name}}! </strong></p><p>Hello <strong>{{firstname}}</strong>!</p><p>Congratulations! <br>You have successfully signed up for our service - {{website_name}} with follow data:</p><ul><li>Firstname: {{firstname}}</li><li>Lastname: lastname</li><li>Email: {{email}}</li><li>Username: {{username}}</li></ul><p>We want to exceed your expectations, so please do not hesitate to reach out at any time if you have any questions or concerns. We look to working with you.</p><p>Best Regards,</p>','email','2021-10-25 11:46:42','2021-10-26 07:14:21'),(11,'email_verification_tpl_active','on','email','2021-10-25 11:46:42','2021-10-30 06:50:41'),(12,'email_verification_tpl_subject','{{website_name}} - Account verification','email','2021-10-25 11:46:42','2021-10-30 06:50:41'),(13,'email_verification_tpl','<p>Hello <strong>{{firstname}}</strong>!</p><p>Thank you for joining! We\'re glad to have you as community member, and we\'re stocked for you to start exploring our service. If you don\'t verify your address, you won\'t be able to create a User Account.</p><p>All you need to do is activate your account by click this link: <strong>{{activation_link}}</strong> </p><p>Thanks and Best Regards!</p>','email','2021-10-25 11:46:42','2021-10-30 06:50:41'),(14,'payment_notification_tpl_active','on','email','2021-10-25 11:46:42','2021-10-26 12:51:44'),(15,'payment_notification_tpl_subject','{{website_name}} - an amount has been deposited into your account','email','2021-10-25 11:46:42','2021-10-26 13:06:53'),(16,'payment_notification_tpl','<p>Hello <strong>{{firstname}},</strong></p><p>An amount of <strong>{{amount}} {{currency}}</strong> via <strong>{{method_name}}</strong> has been deposited into your account.</p><p>-------------------------------</p><p><strong>Details of your Deposit :</strong></p><p>Amount : {{amount}} {{currency}}</p><p>Paid via : {{method_name}}</p><p>Transaction Number : {{transaction_number}}</p><p>Your current Balance is <strong>{{balance}} {{currency}}</strong></p><p> </p>','email','2021-10-25 11:46:42','2021-10-26 13:27:41'),(17,'order_status_tpl_active','on','email','2021-10-25 11:46:42','2021-11-22 11:19:31'),(18,'order_status_tpl_subject','{{website_name}} - Your order status','email','2021-10-25 11:46:42','2021-10-27 07:37:07'),(19,'order_status_tpl','<p>Hello <strong>{{firstname}},</strong></p><p>Your order for <strong>{{service_name}}</strong> is now <strong>{{status}}</strong> .</p><p>-------------------------------</p><p><strong>Order Details :</strong></p><p>Order ID : {{order_ID}}</p><p>Service Name : {{service_name}} </p><p>Service Category : {{service_category}}</p><p>Price : {{price}} {{currency}}</p><p>Your Balance : {{balance}} {{currency}}</p>','email','2021-10-25 11:46:42','2021-10-27 07:21:34'),(20,'website_logo','logo.png','apparence','2021-10-25 11:58:25','2021-10-25 11:58:25'),(23,'password_recovery_tpl_active','on','email','2021-10-30 14:07:16','2021-10-30 14:07:16'),(24,'password_recovery_tpl_subject','{{website_name}} - Reset Password Notification','email','2021-10-30 14:07:16','2021-10-30 17:21:55'),(25,'password_recovery_tpl','<p>Hi<strong> {{firstname}}</strong>! ,</p><p>You are receiving this email because we received a password reset request for your account.</p><p><strong>{{recovery_password_link}}</strong></p><p>This password reset link will expire in 60 minutes.</p><p>If you did not request a password reset, no further action is required.</p><p>Regards,</p><p><strong>{{website_name}}</strong></p>','email','2021-10-30 14:07:16','2021-10-30 17:22:23'),(26,'maintenance_mode','off','general','2021-10-31 09:00:43','2021-10-31 09:01:17'),(27,'email_verification','on','general','2021-10-31 09:00:43','2021-10-31 09:01:02'),(28,'website_title','smm booster','general','2021-10-31 09:00:43','2021-10-31 09:00:55'),(29,'currency','AED','general','2021-10-31 09:00:43','2021-10-31 09:00:43'),(30,'currency_symbol',NULL,'general','2021-10-31 09:00:43','2021-10-31 09:00:43'),(31,'reply_support_ticket_tpl_active','on','email','2021-11-04 13:31:13','2021-11-04 13:31:13'),(32,'reply_support_ticket_tpl_subject','{{website_name}} - Reply Support Ticket','email','2021-11-04 13:31:13','2021-11-04 13:31:13'),(33,'reply_support_ticket_tpl','<p>Hello <strong>{{firstname}},</strong></p><p>A member from our support team has replied to the following ticket:</p><p>[Ticket#<strong>{{ticket_id}}</strong>] <strong>{{ticket_subject}}</strong><br><br>Click here to reply: <strong>{{ticket_link}}</strong></p><p><br>Best Regards,</p>','email','2021-11-04 13:31:13','2021-11-04 13:31:38'),(34,'facebook_link','#','general','2021-11-28 21:35:58','2021-11-28 21:35:58'),(35,'twitter_link','#','general','2021-11-28 21:35:58','2021-11-28 21:35:58'),(36,'linkedin_link','#','general','2021-11-28 21:35:58','2021-11-28 21:35:58'),(37,'instagram_link','#','general','2021-11-28 21:35:58','2021-11-28 21:35:58'),(38,'terms_policy','<p><strong>Lorem ipsum dolor </strong></p><p> Lorem ipsum dolor sit amet consectetur, adipisicing elit. Doloribus quia aut dignissimos culpa minima reiciendis ad laudantium sed similique quo exercitationem illo laboriosam illum magni fugit repellat optio aliquid modi ipsam rerum iure suscipit, odio tempora. A optio, sit eum recusandae pariatur delectus esse laboriosam deserunt labore similique! Ipsam pariatur consequatur minus porro quas adipisci illum excepturi libero sapiente. Libero, unde. Eligendi quos ducimus sed porro quasi quis odit id aliquid ipsum placeat, ratione deleniti impedit officiis voluptatem optio laborum maiores ea facere. Vitae ut deleniti voluptatibus ipsa voluptatem ex laboriosam saepe adipisci! Accusantium eligendi totam quae. Distinctio, inventore sapiente.</p>','policy','2021-11-29 14:06:54','2021-12-05 22:36:51'),(39,'cookie_policy','<p><strong>dipisicing elit. Harum</strong></p><p> Lorem ipsum dolor sit amet consectetur, adipisicing elit. Doloribus quia aut dignissimos culpa minima reiciendis ad laudantium sed similique quo exercitationem illo laboriosam illum magni fugit repellat optio aliquid modi ipsam rerum iure suscipit, odio tempora. A optio, sit eum recusandae pariatur delectus esse laboriosam deserunt labore similique! Ipsam pariatur consequatur minus porro quas adipisci illum excepturi libero sapiente. Libero, unde. Eligendi quos ducimus sed porro quasi quis odit id aliquid ipsum placeat, ratione deleniti impedit officiis voluptatem optio laborum maiores ea facere. Vitae ut deleniti voluptatibus ipsa voluptatem ex laboriosam saepe adipisci! Accusantium eligendi totam quae. Distinctio, inventore sapiente.</p><p> </p><p><strong>amet consectetur</strong></p><p> Lorem ipsum dolor sit amet consectetur, adipisicing elit. Doloribus quia aut dignissimos culpa minima reiciendis ad laudantium sed similique quo exercitationem illo laboriosam illum magni fugit repellat optio aliquid modi ipsam rerum iure suscipit, odio tempora. A optio, sit eum recusandae pariatur delectus esse laboriosam deserunt labore similique! Ipsam pariatur consequatur minus porro quas adipisci illum excepturi libero sapiente. Libero, unde. Eligendi quos ducimus sed porro quasi quis odit id aliquid ipsum placeat, ratione deleniti impedit officiis voluptatem optio laborum maiores ea facere. Vitae ut deleniti voluptatibus ipsa voluptatem ex laboriosam saepe adipisci! Accusantium eligendi totam quae. Distinctio, inventore sapiente.</p><p> </p><p> </p>','policy','2021-11-29 14:06:54','2021-11-29 14:08:27'),(50,'MAIL_USERNAME','','email','2021-11-30 08:27:22','2021-12-05 22:36:01'),(49,'MAIL_ENCRYPTION','','email','2021-11-30 08:27:22','2021-12-05 22:36:01'),(48,'MAIL_PORT','','email','2021-11-30 08:27:22','2021-12-05 22:36:01'),(47,'MAIL_HOST','','email','2021-11-30 08:27:22','2021-12-05 22:36:01'),(46,'MAIL_DRIVER','','email','2021-11-30 08:27:22','2021-12-05 22:36:01'),(51,'MAIL_PASSWORD','','email','2021-11-30 08:27:22','2021-12-05 22:36:01'),(52,'version','1.0','general',NULL,NULL),(53,'shortcut_icon','favicon.ico','apparence','2021-12-05 13:19:53','2021-12-05 13:19:53'),(54,'website_icon','favicon.ico','apparence','2021-12-05 13:19:53','2021-12-05 13:19:53'),(55,'apple_icon','favicon.ico','apparence','2021-12-05 13:19:53','2021-12-05 13:19:53');
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ticket_messages`
--
DROP TABLE IF EXISTS `ticket_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ticket_messages` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ticket_id` int(11) NOT NULL,
`response_by` enum('admin','user') COLLATE utf8mb4_unicode_ci NOT NULL,
`content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ticket_messages_ticket_id_foreign` (`ticket_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ticket_messages`
--
LOCK TABLES `ticket_messages` WRITE;
/*!40000 ALTER TABLE `ticket_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tickets`
--
DROP TABLE IF EXISTS `tickets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tickets` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(11) NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` enum('order','payment','service','api') COLLATE utf8mb4_unicode_ci NOT NULL,
`status` enum('pending','answered','closed') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
`subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`file` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `tickets_user_id_foreign` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tickets`
--
LOCK TABLES `tickets` WRITE;
/*!40000 ALTER TABLE `tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `tickets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `transactions`
--
DROP TABLE IF EXISTS `transactions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `transactions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`method_id` int(11) NOT NULL,
`transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(11) NOT NULL,
`amount` decimal(10,4) NOT NULL,
`fee` decimal(10,4) NOT NULL,
`profit` decimal(10,4) NOT NULL,
`take_fee` decimal(10,4) NOT NULL,
`status` enum('paid','refund') COLLATE utf8mb4_unicode_ci NOT NULL,
`notes` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `transactions_user_id_foreign` (`user_id`),
KEY `transactions_method_id_foreign` (`method_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `transactions`
--
LOCK TABLES `transactions` WRITE;
/*!40000 ALTER TABLE `transactions` DISABLE KEYS */;
/*!40000 ALTER TABLE `transactions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_notifications`
--
DROP TABLE IF EXISTS `user_notifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_notifications` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(11) NOT NULL,
`is_for_admin` int(11) DEFAULT '0',
`icon` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'fa fa-fw fa-check-circle text-success',
`viewed` int(11) DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `user_notifications_user_id_foreign` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_notifications`
--
LOCK TABLES `user_notifications` WRITE;
/*!40000 ALTER TABLE `user_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_notifications` 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,
`username` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`firstname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`lastname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`avatar` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'avatar.jpg',
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` enum('active','deactive') COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`notes` text COLLATE utf8mb4_unicode_ci,
`phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`stripe_token` text COLLATE utf8mb4_unicode_ci,
`stripe_id` text COLLATE utf8mb4_unicode_ci,
`funds` decimal(10,4) DEFAULT '0.0000',
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'user','demo','user','avatar.jpg','[email protected]','active','2021-11-03 13:59:16',NULL,'396-271-2594','89942 Paucek Rest Suite 664\nNorth Keith, HI 53129','$2y$10$mZ5CtpTyruYmcGLKsAi6uuGYPDKcioIve2s.7foA4TkI2gO83O1eC','{\"id\":\"tok_1K3UBYDacCe0sextdyNoTWR0\",\"object\":\"token\",\"card\":{\"id\":\"card_1K3UBYDacCe0sextBeamGAxx\",\"object\":\"card\",\"address_city\":null,\"address_country\":null,\"address_line1\":null,\"address_line1_check\":null,\"address_line2\":null,\"address_state\":null,\"address_zip\":\"12344\",\"address_zip_check\":\"unchecked\",\"brand\":\"Visa\",\"country\":\"US\",\"cvc_check\":\"unchecked\",\"dynamic_last4\":null,\"exp_month\":4,\"exp_year\":2042,\"funding\":\"credit\",\"last4\":\"4242\",\"name\":null,\"tokenization_method\":null},\"client_ip\":\"196.84.202.144\",\"created\":1638747120,\"livemode\":false,\"type\":\"card\",\"used\":false}','cus_Kiw3ajJm9yA3VI',248.2950,'JXTAiEg3tCC95KgXZc4jghdE81EwWQ98bnBsxafGgi4nqzXnvI6yI6241gwz','2021-11-03 13:59:16','2021-12-05 22:56:38');
/*!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 2022-01-31 22:38:35