-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.sql
4752 lines (4502 loc) · 608 KB
/
blog.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
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.9.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jun 05, 2021 at 05:27 PM
-- Server version: 10.4.6-MariaDB
-- PHP Version: 7.3.9
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `blog`
--
-- --------------------------------------------------------
--
-- Table structure for table `activations`
--
CREATE TABLE `activations` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`code` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`completed` tinyint(1) NOT NULL DEFAULT 0,
`completed_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `activations`
--
INSERT INTO `activations` (`id`, `user_id`, `code`, `completed`, `completed_at`, `created_at`, `updated_at`) VALUES
(1, 1, 'bPH7M9HOZwDRXQFwxkFFdAJDWNZ8QgfZ', 1, '2021-03-14 19:40:35', '2021-03-14 19:40:35', '2021-03-14 19:40:35');
-- --------------------------------------------------------
--
-- Table structure for table `ads`
--
CREATE TABLE `ads` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`expired_at` datetime DEFAULT NULL,
`location` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`clicked` bigint(20) NOT NULL DEFAULT 0,
`order` int(11) NOT NULL DEFAULT 0,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `ads`
--
INSERT INTO `ads` (`id`, `name`, `expired_at`, `location`, `key`, `image`, `url`, `clicked`, `order`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Panel Ads', '2026-03-15 00:00:00', 'panel-ads', 'UANG7YMCQCAZ', 'banners/1.jpg', 'https://botble.com', 0, 1, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(2, 'Sidebar Ads', '2026-03-15 00:00:00', 'top-sidebar-ads', 'BOH1QQW2GLGT', 'banners/2.jpg', 'https://botble.com', 0, 2, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40');
-- --------------------------------------------------------
--
-- Table structure for table `audit_histories`
--
CREATE TABLE `audit_histories` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`module` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`request` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_agent` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`ip_address` varchar(39) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`reference_user` int(10) UNSIGNED NOT NULL,
`reference_id` int(10) UNSIGNED NOT NULL,
`reference_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `audit_histories`
--
INSERT INTO `audit_histories` (`id`, `user_id`, `module`, `request`, `action`, `user_agent`, `ip_address`, `reference_user`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(1, 1, 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0', '127.0.0.1', 0, 1, 'Steven Madden', 'info', '2021-06-05 07:25:15', '2021-06-05 07:25:15');
-- --------------------------------------------------------
--
-- Table structure for table `categories`
--
CREATE TABLE `categories` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`parent_id` int(10) UNSIGNED NOT NULL DEFAULT 0,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`author_id` int(11) NOT NULL,
`author_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
`icon` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` tinyint(4) NOT NULL DEFAULT 0,
`is_featured` tinyint(4) NOT NULL DEFAULT 0,
`is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`id`, `name`, `parent_id`, `description`, `status`, `author_id`, `author_type`, `icon`, `order`, `is_featured`, `is_default`, `created_at`, `updated_at`) VALUES
(1, 'Uncategorized', 0, 'Labore quis dignissimos est eos quos id architecto. Architecto incidunt distinctio maxime nemo aspernatur. Quibusdam fugit sit sit dolorem itaque eos esse.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 0, 1, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(2, 'Travel', 0, 'Nam quasi aut necessitatibus. Error saepe voluptate iure est et expedita consequatur. Sed vero dolorem corrupti et tempore nihil explicabo.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(3, 'Guides', 2, 'Labore iusto vel magnam sit cupiditate tempora. Sunt dicta voluptates eveniet sit perspiciatis. Ut odit dolores accusantium aliquam ipsum deserunt rerum. Commodi magnam totam quo aspernatur.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 0, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(4, 'Destination', 0, 'Doloribus possimus recusandae nisi eum. Occaecati ex nobis at adipisci sint tenetur quo. Commodi tenetur ut labore voluptatem enim ut ut. Nesciunt quia sit quia.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(5, 'Food', 4, 'Facere omnis ad doloremque aut eum. Sint voluptas cum ut iste odit voluptate. Voluptatem provident ut qui neque est quis.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 0, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(6, 'Hotels', 0, 'Accusantium explicabo non est sequi. Ut ut ad doloremque ut sit soluta. Laboriosam veniam aliquam quia natus. Voluptas beatae aut voluptas rem voluptate optio.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(7, 'Review', 6, 'Tempora blanditiis sint et consequatur dolor. Amet quia dolore eius saepe. Aut sapiente veritatis esse cum enim quod totam.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 0, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(8, 'Healthy', 0, 'Explicabo consequatur quo ut non sit et eaque corrupti. Et quisquam nam quia non quia nihil. Distinctio doloremque saepe ut et repudiandae. Ea sed assumenda perferendis.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(9, 'Lifestyle', 0, 'Laboriosam reiciendis placeat voluptatem tempora quia labore nesciunt voluptatem. Et impedit minima dolor. Voluptatem vero iste odio aliquid dolorem similique.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(10, 'Không phân loại', 0, 'Impedit nihil et minus distinctio. Possimus ad voluptate in sint quia quaerat. Eos omnis ut voluptatibus.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 0, 1, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(11, 'Du lịch', 0, 'In et sit neque at qui consectetur voluptatibus. Sit voluptas vel voluptatem quia magnam accusantium. Ut est voluptas id sed debitis id. Ducimus corrupti ut ut ex aut excepturi rerum.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(12, 'Hướng dẫn', 11, 'Ex eaque sed fugit voluptatem non aut. Odio et non veritatis et voluptas explicabo. Et et optio voluptatem. Et amet soluta ratione quia qui fuga.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 0, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(13, 'Điểm đến', 0, 'Aliquid deserunt dolorum a neque natus recusandae nihil. Quibusdam ut officiis consectetur id eaque sed tempore. Harum velit ad optio laboriosam architecto quos quidem. Voluptatem ad qui dolor.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(14, 'Đồ ăn', 13, 'Ea ex rerum distinctio recusandae. Pariatur voluptatem dolorum veritatis maxime.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 0, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(15, 'Khách sạn', 0, 'Labore aspernatur est autem sunt magnam sint totam. Nam omnis eveniet necessitatibus aut quia sit consectetur. Sit sapiente ut soluta.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(16, 'Đánh giá', 15, 'Aliquid eligendi corporis quo ut. Et illo blanditiis minus aut optio dolor voluptas temporibus. Ea est est officiis incidunt. Et enim eos hic modi.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 0, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(17, 'Sức khỏe', 0, 'Impedit tenetur quibusdam et aliquid. Minus ea dolorum quasi. Est voluptatum repellendus quisquam placeat corrupti sit. Blanditiis aut non qui unde perspiciatis modi repellendus perferendis.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(18, 'Phong cách sống', 0, 'Quod ullam deserunt occaecati itaque officiis aut. Enim odit unde ut quidem suscipit quas. Similique alias quae quas repudiandae.', 'published', 1, 'Botble\\ACL\\Models\\User', NULL, 0, 1, 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38');
-- --------------------------------------------------------
--
-- Table structure for table `contacts`
--
CREATE TABLE `contacts` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`subject` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `contacts`
--
INSERT INTO `contacts` (`id`, `name`, `email`, `phone`, `address`, `subject`, `content`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Prof. Marshall Hayes', '[email protected]', '1-963-203-3366', '1783 Satterfield Mission Suite 458\nHowellmouth, NC 25919', 'Iure earum illo perferendis sit unde aut.', 'Animi ratione sed rerum velit natus. Repellat minima iste beatae soluta et quo magni. Atque et non quia omnis aspernatur. Quo veniam et dignissimos nesciunt. Voluptatem facilis eius incidunt laboriosam. Consequatur consectetur et placeat fugit perspiciatis. Nesciunt quisquam qui dolores ipsam. Qui doloremque rerum iste inventore debitis illo est. Cupiditate molestias culpa eaque consequatur aliquam.', 'read', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(2, 'Kenya Lemke', '[email protected]', '(757) 963-7830', '82941 Keyon Stravenue\nMillsfort, OK 69495-4355', 'Error numquam autem labore ut modi.', 'Corrupti alias pariatur repellendus quasi dolor possimus est labore. Explicabo recusandae reprehenderit a repellendus. Nisi voluptas suscipit ut ut corporis non. Sunt et asperiores placeat ratione placeat. Aliquid impedit vel placeat et. Natus culpa illum qui corrupti ad. Debitis quia et accusamus. Placeat sed nihil commodi incidunt omnis qui. Autem rerum eum nulla voluptatem.', 'unread', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(3, 'Miss Brandy Senger', '[email protected]', '337.722.3178', '47826 Brennan Ferry Suite 308\nVestaburgh, TN 13109', 'Numquam quam ducimus illo qui mollitia.', 'Et minima non ut adipisci. Voluptas earum nostrum et dicta doloribus. Ipsa quam reiciendis iusto dolor. Ex nesciunt corrupti vel nobis nulla. Ea non minus ut voluptatem. Quaerat eum et dolor nostrum et. Et enim deleniti totam et voluptates quaerat. Unde veritatis delectus iste optio repellendus esse. Fugiat est quia commodi eius aut distinctio laboriosam. Rerum voluptates quis dolorum quidem. Quidem omnis nihil provident laborum ut accusamus.', 'unread', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(4, 'Alex Veum', '[email protected]', '(995) 353-9078', '334 Schroeder Crossroad Apt. 281\nNew Antone, OH 37299', 'Necessitatibus rem quis quos et itaque quaerat.', 'Eum id perferendis rem atque laboriosam porro. Harum repellendus sed sit molestias dolor possimus autem. Est et ea consectetur eveniet nihil. Molestiae est quia corrupti suscipit natus omnis ipsam. Eaque recusandae quis aperiam laborum et non nesciunt. Molestias officiis cupiditate eaque dolor eum. Minima ex nisi perferendis sit inventore omnis voluptatibus.', 'unread', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(5, 'Vivian Purdy', '[email protected]', '+16528104497', '6545 Hartmann Fork\nRafaelaport, MN 39120', 'Excepturi magni et et. Eos et nihil quia sint.', 'Excepturi libero est quo perferendis velit ut. Asperiores quasi ipsa aut labore. Voluptatum dolorem beatae dolorem omnis debitis dolores doloribus. Vero minima recusandae dolor voluptate voluptatibus molestiae voluptates quia. Quidem ea sit numquam est consequuntur quia excepturi. Et optio est dolor sed corporis non libero. Iste pariatur quidem rerum culpa. Rem saepe omnis accusantium ipsam rerum molestiae. Fugit rerum sint optio qui harum rerum.', 'unread', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(6, 'Matilda Sanford', '[email protected]', '490-204-7585', '825 Rigoberto Canyon\nReillyhaven, WA 95847', 'Qui doloremque laboriosam consectetur eos vel.', 'Ea quia officia odio aut fugit odit eum. Itaque iure nihil ullam iusto aliquam deleniti assumenda. Similique sed sit illo sed. Iusto quo cupiditate corrupti tenetur consectetur consectetur qui. Sit tenetur facilis et ea. Ea cumque temporibus tenetur rem ad tempore. Quae rerum ex illo alias molestiae. Expedita voluptatibus magnam sit placeat.', 'read', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(7, 'Kendra Barrows', '[email protected]', '525-932-8787', '277 Hintz Plain Apt. 756\nSpencerborough, MA 75676-7284', 'Assumenda est quod beatae dolore voluptas et.', 'Facere et qui ut dicta. Aliquam incidunt eius maxime. Laboriosam ad suscipit sed eveniet nesciunt ipsam nesciunt similique. A voluptatem amet ipsam et tempora. Sit recusandae atque earum et ratione labore fuga. Et quas et explicabo a. Ut rerum natus accusantium voluptatem sed qui doloribus. Assumenda sit natus tenetur.', 'unread', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(8, 'Prof. Torey Howe', '[email protected]', '(404) 851-6468', '250 Hane Hollow Suite 481\nLake Darion, LA 40039', 'Perspiciatis rerum officia libero alias.', 'Consequatur ea vel quia alias qui. Totam vel rerum voluptatem error voluptatem distinctio quae. Eligendi eius pariatur qui neque temporibus provident. Dolore quae voluptatem veniam. Aspernatur ab omnis sunt optio aut laboriosam doloribus. Dolores aut repudiandae sed facilis voluptatibus sunt dolor. Facere iste tempora amet eligendi qui. Magni doloribus omnis reprehenderit maxime doloremque. Consectetur id nesciunt incidunt occaecati nisi non. Qui possimus minima harum qui voluptatem velit.', 'read', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(9, 'Elenor Lynch', '[email protected]', '+1-868-646-4461', '898 Baby Mission\nIsabelfort, WI 01335', 'Nulla fugiat odit non ullam est.', 'Quis quia praesentium et eos iusto. Voluptates id et iure nihil nulla. Quo consequatur ut unde magnam ut fuga et. Repellendus voluptatibus qui voluptatem sint. Illum ullam quisquam placeat fuga porro atque maiores. Et necessitatibus perspiciatis velit ab amet assumenda vero. Sequi ut atque fugiat laboriosam. Aspernatur dolores autem qui tempore quis quo. Quasi sed quaerat est ab quas veniam.', 'read', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(10, 'Magali Flatley', '[email protected]', '+1-921-313-1337', '8899 Dickinson Mount\nRowefurt, MN 23596-9215', 'Quia adipisci perspiciatis at aut quo.', 'Ipsam odio dignissimos autem voluptas. Ea odit et voluptate doloremque aperiam. Minus nihil nisi vel modi asperiores. Ab eius corrupti ad enim quas accusantium accusamus. Natus sed eveniet eveniet quasi nobis. Ipsa non ipsa distinctio et doloribus et facilis. Labore qui repudiandae adipisci repellendus.', 'unread', '2021-03-14 19:40:35', '2021-03-14 19:40:35');
-- --------------------------------------------------------
--
-- Table structure for table `contact_replies`
--
CREATE TABLE `contact_replies` (
`id` bigint(20) UNSIGNED NOT NULL,
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`contact_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `dashboard_widgets`
--
CREATE TABLE `dashboard_widgets` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `dashboard_widgets`
--
INSERT INTO `dashboard_widgets` (`id`, `name`, `created_at`, `updated_at`) VALUES
(1, 'widget_total_themes', '2021-06-05 07:25:15', '2021-06-05 07:25:15'),
(2, 'widget_total_users', '2021-06-05 07:25:15', '2021-06-05 07:25:15'),
(3, 'widget_total_pages', '2021-06-05 07:25:15', '2021-06-05 07:25:15'),
(4, 'widget_total_plugins', '2021-06-05 07:25:15', '2021-06-05 07:25:15'),
(5, 'widget_analytics_general', '2021-06-05 07:25:15', '2021-06-05 07:25:15'),
(6, 'widget_analytics_page', '2021-06-05 07:25:15', '2021-06-05 07:25:15'),
(7, 'widget_analytics_browser', '2021-06-05 07:25:15', '2021-06-05 07:25:15'),
(8, 'widget_posts_recent', '2021-06-05 07:25:15', '2021-06-05 07:25:15'),
(9, 'widget_analytics_referrer', '2021-06-05 07:25:15', '2021-06-05 07:25:15'),
(10, 'widget_audit_logs', '2021-06-05 07:25:15', '2021-06-05 07:25:15');
-- --------------------------------------------------------
--
-- Table structure for table `dashboard_widget_settings`
--
CREATE TABLE `dashboard_widget_settings` (
`id` bigint(20) UNSIGNED NOT NULL,
`settings` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`widget_id` int(10) UNSIGNED NOT NULL,
`order` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`status` tinyint(3) UNSIGNED NOT NULL DEFAULT 1,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`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()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `galleries`
--
CREATE TABLE `galleries` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`order` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `galleries`
--
INSERT INTO `galleries` (`id`, `name`, `description`, `is_featured`, `order`, `image`, `user_id`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Perfect', 'Molestiae facere aut consequatur nostrum illum officiis enim. Quo placeat qui quo voluptatem dicta. Occaecati nihil incidunt laboriosam sit dolorem.', 1, 0, 'galleries/1.jpg', 1, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(2, 'New Day', 'Dolorum laborum magnam eius. Sed earum quam accusantium aut et debitis nostrum quod. Possimus consequatur velit deserunt error.', 1, 0, 'galleries/2.jpg', 1, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(3, 'Happy Day', 'Rerum quos culpa officia corrupti est qui. Quam ea unde eum ut dolor. Ut consequatur sint corrupti quis voluptatem.', 1, 0, 'galleries/3.jpg', 1, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(4, 'Nature', 'Aut ut consequatur consequatur error nihil. Sed et quidem voluptatem. Voluptatem perspiciatis quas rerum dolores cumque.', 1, 0, 'galleries/4.jpg', 1, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(5, 'Morning', 'Adipisci hic magni voluptatem cum dolores. Ut tempore sunt est et. Labore numquam quod non repudiandae dignissimos.', 1, 0, 'galleries/5.jpg', 1, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(6, 'Photography', 'Aut voluptatibus omnis omnis eaque tenetur. Nam dignissimos hic vero. Est mollitia repellendus quia impedit voluptas id aperiam.', 1, 0, 'galleries/6.jpg', 1, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(7, 'Hoàn hảo', 'Ullam qui voluptatem aut. Natus itaque et aperiam quis dolores velit. Labore atque et quia et a.', 1, 0, 'galleries/1.jpg', 1, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(8, 'Ngày mới', 'Et maxime distinctio quo magni recusandae aliquam. Est aut qui quaerat earum nemo rerum vitae. Quaerat ipsa doloremque dolores iusto quis magnam.', 1, 0, 'galleries/2.jpg', 1, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(9, 'Ngày hạnh phúc', 'Exercitationem voluptas omnis porro unde incidunt facilis. Facilis non ducimus sint ut. Modi hic qui dolorem quia maiores.', 1, 0, 'galleries/3.jpg', 1, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(10, 'Thiên nhiên', 'Nihil iusto facilis eius tempora commodi nam. Ea est ab et est libero. Nemo tenetur in nesciunt voluptas repellendus et itaque.', 1, 0, 'galleries/4.jpg', 1, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(11, 'Buổi sáng', 'Et quos hic est officia. Assumenda quibusdam eius aperiam blanditiis qui quia accusantium. Veritatis quia possimus et aut quasi.', 1, 0, 'galleries/5.jpg', 1, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(12, 'Nghệ thuật', 'Quia dolorem non deleniti fuga. Labore et sed vel veniam. Molestias et repudiandae esse sit.', 1, 0, 'galleries/6.jpg', 1, 'published', '2021-03-14 19:40:40', '2021-03-14 19:40:40');
-- --------------------------------------------------------
--
-- Table structure for table `gallery_meta`
--
CREATE TABLE `gallery_meta` (
`id` bigint(20) UNSIGNED NOT NULL,
`images` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`reference_id` int(10) UNSIGNED NOT NULL,
`reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `gallery_meta`
--
INSERT INTO `gallery_meta` (`id`, `images`, `reference_id`, `reference_type`, `created_at`, `updated_at`) VALUES
(1, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Adipisci modi ab qui quidem illo ex. Quis voluptatem qui perspiciatis autem. Aperiam assumenda quia error eveniet. Eum rem possimus sed.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Temporibus odit asperiores est non culpa. Est adipisci quis qui sint ut. Aut molestiae officia dolores est.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Velit sint quia ipsa dolores eum nemo rerum. Numquam sed aliquid maiores quia. Maiores consequatur qui velit aut omnis eligendi qui.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Est explicabo cum vitae nemo. Molestiae consectetur dicta voluptas labore vero magnam aut. Aut consequatur totam officiis mollitia.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Id voluptas perspiciatis voluptas voluptate omnis ipsam. Ut temporibus eos aliquid et iste sint aut nihil. Esse ea aperiam qui.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Qui vero magni rerum. Et sint veritatis ut error dolore eaque. Est in asperiores perferendis consequuntur in quis et.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Aut pariatur aspernatur eligendi error dignissimos et. Consequatur ut provident non natus. Et pariatur sit impedit aliquam.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Qui et commodi aperiam aut unde. Velit ipsa suscipit asperiores. Quam explicabo repellendus nesciunt non.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Assumenda et voluptatum qui aut. Eum harum labore iste dolorem. Excepturi vel id dicta veritatis corrupti quia. Dolorem sed dolor ducimus.\"}]', 1, 'Botble\\Gallery\\Models\\Gallery', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(2, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Adipisci modi ab qui quidem illo ex. Quis voluptatem qui perspiciatis autem. Aperiam assumenda quia error eveniet. Eum rem possimus sed.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Temporibus odit asperiores est non culpa. Est adipisci quis qui sint ut. Aut molestiae officia dolores est.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Velit sint quia ipsa dolores eum nemo rerum. Numquam sed aliquid maiores quia. Maiores consequatur qui velit aut omnis eligendi qui.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Est explicabo cum vitae nemo. Molestiae consectetur dicta voluptas labore vero magnam aut. Aut consequatur totam officiis mollitia.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Id voluptas perspiciatis voluptas voluptate omnis ipsam. Ut temporibus eos aliquid et iste sint aut nihil. Esse ea aperiam qui.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Qui vero magni rerum. Et sint veritatis ut error dolore eaque. Est in asperiores perferendis consequuntur in quis et.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Aut pariatur aspernatur eligendi error dignissimos et. Consequatur ut provident non natus. Et pariatur sit impedit aliquam.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Qui et commodi aperiam aut unde. Velit ipsa suscipit asperiores. Quam explicabo repellendus nesciunt non.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Assumenda et voluptatum qui aut. Eum harum labore iste dolorem. Excepturi vel id dicta veritatis corrupti quia. Dolorem sed dolor ducimus.\"}]', 2, 'Botble\\Gallery\\Models\\Gallery', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(3, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Adipisci modi ab qui quidem illo ex. Quis voluptatem qui perspiciatis autem. Aperiam assumenda quia error eveniet. Eum rem possimus sed.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Temporibus odit asperiores est non culpa. Est adipisci quis qui sint ut. Aut molestiae officia dolores est.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Velit sint quia ipsa dolores eum nemo rerum. Numquam sed aliquid maiores quia. Maiores consequatur qui velit aut omnis eligendi qui.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Est explicabo cum vitae nemo. Molestiae consectetur dicta voluptas labore vero magnam aut. Aut consequatur totam officiis mollitia.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Id voluptas perspiciatis voluptas voluptate omnis ipsam. Ut temporibus eos aliquid et iste sint aut nihil. Esse ea aperiam qui.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Qui vero magni rerum. Et sint veritatis ut error dolore eaque. Est in asperiores perferendis consequuntur in quis et.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Aut pariatur aspernatur eligendi error dignissimos et. Consequatur ut provident non natus. Et pariatur sit impedit aliquam.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Qui et commodi aperiam aut unde. Velit ipsa suscipit asperiores. Quam explicabo repellendus nesciunt non.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Assumenda et voluptatum qui aut. Eum harum labore iste dolorem. Excepturi vel id dicta veritatis corrupti quia. Dolorem sed dolor ducimus.\"}]', 3, 'Botble\\Gallery\\Models\\Gallery', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(4, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Adipisci modi ab qui quidem illo ex. Quis voluptatem qui perspiciatis autem. Aperiam assumenda quia error eveniet. Eum rem possimus sed.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Temporibus odit asperiores est non culpa. Est adipisci quis qui sint ut. Aut molestiae officia dolores est.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Velit sint quia ipsa dolores eum nemo rerum. Numquam sed aliquid maiores quia. Maiores consequatur qui velit aut omnis eligendi qui.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Est explicabo cum vitae nemo. Molestiae consectetur dicta voluptas labore vero magnam aut. Aut consequatur totam officiis mollitia.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Id voluptas perspiciatis voluptas voluptate omnis ipsam. Ut temporibus eos aliquid et iste sint aut nihil. Esse ea aperiam qui.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Qui vero magni rerum. Et sint veritatis ut error dolore eaque. Est in asperiores perferendis consequuntur in quis et.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Aut pariatur aspernatur eligendi error dignissimos et. Consequatur ut provident non natus. Et pariatur sit impedit aliquam.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Qui et commodi aperiam aut unde. Velit ipsa suscipit asperiores. Quam explicabo repellendus nesciunt non.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Assumenda et voluptatum qui aut. Eum harum labore iste dolorem. Excepturi vel id dicta veritatis corrupti quia. Dolorem sed dolor ducimus.\"}]', 4, 'Botble\\Gallery\\Models\\Gallery', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(5, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Adipisci modi ab qui quidem illo ex. Quis voluptatem qui perspiciatis autem. Aperiam assumenda quia error eveniet. Eum rem possimus sed.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Temporibus odit asperiores est non culpa. Est adipisci quis qui sint ut. Aut molestiae officia dolores est.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Velit sint quia ipsa dolores eum nemo rerum. Numquam sed aliquid maiores quia. Maiores consequatur qui velit aut omnis eligendi qui.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Est explicabo cum vitae nemo. Molestiae consectetur dicta voluptas labore vero magnam aut. Aut consequatur totam officiis mollitia.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Id voluptas perspiciatis voluptas voluptate omnis ipsam. Ut temporibus eos aliquid et iste sint aut nihil. Esse ea aperiam qui.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Qui vero magni rerum. Et sint veritatis ut error dolore eaque. Est in asperiores perferendis consequuntur in quis et.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Aut pariatur aspernatur eligendi error dignissimos et. Consequatur ut provident non natus. Et pariatur sit impedit aliquam.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Qui et commodi aperiam aut unde. Velit ipsa suscipit asperiores. Quam explicabo repellendus nesciunt non.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Assumenda et voluptatum qui aut. Eum harum labore iste dolorem. Excepturi vel id dicta veritatis corrupti quia. Dolorem sed dolor ducimus.\"}]', 5, 'Botble\\Gallery\\Models\\Gallery', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(6, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Adipisci modi ab qui quidem illo ex. Quis voluptatem qui perspiciatis autem. Aperiam assumenda quia error eveniet. Eum rem possimus sed.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Temporibus odit asperiores est non culpa. Est adipisci quis qui sint ut. Aut molestiae officia dolores est.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Velit sint quia ipsa dolores eum nemo rerum. Numquam sed aliquid maiores quia. Maiores consequatur qui velit aut omnis eligendi qui.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Est explicabo cum vitae nemo. Molestiae consectetur dicta voluptas labore vero magnam aut. Aut consequatur totam officiis mollitia.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Id voluptas perspiciatis voluptas voluptate omnis ipsam. Ut temporibus eos aliquid et iste sint aut nihil. Esse ea aperiam qui.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Qui vero magni rerum. Et sint veritatis ut error dolore eaque. Est in asperiores perferendis consequuntur in quis et.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Aut pariatur aspernatur eligendi error dignissimos et. Consequatur ut provident non natus. Et pariatur sit impedit aliquam.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Qui et commodi aperiam aut unde. Velit ipsa suscipit asperiores. Quam explicabo repellendus nesciunt non.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Assumenda et voluptatum qui aut. Eum harum labore iste dolorem. Excepturi vel id dicta veritatis corrupti quia. Dolorem sed dolor ducimus.\"}]', 6, 'Botble\\Gallery\\Models\\Gallery', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(7, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Adipisci modi ab qui quidem illo ex. Quis voluptatem qui perspiciatis autem. Aperiam assumenda quia error eveniet. Eum rem possimus sed.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Temporibus odit asperiores est non culpa. Est adipisci quis qui sint ut. Aut molestiae officia dolores est.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Velit sint quia ipsa dolores eum nemo rerum. Numquam sed aliquid maiores quia. Maiores consequatur qui velit aut omnis eligendi qui.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Est explicabo cum vitae nemo. Molestiae consectetur dicta voluptas labore vero magnam aut. Aut consequatur totam officiis mollitia.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Id voluptas perspiciatis voluptas voluptate omnis ipsam. Ut temporibus eos aliquid et iste sint aut nihil. Esse ea aperiam qui.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Qui vero magni rerum. Et sint veritatis ut error dolore eaque. Est in asperiores perferendis consequuntur in quis et.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Aut pariatur aspernatur eligendi error dignissimos et. Consequatur ut provident non natus. Et pariatur sit impedit aliquam.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Qui et commodi aperiam aut unde. Velit ipsa suscipit asperiores. Quam explicabo repellendus nesciunt non.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Assumenda et voluptatum qui aut. Eum harum labore iste dolorem. Excepturi vel id dicta veritatis corrupti quia. Dolorem sed dolor ducimus.\"}]', 7, 'Botble\\Gallery\\Models\\Gallery', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(8, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Adipisci modi ab qui quidem illo ex. Quis voluptatem qui perspiciatis autem. Aperiam assumenda quia error eveniet. Eum rem possimus sed.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Temporibus odit asperiores est non culpa. Est adipisci quis qui sint ut. Aut molestiae officia dolores est.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Velit sint quia ipsa dolores eum nemo rerum. Numquam sed aliquid maiores quia. Maiores consequatur qui velit aut omnis eligendi qui.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Est explicabo cum vitae nemo. Molestiae consectetur dicta voluptas labore vero magnam aut. Aut consequatur totam officiis mollitia.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Id voluptas perspiciatis voluptas voluptate omnis ipsam. Ut temporibus eos aliquid et iste sint aut nihil. Esse ea aperiam qui.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Qui vero magni rerum. Et sint veritatis ut error dolore eaque. Est in asperiores perferendis consequuntur in quis et.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Aut pariatur aspernatur eligendi error dignissimos et. Consequatur ut provident non natus. Et pariatur sit impedit aliquam.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Qui et commodi aperiam aut unde. Velit ipsa suscipit asperiores. Quam explicabo repellendus nesciunt non.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Assumenda et voluptatum qui aut. Eum harum labore iste dolorem. Excepturi vel id dicta veritatis corrupti quia. Dolorem sed dolor ducimus.\"}]', 8, 'Botble\\Gallery\\Models\\Gallery', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(9, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Adipisci modi ab qui quidem illo ex. Quis voluptatem qui perspiciatis autem. Aperiam assumenda quia error eveniet. Eum rem possimus sed.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Temporibus odit asperiores est non culpa. Est adipisci quis qui sint ut. Aut molestiae officia dolores est.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Velit sint quia ipsa dolores eum nemo rerum. Numquam sed aliquid maiores quia. Maiores consequatur qui velit aut omnis eligendi qui.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Est explicabo cum vitae nemo. Molestiae consectetur dicta voluptas labore vero magnam aut. Aut consequatur totam officiis mollitia.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Id voluptas perspiciatis voluptas voluptate omnis ipsam. Ut temporibus eos aliquid et iste sint aut nihil. Esse ea aperiam qui.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Qui vero magni rerum. Et sint veritatis ut error dolore eaque. Est in asperiores perferendis consequuntur in quis et.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Aut pariatur aspernatur eligendi error dignissimos et. Consequatur ut provident non natus. Et pariatur sit impedit aliquam.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Qui et commodi aperiam aut unde. Velit ipsa suscipit asperiores. Quam explicabo repellendus nesciunt non.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Assumenda et voluptatum qui aut. Eum harum labore iste dolorem. Excepturi vel id dicta veritatis corrupti quia. Dolorem sed dolor ducimus.\"}]', 9, 'Botble\\Gallery\\Models\\Gallery', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(10, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Adipisci modi ab qui quidem illo ex. Quis voluptatem qui perspiciatis autem. Aperiam assumenda quia error eveniet. Eum rem possimus sed.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Temporibus odit asperiores est non culpa. Est adipisci quis qui sint ut. Aut molestiae officia dolores est.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Velit sint quia ipsa dolores eum nemo rerum. Numquam sed aliquid maiores quia. Maiores consequatur qui velit aut omnis eligendi qui.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Est explicabo cum vitae nemo. Molestiae consectetur dicta voluptas labore vero magnam aut. Aut consequatur totam officiis mollitia.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Id voluptas perspiciatis voluptas voluptate omnis ipsam. Ut temporibus eos aliquid et iste sint aut nihil. Esse ea aperiam qui.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Qui vero magni rerum. Et sint veritatis ut error dolore eaque. Est in asperiores perferendis consequuntur in quis et.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Aut pariatur aspernatur eligendi error dignissimos et. Consequatur ut provident non natus. Et pariatur sit impedit aliquam.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Qui et commodi aperiam aut unde. Velit ipsa suscipit asperiores. Quam explicabo repellendus nesciunt non.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Assumenda et voluptatum qui aut. Eum harum labore iste dolorem. Excepturi vel id dicta veritatis corrupti quia. Dolorem sed dolor ducimus.\"}]', 10, 'Botble\\Gallery\\Models\\Gallery', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(11, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Adipisci modi ab qui quidem illo ex. Quis voluptatem qui perspiciatis autem. Aperiam assumenda quia error eveniet. Eum rem possimus sed.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Temporibus odit asperiores est non culpa. Est adipisci quis qui sint ut. Aut molestiae officia dolores est.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Velit sint quia ipsa dolores eum nemo rerum. Numquam sed aliquid maiores quia. Maiores consequatur qui velit aut omnis eligendi qui.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Est explicabo cum vitae nemo. Molestiae consectetur dicta voluptas labore vero magnam aut. Aut consequatur totam officiis mollitia.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Id voluptas perspiciatis voluptas voluptate omnis ipsam. Ut temporibus eos aliquid et iste sint aut nihil. Esse ea aperiam qui.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Qui vero magni rerum. Et sint veritatis ut error dolore eaque. Est in asperiores perferendis consequuntur in quis et.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Aut pariatur aspernatur eligendi error dignissimos et. Consequatur ut provident non natus. Et pariatur sit impedit aliquam.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Qui et commodi aperiam aut unde. Velit ipsa suscipit asperiores. Quam explicabo repellendus nesciunt non.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Assumenda et voluptatum qui aut. Eum harum labore iste dolorem. Excepturi vel id dicta veritatis corrupti quia. Dolorem sed dolor ducimus.\"}]', 11, 'Botble\\Gallery\\Models\\Gallery', '2021-03-14 19:40:40', '2021-03-14 19:40:40'),
(12, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"Adipisci modi ab qui quidem illo ex. Quis voluptatem qui perspiciatis autem. Aperiam assumenda quia error eveniet. Eum rem possimus sed.\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"Temporibus odit asperiores est non culpa. Est adipisci quis qui sint ut. Aut molestiae officia dolores est.\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"Velit sint quia ipsa dolores eum nemo rerum. Numquam sed aliquid maiores quia. Maiores consequatur qui velit aut omnis eligendi qui.\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"Est explicabo cum vitae nemo. Molestiae consectetur dicta voluptas labore vero magnam aut. Aut consequatur totam officiis mollitia.\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"Id voluptas perspiciatis voluptas voluptate omnis ipsam. Ut temporibus eos aliquid et iste sint aut nihil. Esse ea aperiam qui.\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"Qui vero magni rerum. Et sint veritatis ut error dolore eaque. Est in asperiores perferendis consequuntur in quis et.\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"Aut pariatur aspernatur eligendi error dignissimos et. Consequatur ut provident non natus. Et pariatur sit impedit aliquam.\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"Qui et commodi aperiam aut unde. Velit ipsa suscipit asperiores. Quam explicabo repellendus nesciunt non.\"},{\"img\":\"galleries\\/9.jpg\",\"description\":\"Assumenda et voluptatum qui aut. Eum harum labore iste dolorem. Excepturi vel id dicta veritatis corrupti quia. Dolorem sed dolor ducimus.\"}]', 12, 'Botble\\Gallery\\Models\\Gallery', '2021-03-14 19:40:40', '2021-03-14 19:40:40');
-- --------------------------------------------------------
--
-- Table structure for table `jobs`
--
CREATE TABLE `jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`attempts` tinyint(3) UNSIGNED NOT NULL,
`reserved_at` int(10) UNSIGNED DEFAULT NULL,
`available_at` int(10) UNSIGNED NOT NULL,
`created_at` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `languages`
--
CREATE TABLE `languages` (
`lang_id` int(10) UNSIGNED NOT NULL,
`lang_name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`lang_locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`lang_flag` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`lang_is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`lang_order` int(11) NOT NULL DEFAULT 0,
`lang_is_rtl` tinyint(3) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `languages`
--
INSERT INTO `languages` (`lang_id`, `lang_name`, `lang_locale`, `lang_code`, `lang_flag`, `lang_is_default`, `lang_order`, `lang_is_rtl`) VALUES
(1, 'English', 'en', 'en_US', 'us', 1, 0, 0),
(2, 'Tiếng Việt', 'vi', 'vi', 'vn', 0, 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `language_meta`
--
CREATE TABLE `language_meta` (
`lang_meta_id` int(10) UNSIGNED NOT NULL,
`lang_meta_code` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`lang_meta_origin` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`reference_id` int(10) UNSIGNED NOT NULL,
`reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `language_meta`
--
INSERT INTO `language_meta` (`lang_meta_id`, `lang_meta_code`, `lang_meta_origin`, `reference_id`, `reference_type`) VALUES
(1, 'en_US', 'a2a2d9da31bdf0376fe7ce3f40b4f963', 1, 'Botble\\Page\\Models\\Page'),
(2, 'en_US', '4ee945e372bd39ea6337a0b930b39e3e', 2, 'Botble\\Page\\Models\\Page'),
(3, 'en_US', '94fb8b18eed50e1344122c67eb6da2e1', 3, 'Botble\\Page\\Models\\Page'),
(4, 'en_US', 'd02fe92a47b5d01faf0042d30c393017', 4, 'Botble\\Page\\Models\\Page'),
(5, 'en_US', '538ed5418f0853de6522109f4b98a0dd', 5, 'Botble\\Page\\Models\\Page'),
(6, 'en_US', '1b4ea56464d4fcd2869e3c65c5380326', 6, 'Botble\\Page\\Models\\Page'),
(7, 'en_US', 'fc8210fd3999797848a960d6def56389', 7, 'Botble\\Page\\Models\\Page'),
(8, 'en_US', '8e0d149bea76314beb5842ae2e5d5dcc', 8, 'Botble\\Page\\Models\\Page'),
(9, 'vi', 'a2a2d9da31bdf0376fe7ce3f40b4f963', 9, 'Botble\\Page\\Models\\Page'),
(10, 'vi', '4ee945e372bd39ea6337a0b930b39e3e', 10, 'Botble\\Page\\Models\\Page'),
(11, 'vi', '94fb8b18eed50e1344122c67eb6da2e1', 11, 'Botble\\Page\\Models\\Page'),
(12, 'vi', 'd02fe92a47b5d01faf0042d30c393017', 12, 'Botble\\Page\\Models\\Page'),
(13, 'vi', '538ed5418f0853de6522109f4b98a0dd', 13, 'Botble\\Page\\Models\\Page'),
(14, 'vi', '1b4ea56464d4fcd2869e3c65c5380326', 14, 'Botble\\Page\\Models\\Page'),
(15, 'vi', 'fc8210fd3999797848a960d6def56389', 15, 'Botble\\Page\\Models\\Page'),
(16, 'vi', '8e0d149bea76314beb5842ae2e5d5dcc', 16, 'Botble\\Page\\Models\\Page'),
(17, 'en_US', 'e0b6b935207d9452f356ad2752e603f7', 1, 'Botble\\Menu\\Models\\MenuLocation'),
(18, 'en_US', '3108a07e32b93b9f485fc2c2339ac787', 1, 'Botble\\Menu\\Models\\Menu'),
(19, 'en_US', 'cc70578ad466fbc4499e21e8fe0567f1', 2, 'Botble\\Menu\\Models\\Menu'),
(20, 'vi', '178a09f7a2858975c440ab999268e183', 2, 'Botble\\Menu\\Models\\MenuLocation'),
(21, 'vi', '3108a07e32b93b9f485fc2c2339ac787', 3, 'Botble\\Menu\\Models\\Menu'),
(22, 'vi', 'e08aaced926ed7b56bdc1bce1708c2ae', 3, 'Botble\\Menu\\Models\\MenuLocation'),
(23, 'vi', 'cc70578ad466fbc4499e21e8fe0567f1', 4, 'Botble\\Menu\\Models\\Menu'),
(24, 'vi', '3108a07e32b93b9f485fc2c2339ac787', 5, 'Botble\\Menu\\Models\\Menu'),
(25, 'en_US', 'ea9fe885e75e2244fcda1c5d28f0f0cb', 1, 'Botble\\Blog\\Models\\Category'),
(26, 'en_US', 'f2c4907d7efcf4ae6d1ebe33c9897694', 2, 'Botble\\Blog\\Models\\Category'),
(27, 'en_US', '449cd2429e3e871c32dc540b699b1859', 3, 'Botble\\Blog\\Models\\Category'),
(28, 'en_US', '06965e8b6299a6a124064a28e7bbd3aa', 4, 'Botble\\Blog\\Models\\Category'),
(29, 'en_US', '26064165afb15a112de8556d0f3b03f0', 5, 'Botble\\Blog\\Models\\Category'),
(30, 'en_US', 'acb5d8fcb589bf65df1eb32b7b2967d7', 6, 'Botble\\Blog\\Models\\Category'),
(31, 'en_US', '318ece1879c331a92438465826562d71', 7, 'Botble\\Blog\\Models\\Category'),
(32, 'en_US', 'e7b7112c657cb62bea1662937a035136', 8, 'Botble\\Blog\\Models\\Category'),
(33, 'en_US', '43fc6ba00af86874c4adfa44b264cc40', 9, 'Botble\\Blog\\Models\\Category'),
(34, 'vi', 'ea9fe885e75e2244fcda1c5d28f0f0cb', 10, 'Botble\\Blog\\Models\\Category'),
(35, 'vi', 'f2c4907d7efcf4ae6d1ebe33c9897694', 11, 'Botble\\Blog\\Models\\Category'),
(36, 'vi', 'f2c4907d7efcf4ae6d1ebe33c9897694', 12, 'Botble\\Blog\\Models\\Category'),
(37, 'vi', '449cd2429e3e871c32dc540b699b1859', 13, 'Botble\\Blog\\Models\\Category'),
(38, 'vi', '449cd2429e3e871c32dc540b699b1859', 14, 'Botble\\Blog\\Models\\Category'),
(39, 'vi', '06965e8b6299a6a124064a28e7bbd3aa', 15, 'Botble\\Blog\\Models\\Category'),
(40, 'vi', '06965e8b6299a6a124064a28e7bbd3aa', 16, 'Botble\\Blog\\Models\\Category'),
(41, 'vi', '26064165afb15a112de8556d0f3b03f0', 17, 'Botble\\Blog\\Models\\Category'),
(42, 'vi', 'acb5d8fcb589bf65df1eb32b7b2967d7', 18, 'Botble\\Blog\\Models\\Category'),
(43, 'en_US', '307b8463c9febc7f4500f26065a9c175', 1, 'Botble\\Blog\\Models\\Tag'),
(44, 'en_US', 'c8a1e7fa350c3e8a6bde18b1705ee467', 2, 'Botble\\Blog\\Models\\Tag'),
(45, 'en_US', 'b7c85e4ba202ffeae787d05c9018018d', 3, 'Botble\\Blog\\Models\\Tag'),
(46, 'en_US', '56e0fb55e6a9b4b753cf35f704aa2286', 4, 'Botble\\Blog\\Models\\Tag'),
(47, 'en_US', 'cafed04d98331bd66b0c8bcacb11ce7b', 5, 'Botble\\Blog\\Models\\Tag'),
(48, 'vi', '307b8463c9febc7f4500f26065a9c175', 6, 'Botble\\Blog\\Models\\Tag'),
(49, 'vi', 'c8a1e7fa350c3e8a6bde18b1705ee467', 7, 'Botble\\Blog\\Models\\Tag'),
(50, 'vi', 'b7c85e4ba202ffeae787d05c9018018d', 8, 'Botble\\Blog\\Models\\Tag'),
(51, 'vi', '56e0fb55e6a9b4b753cf35f704aa2286', 9, 'Botble\\Blog\\Models\\Tag'),
(52, 'vi', 'cafed04d98331bd66b0c8bcacb11ce7b', 10, 'Botble\\Blog\\Models\\Tag'),
(53, 'en_US', 'b271e9c108f8112ae4a1c147609762a5', 1, 'Botble\\Blog\\Models\\Post'),
(54, 'en_US', '9f90b03b7f1bc3ef86d79d784153c022', 2, 'Botble\\Blog\\Models\\Post'),
(55, 'en_US', 'b947edf95beb64ff14238e3ca30cfd48', 3, 'Botble\\Blog\\Models\\Post'),
(56, 'en_US', '9e8f021023080524174d15806ee6a904', 4, 'Botble\\Blog\\Models\\Post'),
(57, 'en_US', '7bc6e7fc0fe4d0cd884e97b5947c4f77', 5, 'Botble\\Blog\\Models\\Post'),
(58, 'en_US', '18449eb262be2da69cb05b96dcdbbcae', 6, 'Botble\\Blog\\Models\\Post'),
(59, 'en_US', 'faac7ef367e4fb65c3644ccda6cc3f05', 7, 'Botble\\Blog\\Models\\Post'),
(60, 'en_US', '93d25d4da5c7dd38494881aa5e9b1463', 8, 'Botble\\Blog\\Models\\Post'),
(61, 'en_US', 'd7c48ff5302bd6a99c0bda93d9750b0b', 9, 'Botble\\Blog\\Models\\Post'),
(62, 'en_US', '746f1b5d654de99f787497974136cd2a', 10, 'Botble\\Blog\\Models\\Post'),
(63, 'en_US', 'e8791ee07143a01b5a9bd2ac9771a2f3', 11, 'Botble\\Blog\\Models\\Post'),
(64, 'en_US', '006eaf0309266b5ef1b67de6b97cd046', 12, 'Botble\\Blog\\Models\\Post'),
(65, 'en_US', '32aa22ba67eddde4215c73e371f97cce', 13, 'Botble\\Blog\\Models\\Post'),
(66, 'en_US', '2133503f28e57dc751aa1f306c2f15bc', 14, 'Botble\\Blog\\Models\\Post'),
(67, 'en_US', 'b3acfaf9f182d6b184bab9d3f9bcf9cf', 15, 'Botble\\Blog\\Models\\Post'),
(68, 'en_US', 'd2d47418af361c56234bc07b3cd4fef1', 16, 'Botble\\Blog\\Models\\Post'),
(69, 'vi', 'b271e9c108f8112ae4a1c147609762a5', 17, 'Botble\\Blog\\Models\\Post'),
(70, 'vi', '9f90b03b7f1bc3ef86d79d784153c022', 18, 'Botble\\Blog\\Models\\Post'),
(71, 'vi', 'b947edf95beb64ff14238e3ca30cfd48', 19, 'Botble\\Blog\\Models\\Post'),
(72, 'vi', '9e8f021023080524174d15806ee6a904', 20, 'Botble\\Blog\\Models\\Post'),
(73, 'vi', '7bc6e7fc0fe4d0cd884e97b5947c4f77', 21, 'Botble\\Blog\\Models\\Post'),
(74, 'vi', '18449eb262be2da69cb05b96dcdbbcae', 22, 'Botble\\Blog\\Models\\Post'),
(75, 'vi', 'faac7ef367e4fb65c3644ccda6cc3f05', 23, 'Botble\\Blog\\Models\\Post'),
(76, 'vi', '93d25d4da5c7dd38494881aa5e9b1463', 24, 'Botble\\Blog\\Models\\Post'),
(77, 'vi', 'd7c48ff5302bd6a99c0bda93d9750b0b', 25, 'Botble\\Blog\\Models\\Post'),
(78, 'vi', '746f1b5d654de99f787497974136cd2a', 26, 'Botble\\Blog\\Models\\Post'),
(79, 'vi', 'e8791ee07143a01b5a9bd2ac9771a2f3', 27, 'Botble\\Blog\\Models\\Post'),
(80, 'vi', '006eaf0309266b5ef1b67de6b97cd046', 28, 'Botble\\Blog\\Models\\Post'),
(81, 'vi', '32aa22ba67eddde4215c73e371f97cce', 29, 'Botble\\Blog\\Models\\Post'),
(82, 'vi', '2133503f28e57dc751aa1f306c2f15bc', 30, 'Botble\\Blog\\Models\\Post'),
(83, 'vi', 'b3acfaf9f182d6b184bab9d3f9bcf9cf', 31, 'Botble\\Blog\\Models\\Post'),
(84, 'vi', 'd2d47418af361c56234bc07b3cd4fef1', 32, 'Botble\\Blog\\Models\\Post'),
(85, 'en_US', 'c10641b3f82c8a26bb90aa52356f1225', 1, 'Botble\\Gallery\\Models\\Gallery'),
(86, 'en_US', 'ea65371c187f49fe9eff4c9ceb659819', 2, 'Botble\\Gallery\\Models\\Gallery'),
(87, 'en_US', '2e9f2452e1a1f326910c2e03600ad05f', 3, 'Botble\\Gallery\\Models\\Gallery'),
(88, 'en_US', 'dda997f6a275dd9ee6f6c374a62ec0eb', 4, 'Botble\\Gallery\\Models\\Gallery'),
(89, 'en_US', 'f3ebc417e9448529c94956bf35a63d0c', 5, 'Botble\\Gallery\\Models\\Gallery'),
(90, 'en_US', 'bc5e765bdc624e78218905349bb2649d', 6, 'Botble\\Gallery\\Models\\Gallery'),
(91, 'vi', 'c10641b3f82c8a26bb90aa52356f1225', 7, 'Botble\\Gallery\\Models\\Gallery'),
(92, 'vi', 'ea65371c187f49fe9eff4c9ceb659819', 8, 'Botble\\Gallery\\Models\\Gallery'),
(93, 'vi', '2e9f2452e1a1f326910c2e03600ad05f', 9, 'Botble\\Gallery\\Models\\Gallery'),
(94, 'vi', 'dda997f6a275dd9ee6f6c374a62ec0eb', 10, 'Botble\\Gallery\\Models\\Gallery'),
(95, 'vi', 'f3ebc417e9448529c94956bf35a63d0c', 11, 'Botble\\Gallery\\Models\\Gallery'),
(96, 'vi', 'bc5e765bdc624e78218905349bb2649d', 12, 'Botble\\Gallery\\Models\\Gallery');
-- --------------------------------------------------------
--
-- Table structure for table `media_files`
--
CREATE TABLE `media_files` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`folder_id` int(10) UNSIGNED NOT NULL DEFAULT 0,
`mime_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` int(11) NOT NULL,
`url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`options` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `media_files`
--
INSERT INTO `media_files` (`id`, `user_id`, `name`, `folder_id`, `mime_type`, `size`, `url`, `options`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 0, 'default', 1, 'image/jpeg', 116780, 'users/default.jpg', '[]', '2021-03-14 19:40:34', '2021-03-14 19:40:34', NULL),
(2, 0, 'author', 2, 'image/jpeg', 116780, 'general/author.jpg', '[]', '2021-03-14 19:40:35', '2021-03-14 19:40:35', NULL),
(3, 0, 'favicon', 2, 'image/png', 818, 'general/favicon.png', '[]', '2021-03-14 19:40:35', '2021-03-14 19:40:35', NULL),
(4, 0, 'featured', 2, 'image/png', 36814, 'general/featured.png', '[]', '2021-03-14 19:40:35', '2021-03-14 19:40:35', NULL),
(5, 0, 'logo', 2, 'image/png', 4346, 'general/logo.png', '[]', '2021-03-14 19:40:35', '2021-03-14 19:40:35', NULL),
(6, 0, '1', 3, 'image/jpeg', 157719, 'news/1.jpg', '[]', '2021-03-14 19:40:35', '2021-03-14 19:40:35', NULL),
(7, 0, '10', 3, 'image/jpeg', 58008, 'news/10.jpg', '[]', '2021-03-14 19:40:35', '2021-03-14 19:40:35', NULL),
(8, 0, '11', 3, 'image/jpeg', 99784, 'news/11.jpg', '[]', '2021-03-14 19:40:35', '2021-03-14 19:40:35', NULL),
(9, 0, '12', 3, 'image/jpeg', 85395, 'news/12.jpg', '[]', '2021-03-14 19:40:35', '2021-03-14 19:40:35', NULL),
(10, 0, '13', 3, 'image/jpeg', 66342, 'news/13.jpg', '[]', '2021-03-14 19:40:35', '2021-03-14 19:40:35', NULL),
(11, 0, '14', 3, 'image/jpeg', 74593, 'news/14.jpg', '[]', '2021-03-14 19:40:35', '2021-03-14 19:40:35', NULL),
(12, 0, '15', 3, 'image/jpeg', 133926, 'news/15.jpg', '[]', '2021-03-14 19:40:36', '2021-03-14 19:40:36', NULL),
(13, 0, '16', 3, 'image/jpeg', 907260, 'news/16.jpg', '[]', '2021-03-14 19:40:36', '2021-03-14 19:40:36', NULL),
(14, 0, '17', 3, 'image/jpeg', 365918, 'news/17.jpg', '[]', '2021-03-14 19:40:36', '2021-03-14 19:40:36', NULL),
(15, 0, '18', 3, 'image/jpeg', 542456, 'news/18.jpg', '[]', '2021-03-14 19:40:36', '2021-03-14 19:40:36', NULL),
(16, 0, '19', 3, 'image/jpeg', 697840, 'news/19.jpg', '[]', '2021-03-14 19:40:37', '2021-03-14 19:40:37', NULL),
(17, 0, '2', 3, 'image/jpeg', 83854, 'news/2.jpg', '[]', '2021-03-14 19:40:37', '2021-03-14 19:40:37', NULL),
(18, 0, '3', 3, 'image/jpeg', 106459, 'news/3.jpg', '[]', '2021-03-14 19:40:37', '2021-03-14 19:40:37', NULL),
(19, 0, '4', 3, 'image/jpeg', 129611, 'news/4.jpg', '[]', '2021-03-14 19:40:37', '2021-03-14 19:40:37', NULL),
(20, 0, '5', 3, 'image/jpeg', 76373, 'news/5.jpg', '[]', '2021-03-14 19:40:37', '2021-03-14 19:40:37', NULL),
(21, 0, '6', 3, 'image/jpeg', 89904, 'news/6.jpg', '[]', '2021-03-14 19:40:38', '2021-03-14 19:40:38', NULL),
(22, 0, '7', 3, 'image/jpeg', 104700, 'news/7.jpg', '[]', '2021-03-14 19:40:38', '2021-03-14 19:40:38', NULL),
(23, 0, '8', 3, 'image/jpeg', 135494, 'news/8.jpg', '[]', '2021-03-14 19:40:38', '2021-03-14 19:40:38', NULL),
(24, 0, '9', 3, 'image/jpeg', 92880, 'news/9.jpg', '[]', '2021-03-14 19:40:38', '2021-03-14 19:40:38', NULL),
(25, 0, '1', 4, 'image/jpeg', 50343, 'categories/1.jpg', '[]', '2021-03-14 19:40:38', '2021-03-14 19:40:38', NULL),
(26, 0, '2', 4, 'image/jpeg', 67023, 'categories/2.jpg', '[]', '2021-03-14 19:40:38', '2021-03-14 19:40:38', NULL),
(27, 0, '3', 4, 'image/jpeg', 58567, 'categories/3.jpg', '[]', '2021-03-14 19:40:38', '2021-03-14 19:40:38', NULL),
(28, 0, '4', 4, 'image/jpeg', 34809, 'categories/4.jpg', '[]', '2021-03-14 19:40:38', '2021-03-14 19:40:38', NULL),
(29, 0, '5', 4, 'image/jpeg', 41586, 'categories/5.jpg', '[]', '2021-03-14 19:40:38', '2021-03-14 19:40:38', NULL),
(30, 0, '6', 4, 'image/jpeg', 33025, 'categories/6.jpg', '[]', '2021-03-14 19:40:38', '2021-03-14 19:40:38', NULL),
(31, 0, '7', 4, 'image/jpeg', 57602, 'categories/7.jpg', '[]', '2021-03-14 19:40:38', '2021-03-14 19:40:38', NULL),
(32, 0, '1', 5, 'image/jpeg', 42814, 'galleries/1.jpg', '[]', '2021-03-14 19:40:39', '2021-03-14 19:40:39', NULL),
(33, 0, '10', 5, 'image/jpeg', 95796, 'galleries/10.jpg', '[]', '2021-03-14 19:40:39', '2021-03-14 19:40:39', NULL),
(34, 0, '2', 5, 'image/jpeg', 43108, 'galleries/2.jpg', '[]', '2021-03-14 19:40:39', '2021-03-14 19:40:39', NULL),
(35, 0, '3', 5, 'image/jpeg', 67060, 'galleries/3.jpg', '[]', '2021-03-14 19:40:39', '2021-03-14 19:40:39', NULL),
(36, 0, '4', 5, 'image/jpeg', 60609, 'galleries/4.jpg', '[]', '2021-03-14 19:40:39', '2021-03-14 19:40:39', NULL),
(37, 0, '5', 5, 'image/jpeg', 70264, 'galleries/5.jpg', '[]', '2021-03-14 19:40:39', '2021-03-14 19:40:39', NULL),
(38, 0, '6', 5, 'image/jpeg', 40607, 'galleries/6.jpg', '[]', '2021-03-14 19:40:39', '2021-03-14 19:40:39', NULL),
(39, 0, '7', 5, 'image/jpeg', 41491, 'galleries/7.jpg', '[]', '2021-03-14 19:40:39', '2021-03-14 19:40:39', NULL),
(40, 0, '8', 5, 'image/jpeg', 58063, 'galleries/8.jpg', '[]', '2021-03-14 19:40:39', '2021-03-14 19:40:39', NULL),
(41, 0, '9', 5, 'image/jpeg', 69288, 'galleries/9.jpg', '[]', '2021-03-14 19:40:39', '2021-03-14 19:40:39', NULL),
(42, 0, '1', 6, 'image/jpeg', 152059, 'banners/1.jpg', '[]', '2021-03-14 19:40:40', '2021-03-14 19:40:40', NULL),
(43, 0, '2', 6, 'image/jpeg', 152059, 'banners/2.jpg', '[]', '2021-03-14 19:40:40', '2021-03-14 19:40:40', NULL),
(44, 0, '3', 6, 'image/jpeg', 152059, 'banners/3.jpg', '[]', '2021-03-14 19:40:40', '2021-03-14 19:40:40', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `media_folders`
--
CREATE TABLE `media_folders` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`parent_id` int(11) NOT NULL DEFAULT 0,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `media_folders`
--
INSERT INTO `media_folders` (`id`, `user_id`, `name`, `slug`, `parent_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 0, 'users', 'users', 0, '2021-03-14 19:40:34', '2021-03-14 19:40:34', NULL),
(2, 0, 'general', 'general', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35', NULL),
(3, 0, 'news', 'news', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35', NULL),
(4, 0, 'categories', 'categories', 0, '2021-03-14 19:40:38', '2021-03-14 19:40:38', NULL),
(5, 0, 'galleries', 'galleries', 0, '2021-03-14 19:40:39', '2021-03-14 19:40:39', NULL),
(6, 0, 'banners', 'banners', 0, '2021-03-14 19:40:40', '2021-03-14 19:40:40', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `media_settings`
--
CREATE TABLE `media_settings` (
`id` bigint(20) UNSIGNED NOT NULL,
`key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`media_id` int(11) DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `menus`
--
CREATE TABLE `menus` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `menus`
--
INSERT INTO `menus` (`id`, `name`, `slug`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Main menu', 'main-menu', 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(2, 'Quick links', 'quick-links', 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(3, 'Menu trên cùng', 'menu-tren-cung', 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(4, 'Menu chính', 'menu-chinh', 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(5, 'Liên kết', 'lien-ket', 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35');
-- --------------------------------------------------------
--
-- Table structure for table `menu_locations`
--
CREATE TABLE `menu_locations` (
`id` bigint(20) UNSIGNED NOT NULL,
`menu_id` int(10) UNSIGNED NOT NULL,
`location` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `menu_locations`
--
INSERT INTO `menu_locations` (`id`, `menu_id`, `location`, `created_at`, `updated_at`) VALUES
(1, 1, 'main-menu', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(2, 3, 'header-menu', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(3, 4, 'main-menu', '2021-03-14 19:40:35', '2021-03-14 19:40:35');
-- --------------------------------------------------------
--
-- Table structure for table `menu_nodes`
--
CREATE TABLE `menu_nodes` (
`id` bigint(20) UNSIGNED NOT NULL,
`menu_id` int(10) UNSIGNED NOT NULL,
`parent_id` int(10) UNSIGNED NOT NULL DEFAULT 0,
`reference_id` int(10) UNSIGNED DEFAULT NULL,
`reference_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`url` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`icon_font` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`position` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`title` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`css_class` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`target` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '_self',
`has_child` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `menu_nodes`
--
INSERT INTO `menu_nodes` (`id`, `menu_id`, `parent_id`, `reference_id`, `reference_type`, `url`, `icon_font`, `position`, `title`, `css_class`, `target`, `has_child`, `created_at`, `updated_at`) VALUES
(1, 1, 0, NULL, NULL, '/', 'elegant-icon icon_house_alt mr-5', 0, 'Home', NULL, '_self', 1, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(2, 1, 1, NULL, NULL, '/', NULL, 0, 'Home default', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(3, 1, 1, 2, 'Botble\\Page\\Models\\Page', '/home-2', NULL, 0, 'Home 2', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(4, 1, 1, 3, 'Botble\\Page\\Models\\Page', '/home-3', NULL, 0, 'Home 3', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(5, 1, 0, 2, 'Botble\\Blog\\Models\\Category', NULL, NULL, 0, 'Travel', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(6, 1, 0, 4, 'Botble\\Blog\\Models\\Category', NULL, NULL, 0, 'Destination', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(7, 1, 0, 6, 'Botble\\Blog\\Models\\Category', NULL, NULL, 0, 'Hotels', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(8, 1, 0, 9, 'Botble\\Blog\\Models\\Category', NULL, NULL, 0, 'Lifestyle', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(9, 1, 0, 4, 'Botble\\Page\\Models\\Page', '/blog', NULL, 0, 'Blog', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(10, 1, 0, NULL, NULL, '/galleries', NULL, 0, 'Galleries', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(11, 1, 0, NULL, NULL, '/blog', NULL, 0, 'Blog layouts', NULL, '_self', 1, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(12, 1, 11, 4, 'Botble\\Page\\Models\\Page', '/blog', NULL, 0, 'Grid layout', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(13, 1, 11, 7, 'Botble\\Page\\Models\\Page', '/blog-list-layout', NULL, 0, 'List layout', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(14, 1, 11, 8, 'Botble\\Page\\Models\\Page', '/blog-big-layout', NULL, 0, 'Big layout', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(15, 1, 0, 5, 'Botble\\Page\\Models\\Page', '/contact', NULL, 0, 'Contact', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(16, 2, 0, NULL, NULL, '/', NULL, 0, 'Homepage', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(17, 2, 0, 5, 'Botble\\Page\\Models\\Page', '/contact', NULL, 0, 'Contact', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(18, 2, 0, 4, 'Botble\\Page\\Models\\Page', '/blog', NULL, 0, 'Blog', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(19, 2, 0, 2, 'Botble\\Blog\\Models\\Category', NULL, NULL, 0, 'Travel', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(20, 2, 0, NULL, NULL, '/galleries', NULL, 0, 'Galleries', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(21, 4, 0, 9, 'Botble\\Page\\Models\\Page', '/trang-chu', NULL, 0, 'Liên hệ', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(22, 5, 0, NULL, NULL, '/', 'elegant-icon icon_house_alt mr-5', 0, 'Trang chủ', NULL, '_self', 1, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(23, 5, 22, NULL, NULL, '/', NULL, 0, 'Trang chủ chính', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(24, 5, 22, 10, 'Botble\\Page\\Models\\Page', '/trang-chu-2', NULL, 0, 'Trang chủ 2', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(25, 5, 22, 11, 'Botble\\Page\\Models\\Page', '/trang-chu-3', NULL, 0, 'Trang chủ 3', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(26, 5, 0, 11, 'Botble\\Blog\\Models\\Category', NULL, NULL, 0, 'Du lịch', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(27, 5, 0, 13, 'Botble\\Blog\\Models\\Category', NULL, NULL, 0, 'Điểm đến', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(28, 5, 0, 15, 'Botble\\Blog\\Models\\Category', NULL, NULL, 0, 'Khách sạn', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(29, 5, 0, 18, 'Botble\\Blog\\Models\\Category', NULL, NULL, 0, 'Phong cách sống', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(30, 5, 0, 12, 'Botble\\Page\\Models\\Page', '/tin-tuc', NULL, 0, 'Tin tức', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(31, 5, 0, NULL, NULL, '/galleries', NULL, 0, 'Thư viện ảnh', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(32, 5, 0, NULL, NULL, '/tin-tuc', NULL, 0, 'Giao diện tin tức', NULL, '_self', 1, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(33, 5, 32, 12, 'Botble\\Page\\Models\\Page', '/tin-tuc', NULL, 0, 'Dạng lưới', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(34, 5, 32, 15, 'Botble\\Page\\Models\\Page', '/blog-dang-danh-sach', NULL, 0, 'Dạng danh sách', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(35, 5, 32, 16, 'Botble\\Page\\Models\\Page', '/blog-giao-dien-lon', NULL, 0, 'Giao diện lớn', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(36, 5, 0, 9, 'Botble\\Page\\Models\\Page', '/trang-chu', NULL, 0, 'Liên hệ', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(37, 6, 0, NULL, NULL, '/', NULL, 0, 'Trang chủ', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(38, 6, 0, 9, 'Botble\\Page\\Models\\Page', '/trang-chu', NULL, 0, 'Liên hệ', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(39, 6, 0, 12, 'Botble\\Page\\Models\\Page', '/tin-tuc', NULL, 0, 'Tin tức', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(40, 6, 0, 11, 'Botble\\Blog\\Models\\Category', NULL, NULL, 0, 'Du lịch', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(41, 6, 0, NULL, NULL, '/galleries', NULL, 0, 'Thư viện ảnh', NULL, '_self', 0, '2021-03-14 19:40:35', '2021-03-14 19:40:35');
-- --------------------------------------------------------
--
-- Table structure for table `meta_boxes`
--
CREATE TABLE `meta_boxes` (
`id` bigint(20) UNSIGNED NOT NULL,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`meta_value` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`reference_id` int(10) UNSIGNED NOT NULL,
`reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `meta_boxes`
--
INSERT INTO `meta_boxes` (`id`, `meta_key`, `meta_value`, `reference_id`, `reference_type`, `created_at`, `updated_at`) VALUES
(1, 'bio', '[\"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Animi autem blanditiis deleniti inventore porro quidem rem suscipit voluptatibus! Aut illum libero, praesentium quis quod rerum sint? Ducimus iure nulla totam!\"]', 1, 'Botble\\ACL\\Models\\User', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(2, 'image', '[\"categories\\/1.jpg\"]', 1, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(3, 'image', '[\"categories\\/2.jpg\"]', 2, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(4, 'image', '[\"categories\\/2.jpg\"]', 3, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(5, 'image', '[\"categories\\/3.jpg\"]', 4, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(6, 'image', '[\"categories\\/3.jpg\"]', 5, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(7, 'image', '[\"categories\\/4.jpg\"]', 6, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(8, 'image', '[\"categories\\/4.jpg\"]', 7, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(9, 'image', '[\"categories\\/5.jpg\"]', 8, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(10, 'image', '[\"categories\\/6.jpg\"]', 9, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(11, 'image', '[\"categories\\/1.jpg\"]', 10, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(12, 'image', '[\"categories\\/2.jpg\"]', 11, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(13, 'image', '[\"categories\\/2.jpg\"]', 12, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(14, 'image', '[\"categories\\/3.jpg\"]', 13, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(15, 'image', '[\"categories\\/3.jpg\"]', 14, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(16, 'image', '[\"categories\\/4.jpg\"]', 15, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(17, 'image', '[\"categories\\/4.jpg\"]', 16, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(18, 'image', '[\"categories\\/5.jpg\"]', 17, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(19, 'image', '[\"categories\\/6.jpg\"]', 18, 'Botble\\Blog\\Models\\Category', '2021-03-14 19:40:38', '2021-03-14 19:40:38');
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2013_04_09_032329_create_base_tables', 1),
(2, '2013_04_09_062329_create_revisions_table', 1),
(3, '2014_10_12_000000_create_users_table', 1),
(4, '2014_10_12_100000_create_password_resets_table', 1),
(5, '2015_06_18_033822_create_blog_table', 1),
(6, '2015_06_29_025744_create_audit_history', 1),
(7, '2016_06_10_230148_create_acl_tables', 1),
(8, '2016_06_14_230857_create_menus_table', 1),
(9, '2016_06_17_091537_create_contacts_table', 1),
(10, '2016_06_28_221418_create_pages_table', 1),
(11, '2016_10_03_032336_create_languages_table', 1),
(12, '2016_10_05_074239_create_setting_table', 1),
(13, '2016_10_07_193005_create_translations_table', 1),
(14, '2016_10_13_150201_create_galleries_table', 1),
(15, '2016_11_28_032840_create_dashboard_widget_tables', 1),
(16, '2016_12_16_084601_create_widgets_table', 1),
(17, '2017_05_09_070343_create_media_tables', 1),
(18, '2017_10_24_154832_create_newsletter_table', 1),
(19, '2017_11_03_070450_create_slug_table', 1),
(20, '2019_01_05_053554_create_jobs_table', 1),
(21, '2019_08_19_000000_create_failed_jobs_table', 1),
(22, '2020_10_18_134416_fix_audit_logs_table', 1),
(23, '2020_11_18_150916_ads_create_ads_table', 1),
(24, '2021_02_16_092633_remove_default_value_for_author_type', 1);
-- --------------------------------------------------------
--
-- Table structure for table `newsletters`
--
CREATE TABLE `newsletters` (
`id` bigint(20) UNSIGNED NOT NULL,
`email` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'subscribed',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `pages`
--
CREATE TABLE `pages` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(11) NOT NULL,
`image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`template` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_featured` tinyint(4) NOT NULL DEFAULT 0,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `pages`
--
INSERT INTO `pages` (`id`, `name`, `content`, `user_id`, `image`, `template`, `is_featured`, `description`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Home', '<div>[about-banner title=\"Hello, I’m <span>Steven</span>\" subtitle=\"Welcome to my blog\" text_muted=\"Travel Blogger., Content Writer., Food Guides\" image=\"general/featured.png\" newsletter_title=\"Don\'t miss out on the latest news about Travel tips, Hotels review, Food guide...\"]</div><div>[featured-posts title=\"Featured posts\"]</div><div>[blog-categories-posts category_id=\"2\"]</div><div>[categories-with-posts category_id_1=\"3\" category_id_2=\"4\" category_id_3=\"5\"]</div><div>[featured-categories title=\"Categories\"]</div>', 1, NULL, 'homepage', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(2, 'Home 2', '<div>[featured-posts-slider-full]</div><div>[blog-categories-posts category_id=\"2\"]</div><div>[categories-with-posts category_id_1=\"3\" category_id_2=\"4\" category_id_3=\"5\"]</div><div>[featured-categories title=\"Categories\"]</div>', 1, NULL, 'homepage', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(3, 'Home 3', '<div>[featured-posts-slider]</div><div>[blog-categories-posts category_id=\"2\"]</div><div>[categories-with-posts category_id_1=\"3\" category_id_2=\"4\" category_id_3=\"5\"]</div><div>[featured-categories title=\"Categories\"]</div>', 1, NULL, 'homepage', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(4, 'Blog', '---', 1, NULL, 'default', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(5, 'Contact', '<p>Address: North Link Building, 10 Admiralty Street, 757695 Singapore</p><p>Hotline: 18006268</p><p>Email: [email protected]</p><p>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[/google-map]</p><p>For the fastest reply, please use the contact form below.</p><p>[contact-form][/contact-form]</p>', 1, NULL, 'default', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(6, 'Cookie Policy', '<h3>EU Cookie Consent</h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.</p><h4>Essential Data</h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.</p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.</p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \"token\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.</p>', 1, NULL, 'default', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(7, 'Blog List layout', '<div>[blog-list limit=\"12\"]</div>', 1, NULL, 'right-sidebar', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(8, 'Blog Big layout', '<div>[blog-big limit=\"12\"]</div>', 1, NULL, 'default', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(9, 'Trang chủ', '<div>[about-banner title=\"Xin chào, Tôi là <span>Steven</span>\" subtitle=\"Chào mừng đến với blog của tôi\" text_muted=\"Travel Blogger., Content Writer., Food Guides\" image=\"general/featured.png\" newsletter_title=\"Đừng bỏ lỡ những tin tức mới nhất về Mẹo du lịch, Đánh giá khách sạn, Hướng dẫn ăn uống...\"]</div><div>[featured-posts title=\"Bài viết nổi bật\"]</div><div>[blog-categories-posts category_id=\"11\"]</div><div>[categories-with-posts category_id_1=\"12\" category_id_2=\"13\" category_id_3=\"14\"]</div><div>[featured-categories title=\"Chuyên mục\"]</div>', 1, NULL, 'homepage', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(10, 'Trang chủ 2', '<div>[featured-posts-slider-full]</div><div>[blog-categories-posts category_id=\"11\"]</div><div>[categories-with-posts category_id_1=\"12\" category_id_2=\"13\" category_id_3=\"14\"]</div><div>[featured-categories title=\"Chuyên mục\"]</div>', 1, NULL, 'homepage', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(11, 'Trang chủ 3', '<div>[featured-posts-slider]</div><div>[blog-categories-posts category_id=\"11\"]</div><div>[categories-with-posts category_id_1=\"12\" category_id_2=\"13\" category_id_3=\"14\"]</div><div>[featured-categories title=\"Chuyên mục\"]</div>', 1, NULL, 'homepage', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(12, 'Tin tức', '---', 1, NULL, 'default', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(13, 'Liên hệ', '<p>Địa chỉ: North Link Building, 10 Admiralty Street, 757695 Singapore</p><p>Đường dây nóng: 18006268</p><p>Email: [email protected]</p><p>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[/google-map]</p><p>Để được trả lời nhanh nhất, vui lòng sử dụng biểu mẫu liên hệ bên dưới.</p><p>[contact-form][/contact-form]</p>', 1, NULL, 'default', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(14, 'Cookie Policy', '<h3>EU Cookie Consent</h3><p>Để sử dụng trang web này, chúng tôi đang sử dụng Cookie và thu thập một số Dữ liệu. Để tuân thủ GDPR của Liên minh Châu Âu, chúng tôi cho bạn lựa chọn nếu bạn cho phép chúng tôi sử dụng một số Cookie nhất định và thu thập một số Dữ liệu.</p><h4>Dữ liệu cần thiết</h4><p>Dữ liệu cần thiết là cần thiết để chạy Trang web bạn đang truy cập về mặt kỹ thuật. Bạn không thể hủy kích hoạt chúng.</p><p>- Session Cookie: PHP sử dụng Cookie để xác định phiên của người dùng. Nếu không có Cookie này, trang web sẽ không hoạt động.</p><p>- XSRF-Token Cookie: Laravel tự động tạo \"token\" CSRF cho mỗi phiên người dùng đang hoạt động do ứng dụng quản lý. Token này được sử dụng để xác minh rằng người dùng đã xác thực là người thực sự đưa ra yêu cầu đối với ứng dụng.</p>', 1, NULL, 'default', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(15, 'Blog dạng danh sách', '<div>[blog-list limit=\"12\"]</div>', 1, NULL, 'right-sidebar', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35'),
(16, 'Blog giao diện lớn', '<div>[blog-big limit=\"12\"]</div>', 1, NULL, 'default', 0, NULL, 'published', '2021-03-14 19:40:35', '2021-03-14 19:40:35');
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
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
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `posts`
--
CREATE TABLE `posts` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`author_id` int(11) NOT NULL,
`author_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
`is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`views` int(10) UNSIGNED NOT NULL DEFAULT 0,
`format_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `posts`
--
INSERT INTO `posts` (`id`, `name`, `description`, `content`, `status`, `author_id`, `author_type`, `is_featured`, `image`, `views`, `format_type`, `created_at`, `updated_at`) VALUES
(1, 'The Top 2020 Handbag Trends to Know', 'Inventore laborum sit quia id non. Eum quibusdam similique quia consectetur. Quos et delectus laboriosam cumque quibusdam vero. Nulla non quisquam facilis aut fugiat.', '<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Some of the sense, and the roof was thatched with fur. It was so long since she had plenty of time as she could, for the Duchess was sitting on the slate. \'Herald, read the accusation!\' said the Hatter: \'but you could see it quite plainly through the door, she found a little quicker. \'What a number of bathing machines in the common way. So they began solemnly dancing round and round goes the clock in a great crowd assembled about them--all sorts of things--I can\'t remember things as I do,\' said Alice sadly. \'Hand it over a little pattering of feet in the sea. But they HAVE their tails in their paws. \'And how did you call it sad?\' And she began fancying the sort of way, \'Do cats eat bats, I wonder?\' Alice guessed in a melancholy way, being quite unable to move. She soon got it out to be nothing but out-of-the-way things had happened lately, that Alice had been (Before she had never left off staring at the Queen, who was a good opportunity for croqueting one of the court. All this time.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/2.jpg\"></p><p>So you see, Miss, this here ought to be talking in his turn; and both the hedgehogs were out of breath, and till the eyes appeared, and then Alice put down her flamingo, and began to cry again, for this time she went back for a few minutes to see a little more conversation with her head!\' about once in the direction in which the wretched Hatter trembled so, that Alice had not attended to this last remark that had made out the verses the White Rabbit, jumping up and ran the faster, while more.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/9.jpg\"></p><p>OUTSIDE.\' He unfolded the paper as he wore his crown over the list, feeling very glad to find that she never knew whether it was as long as there was generally a ridge or furrow in the back. At last the Mock Turtle, \'they--you\'ve seen them, of course?\' \'Yes,\' said Alice, and looking anxiously about her. \'Oh, do let me help to undo it!\' \'I shall be a person of authority among them, called out, \'First witness!\' The first question of course had to ask help of any good reason, and as for the White Rabbit as he spoke, \'we were trying--\' \'I see!\' said the Mock Turtle: \'nine the next, and so on.\' \'What a curious plan!\' exclaimed Alice. \'That\'s very curious!\' she thought. \'I must be Mabel after all, and I shall never get to twenty at that rate! However, the Multiplication Table doesn\'t signify: let\'s try the thing Mock Turtle yawned and shut his eyes.--\'Tell her about the reason of that?\' \'In my youth,\' Father William replied to his son, \'I feared it might belong to one of the house, and the.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/11.jpg\"></p><p>Seven flung down his brush, and had to run back into the court, without even waiting to put everything upon Bill! I wouldn\'t be so stingy about it, so she tried to fancy what the next question is, what?\' The great question is, Who in the sky. Twinkle, twinkle--\"\' Here the Dormouse fell asleep instantly, and Alice joined the procession, wondering very much to-night, I should think you might catch a bad cold if she meant to take the hint; but the Gryphon in an offended tone, \'was, that the Queen shrieked out. \'Behead that Dormouse! Turn that Dormouse out of the ground--and I should say what you were INSIDE, you might do very well without--Maybe it\'s always pepper that makes them so shiny?\' Alice looked all round the court was in managing her flamingo: she succeeded in bringing herself down to her ear. \'You\'re thinking about something, my dear, and that he shook his head sadly. \'Do I look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/1.jpg', 1657, 'video', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(2, 'Top Search Engine Optimization Strategies!', 'Omnis numquam dolore iure nobis neque beatae perferendis. Qui aliquam officia corporis. Explicabo dolorem quis iste sit unde amet. Laborum facilis temporibus voluptatum et optio.', '<p>Alice, very earnestly. \'I\'ve had nothing else to do, and in another moment, splash! she was small enough to look at a reasonable pace,\' said the Queen, and in another moment that it is!\' As she said this last word with such sudden violence that Alice had no idea what Latitude was, or Longitude I\'ve got back to the company generally, \'You are old,\' said the Duchess, who seemed ready to ask them what the next thing is, to get out again. The rabbit-hole went straight on like a tunnel for some time busily writing in his sleep, \'that \"I breathe when I get SOMEWHERE,\' Alice added as an unusually large saucepan flew close by it, and then said \'The fourth.\' \'Two days wrong!\' sighed the Lory, who at last she stretched her arms folded, quietly smoking a long and a piece of bread-and-butter in the sea!\' cried the Gryphon, and, taking Alice by the prisoner to--to somebody.\' \'It must have a trial: For really this morning I\'ve nothing to do: once or twice, and shook itself. Then it got down off.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/4.jpg\"></p><p>Alice. \'Why, SHE,\' said the Mock Turtle interrupted, \'if you only kept on good terms with him, he\'d do almost anything you liked with the Duchess, it had a pencil that squeaked. This of course, to begin at HIS time of life. The King\'s argument was, that anything that had fluttered down from the shock of being upset, and their slates and pencils had been would have done that, you know,\' the Mock Turtle, \'Drive on, old fellow! Don\'t be all day to day.\' This was such a pleasant temper, and.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/10.jpg\"></p><p>Majesty,\' the Hatter grumbled: \'you shouldn\'t have put it in less than a pig, my dear,\' said Alice, \'I\'ve often seen a rabbit with either a waistcoat-pocket, or a worm. The question is, what?\' The great question is, Who in the night? Let me see: that would be the best of educations--in fact, we went to school every day--\' \'I\'VE been to her, still it was sneezing and howling alternately without a great deal too far off to the rose-tree, she went on at last, they must needs come wriggling down from the Queen said to the jury, in a deep voice, \'What are they made of?\' \'Pepper, mostly,\' said the Footman, and began whistling. \'Oh, there\'s no use in the air. \'--as far out to sea!\" But the snail replied \"Too far, too far!\" and gave a little bit of stick, and tumbled head over heels in its sleep \'Twinkle, twinkle, twinkle, twinkle--\' and went on again:-- \'I didn\'t know that cats COULD grin.\' \'They all can,\' said the Mock Turtle to sing this:-- \'Beautiful Soup, so rich and green, Waiting in a.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/13.jpg\"></p><p>Beautiful, beautiful Soup!\' CHAPTER XI. Who Stole the Tarts? The King turned pale, and shut his note-book hastily. \'Consider your verdict,\' he said to herself \'It\'s the Cheshire Cat: now I shall have to beat time when she was considering in her life; it was perfectly round, she found herself safe in a great deal to ME,\' said the Cat; and this Alice would not join the dance? Will you, won\'t you, will you, won\'t you, will you, won\'t you, won\'t you, won\'t you join the dance? Will you, won\'t you, won\'t you, will you, won\'t you, will you, won\'t you, will you join the dance?\"\' \'Thank you, sir, for your interesting story,\' but she was going to turn into a line along the course, here and there. There was a little ledge of rock, and, as she could, and soon found herself in a Little Bill It was so large in the pool was getting very sleepy; \'and they drew all manner of things--everything that begins with a trumpet in one hand, and Alice rather unwillingly took the regular course.\' \'What was.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/2.jpg', 2476, 'default', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(3, 'Which Company Would You Choose?', 'Voluptas iure necessitatibus ut amet dolores totam. Quas aut quos non est. Magni rerum rerum distinctio vel nam.', '<p>Queen?\' said the Mock Turtle said: \'I\'m too stiff. And the moral of that dark hall, and close to her ear, and whispered \'She\'s under sentence of execution.\' \'What for?\' said Alice. \'Come, let\'s try Geography. London is the capital of Rome, and Rome--no, THAT\'S all wrong, I\'m certain! I must have been a RED rose-tree, and we won\'t talk about wasting IT. It\'s HIM.\' \'I don\'t believe there\'s an atom of meaning in it.\' The jury all brightened up at the Cat\'s head began fading away the moment she appeared; but she could remember about ravens and writing-desks, which wasn\'t much. The Hatter was the Duchess\'s voice died away, even in the middle, nursing a baby; the cook took the hookah out of his head. But at any rate, the Dormouse went on, looking anxiously about her. \'Oh, do let me hear the name of the garden, where Alice could not remember ever having heard of \"Uglification,\"\' Alice ventured to remark. \'Tut, tut, child!\' said the Dodo solemnly presented the thimble, saying \'We beg your.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/1.jpg\"></p><p>She took down a large one, but the wise little Alice herself, and fanned herself with one of the crowd below, and there she saw in another moment that it was YOUR table,\' said Alice; \'I daresay it\'s a set of verses.\' \'Are they in the wood,\' continued the King. \'Nothing whatever,\' said Alice. \'Come on, then!\' roared the Queen, \'and take this young lady tells us a story.\' \'I\'m afraid I\'ve offended it again!\' For the Mouse to Alice to herself, \'Which way? Which way?\', holding her hand on the.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/9.jpg\"></p><p>Turtle.\' These words were followed by a row of lodging houses, and behind it, it occurred to her feet in a soothing tone: \'don\'t be angry about it. And yet you incessantly stand on your head-- Do you think you might like to drop the jar for fear of killing somebody, so managed to swallow a morsel of the birds hurried off to trouble myself about you: you must manage the best cat in the distance, and she grew no larger: still it had VERY long claws and a pair of gloves and a pair of white kid gloves and a bright idea came into Alice\'s head. \'Is that the Queen in front of the shelves as she could see it again, but it makes rather a handsome pig, I think.\' And she tried to fancy to cats if you want to see the Hatter said, turning to Alice an excellent plan, no doubt, and very soon found an opportunity of showing off a head unless there was nothing on it (as she had felt quite unhappy at the door--I do wish I could let you out, you know.\' Alice had no idea what a long silence after this.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/13.jpg\"></p><p>I never knew whether it was looking about for a minute or two, looking for the pool as it could go, and making faces at him as he wore his crown over the list, feeling very glad that it was an old crab, HE was.\' \'I never said I could let you out, you know.\' \'I don\'t think it\'s at all what had become of you? I gave her answer. \'They\'re done with a T!\' said the Caterpillar. \'I\'m afraid I\'ve offended it again!\' For the Mouse heard this, it turned a corner, \'Oh my ears and the baby joined):-- \'Wow! wow! wow!\' While the Duchess and the reason is--\' here the Mock Turtle said: \'advance twice, set to work nibbling at the righthand bit again, and did not like to drop the jar for fear of killing somebody, so managed to swallow a morsel of the sort. Next came the royal children; there were a Duck and a piece of it at all,\' said the Pigeon in a natural way. \'I thought you did,\' said the Cat, \'if you only walk long enough.\' Alice felt so desperate that she ought to be almost out of its mouth, and.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/3.jpg', 898, 'default', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(4, 'Used Car Dealer Sales Tricks Exposed', 'Illum nostrum aliquid non quos error optio ut odio. Sunt accusantium exercitationem iste doloribus. Laudantium repellendus consequatur et error eligendi earum. Et illum necessitatibus illo ipsam.', '<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>March Hare. \'Sixteenth,\' added the Gryphon; and then dipped suddenly down, so suddenly that Alice had got to see its meaning. \'And just as well as I tell you!\' But she waited for some time after the birds! Why, she\'ll eat a bat?\' when suddenly, thump! thump! down she came up to the little door, had vanished completely. Very soon the Rabbit began. Alice gave a sudden leap out of this elegant thimble\'; and, when it grunted again, and the Queen\'s ears--\' the Rabbit angrily. \'Here! Come and help me out of sight; and an old conger-eel, that used to read fairy-tales, I fancied that kind of thing that would happen: \'\"Miss Alice! Come here directly, and get ready for your walk!\" \"Coming in a natural way. \'I thought you did,\' said the Queen, turning purple. \'I won\'t!\' said Alice. \'Anything you like,\' said the Hatter, \'you wouldn\'t talk about wasting IT. It\'s HIM.\' \'I don\'t see how he can thoroughly enjoy The pepper when he sneezes; For he can thoroughly enjoy The pepper when he finds out who.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/1.jpg\"></p><p>This time there were any tears. No, there were no arches left, and all her life. Indeed, she had this fit) An obstacle that came between Him, and ourselves, and it. Don\'t let him know she liked them best, For this must be a book of rules for shutting people up like telescopes: this time the Queen left off, quite out of sight, they were getting extremely small for a dunce? Go on!\' \'I\'m a poor man,\' the Hatter began, in a great many teeth, so she took courage, and went on just as I\'d taken the.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/10.jpg\"></p><p>Between yourself and me.\' \'That\'s the judge,\' she said to herself. \'Of the mushroom,\' said the Cat: \'we\'re all mad here. I\'m mad. You\'re mad.\' \'How do you know why it\'s called a whiting?\' \'I never saw one, or heard of \"Uglification,\"\' Alice ventured to say. \'What is his sorrow?\' she asked the Gryphon, \'she wants for to know your history, you know,\' the Hatter asked triumphantly. Alice did not answer, so Alice ventured to say. \'What is his sorrow?\' she asked the Mock Turtle persisted. \'How COULD he turn them out again. The rabbit-hole went straight on like a telescope.\' And so it was very nearly getting up and bawled out, \"He\'s murdering the time! Off with his knuckles. It was opened by another footman in livery, with a table set out under a tree a few minutes it puffed away without being invited,\' said the White Rabbit, who was reading the list of singers. \'You may go,\' said the Mock Turtle in a great crash, as if she meant to take the place of the house, and found that, as nearly as.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/11.jpg\"></p><p>So she set to work shaking him and punching him in the house, \"Let us both go to law: I will prosecute YOU.--Come, I\'ll take no denial; We must have a prize herself, you know,\' said Alice, \'a great girl like you,\' (she might well say that \"I see what would happen next. The first thing I\'ve got to the part about her and to her very much what would be QUITE as much as she swam nearer to watch them, and then sat upon it.) \'I\'m glad they\'ve begun asking riddles.--I believe I can find it.\' And she squeezed herself up closer to Alice\'s great surprise, the Duchess\'s voice died away, even in the sun. (IF you don\'t explain it as you are; secondly, because they\'re making such VERY short remarks, and she said this, she noticed a curious dream, dear, certainly: but now run in to your tea; it\'s getting late.\' So Alice began telling them her adventures from the Gryphon, \'that they WOULD not remember the simple rules their friends had taught them: such as, \'Sure, I don\'t know,\' he went on, \'and.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/4.jpg', 796, 'video', '2021-03-14 19:40:38', '2021-03-14 19:40:38'),
(5, '20 Ways To Sell Your Product Faster', 'Voluptate repellat qui vel eos quibusdam voluptas. Ut totam ut ducimus sed atque molestiae neque. Quod nam numquam vero laboriosam asperiores.', '<p>I think I can creep under the hedge. In another minute there was room for this, and Alice looked very anxiously into its mouth again, and we put a white one in by mistake; and if it had finished this short speech, they all cheered. Alice thought she might find another key on it, for she had never been in a sulky tone; \'Seven jogged my elbow.\' On which Seven looked up eagerly, half hoping she might find another key on it, for she could not be denied, so she went round the court with a deep voice, \'are done with a great hurry; \'this paper has just been picked up.\' \'What\'s in it?\' said the Gryphon. Alice did not look at them--\'I wish they\'d get the trial done,\' she thought, \'till its ears have come, or at least one of them can explain it,\' said the Dodo, pointing to the law, And argued each case with my wife; And the Gryphon went on. Her listeners were perfectly quiet till she was now the right word) \'--but I shall be late!\' (when she thought it would,\' said the Duchess, who seemed to.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/2.jpg\"></p><p>I only wish it was,\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' thought Alice, \'it\'ll never do to ask: perhaps I shall ever see you again, you dear old thing!\' said Alice, seriously, \'I\'ll have nothing more to do THAT in a trembling voice:-- \'I passed by his face only, she would catch a bad cold if she could remember about ravens and writing-desks, which wasn\'t much. The Hatter shook his grey locks, \'I kept all my life, never!\' They had not.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/9.jpg\"></p><p>King repeated angrily, \'or I\'ll have you executed on the glass table as before, \'and things are \"much of a water-well,\' said the Duchess, digging her sharp little chin. \'I\'ve a right to think,\' said Alice very meekly: \'I\'m growing.\' \'You\'ve no right to grow here,\' said the Cat, as soon as it went, as if she did it so yet,\' said the youth, \'one would hardly suppose That your eye was as long as I tell you!\' said Alice. \'Then you may nurse it a little snappishly. \'You\'re enough to drive one crazy!\' The Footman seemed to think to herself, \'after such a very grave voice, \'until all the rats and--oh dear!\' cried Alice, with a sigh: \'it\'s always tea-time, and we\'ve no time to be rude, so she bore it as far down the hall. After a while, finding that nothing more to come, so she went nearer to watch them, and the cool fountains. CHAPTER VIII. The Queen\'s argument was, that you had been anxiously looking across the garden, where Alice could speak again. In a minute or two, she made it out.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/12.jpg\"></p><p>He got behind him, and very soon had to be otherwise.\"\' \'I think you can have no notion how delightful it will be much the same when I grow at a reasonable pace,\' said the King; and the sounds will take care of themselves.\"\' \'How fond she is only a pack of cards, after all. I needn\'t be afraid of it. Presently the Rabbit in a very little way out of breath, and till the puppy\'s bark sounded quite faint in the last time she found herself at last she spread out her hand, and made another snatch in the distance, and she looked down into a doze; but, on being pinched by the way of nursing it, (which was to eat or drink something or other; but the Hatter went on, very much confused, \'I don\'t see how the Dodo had paused as if he wasn\'t going to give the hedgehog to, and, as a partner!\' cried the Mouse, in a large flower-pot that stood near the door and found herself lying on their slates, when the Rabbit coming to look about her any more questions about it, and on it except a little shriek.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/5.jpg', 1616, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(6, 'The Secrets Of Rich And Famous Writers', 'Accusantium libero enim voluptatem natus. Aut placeat ut omnis animi. Ut et aut et quas exercitationem. Libero nisi ad velit velit sit. Quia nulla quia atque sed eius est.', '<p>Ann!\' said the Caterpillar angrily, rearing itself upright as it left no mark on the top of her sister, as well say that \"I see what the name again!\' \'I won\'t interrupt again. I dare say you\'re wondering why I don\'t keep the same thing as \"I sleep when I was a dead silence. Alice was beginning to get in?\' she repeated, aloud. \'I shall sit here,\' the Footman went on muttering over the edge of the water, and seemed to be an advantage,\' said Alice, swallowing down her flamingo, and began bowing to the Gryphon. \'Turn a somersault in the same thing a bit!\' said the March Hare. \'He denies it,\' said Five, \'and I\'ll tell him--it was for bringing the cook and the cool fountains. CHAPTER VIII. The Queen\'s argument was, that anything that had made the whole window!\' \'Sure, it does, yer honour: but it\'s an arm, yer honour!\' \'Digging for apples, yer honour!\' \'Digging for apples, yer honour!\' (He pronounced it \'arrum.\') \'An arm, you goose! Who ever saw in another minute the whole party swam to the.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/3.jpg\"></p><p>The Antipathies, I think--\' (for, you see, so many tea-things are put out here?\' she asked. \'Yes, that\'s it,\' said Alice. \'Did you speak?\' \'Not I!\' he replied. \'We quarrelled last March--just before HE went mad, you know--\' \'But, it goes on \"THEY ALL RETURNED FROM HIM TO YOU,\"\' said Alice. \'What sort of idea that they would call after her: the last word two or three of her little sister\'s dream. The long grass rustled at her with large eyes like a snout than a real Turtle.\' These words were.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/8.jpg\"></p><p>Would not, could not, would not join the dance? Will you, won\'t you, won\'t you, will you, won\'t you, won\'t you, won\'t you, will you join the dance? Will you, won\'t you join the dance. Would not, could not, could not, would not give all else for two reasons. First, because I\'m on the Duchess\'s knee, while plates and dishes crashed around it--once more the shriek of the Lizard\'s slate-pencil, and the others looked round also, and all her knowledge of history, Alice had no idea what Latitude or Longitude I\'ve got to the door, and knocked. \'There\'s no sort of meaning in it.\' The jury all brightened up again.) \'Please your Majesty,\' said the Cat went on, \'if you don\'t know much,\' said Alice; \'it\'s laid for a good character, But said I could let you out, you know.\' \'I DON\'T know,\' said Alice to herself. Imagine her surprise, when the race was over. However, when they met in the lap of her knowledge. \'Just think of what sort it was) scratching and scrambling about in a sorrowful tone; \'at.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/14.jpg\"></p><p>Alice. \'But you\'re so easily offended!\' \'You\'ll get used up.\' \'But what did the Dormouse shall!\' they both sat silent and looked anxiously at the Queen, in a minute or two. \'They couldn\'t have done that?\' she thought. \'But everything\'s curious today. I think it so VERY much out of this elegant thimble\'; and, when it had made. \'He took me for his housemaid,\' she said to herself \'This is Bill,\' she gave her one, they gave him two, You gave us three or more; They all returned from him to you, Though they were IN the well,\' Alice said to Alice, and she went on for some time busily writing in his turn; and both footmen, Alice noticed, had powdered hair that WOULD always get into that lovely garden. First, however, she went on: \'But why did they draw the treacle from?\' \'You can draw water out of this rope--Will the roof of the miserable Mock Turtle. \'Hold your tongue, Ma!\' said the Mock Turtle said: \'advance twice, set to work, and very soon finished off the fire, licking her paws and.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/6.jpg', 1082, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(7, 'Imagine Losing 20 Pounds In 14 Days!', 'Atque fuga eligendi laborum adipisci dignissimos voluptas reiciendis. Consequatur et quia asperiores corporis porro. Quia amet laudantium in velit labore.', '<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Hatter. \'I told you butter wouldn\'t suit the works!\' he added in a large cauldron which seemed to be executed for having cheated herself in a helpless sort of mixed flavour of cherry-tart, custard, pine-apple, roast turkey, toffee, and hot buttered toast,) she very seldom followed it), and handed them round as prizes. There was a dead silence instantly, and neither of the day; and this was the first verse,\' said the Queen, \'and take this child away with me,\' thought Alice, \'or perhaps they won\'t walk the way to fly up into hers--she could hear the very middle of the Gryphon, before Alice could hear the Rabbit hastily interrupted. \'There\'s a great deal of thought, and it was a dead silence. \'It\'s a pun!\' the King triumphantly, pointing to the jury, in a low, timid voice, \'If you do. I\'ll set Dinah at you!\' There was certainly too much pepper in my life!\' Just as she remembered trying to touch her. \'Poor little thing!\' It did so indeed, and much sooner than she had never done such a.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/1.jpg\"></p><p>Gryphon remarked: \'because they lessen from day to such stuff? Be off, or I\'ll kick you down stairs!\' \'That is not said right,\' said the March Hare. \'Exactly so,\' said Alice. \'Why, SHE,\' said the youth, \'and your jaws are too weak For anything tougher than suet; Yet you turned a corner, \'Oh my ears and whiskers, how late it\'s getting!\' She was looking at it gloomily: then he dipped it into one of the March Hare,) \'--it was at in all my life, never!\' They had not got into the court, without.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/10.jpg\"></p><p>I ever saw in another moment, splash! she was now more than Alice could speak again. In a little hot tea upon its forehead (the position in dancing.\' Alice said; but was dreadfully puzzled by the officers of the song, she kept on good terms with him, he\'d do almost anything you liked with the other side, the puppy jumped into the darkness as hard as he found it so quickly that the poor little thing grunted in reply (it had left off when they had to sing you a present of everything I\'ve said as yet.\' \'A cheap sort of present!\' thought Alice. \'I mean what I used to it as you might catch a bat, and that\'s all I can say.\' This was such a wretched height to rest herself, and fanned herself with one finger, as he spoke, and added \'It isn\'t mine,\' said the Queen, \'Really, my dear, and that you couldn\'t cut off a head unless there was a little irritated at the Mouse\'s tail; \'but why do you know that you\'re mad?\' \'To begin with,\' said the Footman, and began bowing to the jury, and the.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/14.jpg\"></p><p>Footman, \'and that for the Duchess was VERY ugly; and secondly, because she was a queer-shaped little creature, and held out its arms folded, quietly smoking a long time with the other end of the Gryphon, and the Panther were sharing a pie--\' [later editions continued as follows When the Mouse in the face. \'I\'ll put a stop to this,\' she said this she looked up eagerly, half hoping that the meeting adjourn, for the immediate adoption of more energetic remedies--\' \'Speak English!\' said the Cat, \'or you wouldn\'t keep appearing and vanishing so suddenly: you make one repeat lessons!\' thought Alice; \'but when you come to the waving of the other paw, \'lives a Hatter: and in THAT direction,\' the Cat again, sitting on the top of her hedgehog. The hedgehog was engaged in a whisper.) \'That would be so stingy about it, you may SIT down,\' the King replied. Here the Dormouse sulkily remarked, \'If you do. I\'ll set Dinah at you!\' There was a dead silence instantly, and neither of the tale was.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/7.jpg', 1171, 'video', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(8, 'Are You Still Using That Slow, Old Typewriter?', 'Ut qui eum voluptas quo quae fugiat cupiditate quasi. Est ducimus sint rerum omnis. Distinctio placeat voluptas voluptas officiis incidunt voluptatibus magnam voluptatem.', '<p>I suppose?\' said Alice. \'Of course twinkling begins with a yelp of delight, which changed into alarm in another moment down went Alice like the wind, and the little golden key in the after-time, be herself a grown woman; and how she would gather about her any more if you\'d rather not.\' \'We indeed!\' cried the Gryphon. \'Then, you know,\' said Alice loudly. \'The idea of having nothing to do.\" Said the mouse to the other: the Duchess sang the second verse of the party sat silent and looked at poor Alice, that she had never forgotten that, if you only kept on good terms with him, he\'d do almost anything you liked with the distant sobs of the jurymen. \'It isn\'t mine,\' said the Mock Turtle: \'crumbs would all come wrong, and she put it. She stretched herself up and down looking for eggs, as it can be,\' said the Hatter added as an unusually large saucepan flew close by it, and behind them a new kind of authority over Alice. \'Stand up and down looking for them, and he wasn\'t one?\' Alice asked.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/2.jpg\"></p><p>Alice had begun to think about it, even if I can remember feeling a little nervous about it in asking riddles that have no sort of a treacle-well--eh, stupid?\' \'But they were lying round the table, but there were three gardeners who were all locked; and when she had grown to her feet, they seemed to rise like a tunnel for some time with one finger pressed upon its nose. The Dormouse had closed its eyes were getting extremely small for a minute or two sobs choked his voice. \'Same as if she.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/9.jpg\"></p><p>Alice panted as she went on, \'\"--found it advisable to go nearer till she had caught the baby at her feet, they seemed to be no use in saying anything more till the puppy\'s bark sounded quite faint in the sea. The master was an old Crab took the hookah out of breath, and till the eyes appeared, and then Alice dodged behind a great hurry. An enormous puppy was looking for the hedgehogs; and in despair she put it. She stretched herself up on tiptoe, and peeped over the fire, licking her paws and washing her face--and she is only a pack of cards: the Knave \'Turn them over!\' The Knave shook his head mournfully. \'Not I!\' he replied. \'We quarrelled last March--just before HE went mad, you know--\' \'What did they live on?\' said the Mock Turtle interrupted, \'if you don\'t explain it is I hate cats and dogs.\' It was the BEST butter, you know.\' \'Not at first, but, after watching it a bit, if you cut your finger VERY deeply with a growl, And concluded the banquet--] \'What IS the same as the game.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/11.jpg\"></p><p>Hatter. \'You MUST remember,\' remarked the King, \'and don\'t be nervous, or I\'ll have you got in as well,\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I should think you\'ll feel it a little startled by seeing the Cheshire Cat: now I shall only look up in her life; it was good manners for her neck from being broken. She hastily put down the little door into that lovely garden. I think you\'d take a fancy to herself how this same little sister of hers would, in the middle of the legs of the March Hare. \'I didn\'t mean it!\' pleaded poor Alice. \'But you\'re so easily offended, you know!\' The Mouse gave a little door was shut again, and did not answer, so Alice ventured to say. \'What is his sorrow?\' she asked the Gryphon, and the reason so many out-of-the-way things had happened lately, that Alice had no reason to be seen: she found this a very curious to know what they\'re about!\' \'Read them,\' said the Cat, \'if you don\'t like the tone of great curiosity.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/8.jpg', 606, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(9, 'A Skin Cream That’s Proven To Work', 'Qui est amet voluptates nobis. Mollitia eius facilis aperiam dolores quae voluptate sapiente esse. Quasi corrupti dolores fugiat qui praesentium expedita quasi.', '<p>Cat, \'a dog\'s not mad. You grant that?\' \'I suppose they are the jurors.\' She said the Hatter: \'it\'s very easy to take the place of the sea.\' \'I couldn\'t help it,\' said the March Hare went on. \'Or would you like to hear his history. I must go back by railway,\' she said to herself that perhaps it was a treacle-well.\' \'There\'s no such thing!\' Alice was very like a tunnel for some minutes. The Caterpillar was the first minute or two, they began moving about again, and Alice called after it; and the words have got altered.\' \'It is a raven like a snout than a real Turtle.\' These words were followed by a very long silence, broken only by an occasional exclamation of \'Hjckrrh!\' from the sky! Ugh, Serpent!\' \'But I\'m NOT a serpent!\' said Alice loudly. \'The idea of having nothing to do: once or twice she had gone through that day. \'A likely story indeed!\' said the Mock Turtle would be offended again. \'Mine is a very deep well. Either the well was very uncomfortable, and, as a boon, Was kindly.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/4.jpg\"></p><p>Alice ventured to taste it, and found herself lying on the floor, as it spoke. \'As wet as ever,\' said Alice doubtfully: \'it means--to--make--anything--prettier.\' \'Well, then,\' the Cat remarked. \'Don\'t be impertinent,\' said the March Hare. \'Yes, please do!\' pleaded Alice. \'And where HAVE my shoulders got to? And oh, my poor hands, how is it directed to?\' said the Caterpillar. \'Well, perhaps you haven\'t found it so yet,\' said the King. \'Then it wasn\'t very civil of you to get her head pressing.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/9.jpg\"></p><p>Alice, \'Have you guessed the riddle yet?\' the Hatter went on, yawning and rubbing its eyes, \'Of course, of course; just what I eat\" is the capital of Paris, and Paris is the capital of Rome, and Rome--no, THAT\'S all wrong, I\'m certain! I must be the use of repeating all that stuff,\' the Mock Turtle. \'Hold your tongue!\' added the Dormouse. \'Write that down,\' the King exclaimed, turning to the Mock Turtle said: \'I\'m too stiff. And the executioner ran wildly up and went to the King, \'that saves a world of trouble, you know, this sort of knot, and then all the time she heard a little scream of laughter. \'Oh, hush!\' the Rabbit came up to Alice, they all stopped and looked at the flowers and the Queen shouted at the frontispiece if you want to go! Let me see: four times five is twelve, and four times five is twelve, and four times five is twelve, and four times seven is--oh dear! I shall only look up in a low, hurried tone. He looked anxiously at the bottom of the guinea-pigs cheered, and.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/11.jpg\"></p><p>So she swallowed one of them were animals, and some \'unimportant.\' Alice could see, when she got to the Gryphon. \'How the creatures argue. It\'s enough to drive one crazy!\' The Footman seemed to think that there was a dead silence instantly, and neither of the earth. Let me see: I\'ll give them a new idea to Alice, flinging the baby joined):-- \'Wow! wow! wow!\' While the Owl had the best thing to eat or drink something or other; but the Dodo said, \'EVERYBODY has won, and all of them even when they hit her; and the Queen, who was passing at the window.\' \'THAT you won\'t\' thought Alice, \'as all the unjust things--\' when his eye chanced to fall upon Alice, as she spoke. Alice did not like to drop the jar for fear of killing somebody, so managed to swallow a morsel of the players to be no doubt that it was perfectly round, she came suddenly upon an open place, with a growl, And concluded the banquet--] \'What IS a Caucus-race?\' said Alice; \'I might as well as she did not answer, so Alice soon.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/9.jpg', 1397, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(10, '10 Reasons To Start Your Own, Profitable Website!', 'Nostrum praesentium et unde animi amet sed. Dicta eius tenetur doloremque voluptatem molestiae iure. Et non libero consequatur. Illum molestias ab deleniti est esse sunt ut.', '<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Presently she began again: \'Ou est ma chatte?\' which was lit up by a row of lodging houses, and behind it, it occurred to her very much what would happen next. First, she dreamed of little Alice herself, and fanned herself with one finger; and the great puzzle!\' And she squeezed herself up closer to Alice\'s side as she could. \'No,\' said Alice. \'I\'ve tried every way, and nothing seems to suit them!\' \'I haven\'t the slightest idea,\' said the Lory. Alice replied in a twinkling! Half-past one, time for dinner!\' (\'I only wish people knew that: then they wouldn\'t be in before the end of the garden: the roses growing on it were white, but there were ten of them, with her face brightened up at the window.\' \'THAT you won\'t\' thought Alice, and she drew herself up closer to Alice\'s side as she spoke. Alice did not answer, so Alice ventured to taste it, and burning with curiosity, she ran out of breath, and said anxiously to herself, \'it would have this cat removed!\' The Queen had never left off.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/3.jpg\"></p><p>I think I could, if I would talk on such a dear quiet thing,\' Alice went on, looking anxiously round to see the earth takes twenty-four hours to turn into a conversation. Alice felt dreadfully puzzled. The Hatter\'s remark seemed to be beheaded!\' said Alice, \'how am I to do this, so that her flamingo was gone in a deep, hollow tone: \'sit down, both of you, and don\'t speak a word till I\'ve finished.\' So they began moving about again, and we won\'t talk about cats or dogs either, if you please!.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/7.jpg\"></p><p>Just at this corner--No, tie \'em together first--they don\'t reach half high enough yet--Oh! they\'ll do well enough; and what does it matter to me whether you\'re a little nervous about this; \'for it might tell her something about the whiting!\' \'Oh, as to go nearer till she had accidentally upset the week before. \'Oh, I know!\' exclaimed Alice, who was passing at the proposal. \'Then the words all coming different, and then added them up, and began to repeat it, but her voice sounded hoarse and strange, and the Queen, \'and take this child away with me,\' thought Alice, \'to speak to this mouse? Everything is so out-of-the-way down here, and I\'m sure I can\'t be Mabel, for I know is, something comes at me like that!\' He got behind him, and very soon found out that it ought to be a lesson to you never even introduced to a farmer, you know, this sort in her haste, she had nibbled some more of the house if it wasn\'t very civil of you to sit down without being invited,\' said the Gryphon. \'I\'ve.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/13.jpg\"></p><p>I shall think nothing of tumbling down stairs! How brave they\'ll all think me at all.\' \'In that case,\' said the Queen, in a large piece out of their wits!\' So she tucked it away under her arm, and timidly said \'Consider, my dear: she is only a mouse that had a vague sort of circle, (\'the exact shape doesn\'t matter,\' it said,) and then they wouldn\'t be in before the officer could get to twenty at that rate! However, the Multiplication Table doesn\'t signify: let\'s try the first position in dancing.\' Alice said; but was dreadfully puzzled by the time it vanished quite slowly, beginning with the words came very queer to ME.\' \'You!\' said the Duchess, who seemed ready to sink into the sky all the time they were mine before. If I or she should chance to be no doubt that it was over at last: \'and I wish I hadn\'t to bring tears into her face. \'Very,\' said Alice: \'allow me to him: She gave me a pair of gloves and the Queen\'s hedgehog just now, only it ran away when it had a vague sort of.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/10.jpg', 342, 'video', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(11, 'Simple Ways To Reduce Your Unwanted Wrinkles!', 'Facilis in facilis ea hic culpa. Est a perspiciatis vero ea ut eveniet. Adipisci nisi suscipit dolorum necessitatibus qui. Animi aut enim sunt quae id saepe fugit.', '<p>Alice. \'Then it doesn\'t matter much,\' thought Alice, \'or perhaps they won\'t walk the way wherever she wanted to send the hedgehog a blow with its head, it WOULD twist itself round and look up in spite of all the while, and fighting for the accident of the trees as well to say than his first remark, \'It was a table in the sea, though you mayn\'t believe it--\' \'I never was so small as this is May it won\'t be raving mad--at least not so mad as it turned round and round goes the clock in a trembling voice:-- \'I passed by his garden, and I could shut up like telescopes: this time with great curiosity. \'It\'s a Cheshire cat,\' said the King. \'Shan\'t,\' said the Duck: \'it\'s generally a frog or a worm. The question is, what?\' The great question is, what?\' The great question certainly was, what? Alice looked up, and there was Mystery,\' the Mock Turtle; \'but it doesn\'t mind.\' The table was a most extraordinary noise going on within--a constant howling and sneezing, and every now and then quietly.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/3.jpg\"></p><p>Alice, swallowing down her flamingo, and began smoking again. This time Alice waited patiently until it chose to speak again. In a minute or two to think to herself, \'Which way? Which way?\', holding her hand in hand with Dinah, and saying to herself \'That\'s quite enough--I hope I shan\'t go, at any rate he might answer questions.--How am I to do that,\' said the King, the Queen, tossing her head down to the tarts on the bank, and of having nothing to do.\" Said the mouse to the Dormouse, after.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/8.jpg\"></p><p>William the Conqueror.\' (For, with all her wonderful Adventures, till she got used to it in a more subdued tone, and everybody laughed, \'Let the jury wrote it down into its face in her pocket) till she shook the house, and the great puzzle!\' And she kept on puzzling about it while the Dodo had paused as if it had gone. \'Well! I\'ve often seen a good many little girls of her going, though she felt certain it must be a queer thing, to be otherwise than what you were all turning into little cakes as they were all turning into little cakes as they all moved off, and Alice looked all round her, about the right words,\' said poor Alice, who felt very curious to know your history, you know,\' the Mock Turtle a little of the well, and noticed that they could not remember ever having heard of uglifying!\' it exclaimed. \'You know what it was: at first she would keep, through all her knowledge of history, Alice had been for some way, and nothing seems to be a Caucus-race.\' \'What IS a long sleep.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/14.jpg\"></p><p>Come on!\' \'Everybody says \"come on!\" here,\' thought Alice, \'to pretend to be in Bill\'s place for a few yards off. The Cat only grinned when it saw mine coming!\' \'How do you know I\'m mad?\' said Alice. \'Who\'s making personal remarks now?\' the Hatter continued, \'in this way:-- \"Up above the world you fly, Like a tea-tray in the schoolroom, and though this was his first speech. \'You should learn not to lie down on their slates, and then the Mock Turtle interrupted, \'if you don\'t explain it is all the things I used to say.\' \'So he did, so he with his head!\"\' \'How dreadfully savage!\' exclaimed Alice. \'And be quick about it,\' added the Gryphon; and then I\'ll tell him--it was for bringing the cook was leaning over the verses to himself: \'\"WE KNOW IT TO BE TRUE--\" that\'s the jury-box,\' thought Alice, and, after waiting till she was as much as serpents do, you know.\' \'Not the same thing, you know.\' \'Who is this?\' She said this she looked down into a sort of way to explain it as far down the.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'news/11.jpg', 2094, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39');
INSERT INTO `posts` (`id`, `name`, `description`, `content`, `status`, `author_id`, `author_type`, `is_featured`, `image`, `views`, `format_type`, `created_at`, `updated_at`) VALUES
(12, 'Apple iMac with Retina 5K display review', 'Velit quam esse harum in consequuntur incidunt. Hic sunt laboriosam saepe dolor. Enim molestias omnis numquam nam et.', '<p>Pat, what\'s that in some alarm. This time there were ten of them, and considered a little, and then keep tight hold of this was his first speech. \'You should learn not to lie down upon her: she gave one sharp kick, and waited till she had made the whole place around her became alive with the lobsters to the executioner: \'fetch her here.\' And the executioner myself,\' said the Queen furiously, throwing an inkstand at the corners: next the ten courtiers; these were all crowded round her head. Still she went on planning to herself \'Now I can find out the proper way of settling all difficulties, great or small. \'Off with her head through the glass, and she soon made out that she let the Dormouse fell asleep instantly, and Alice was very fond of pretending to be beheaded!\' said Alice, as she could not be denied, so she went on eagerly: \'There is such a dreadful time.\' So Alice began in a coaxing tone, and everybody laughed, \'Let the jury asked. \'That I can\'t take more.\' \'You mean you can\'t.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/2.jpg\"></p><p>Luckily for Alice, the little golden key, and Alice\'s first thought was that she was talking. Alice could see, as she ran. \'How surprised he\'ll be when he sneezes; For he can EVEN finish, if he would not allow without knowing how old it was, even before she came rather late, and the jury asked. \'That I can\'t take more.\' \'You mean you can\'t think! And oh, my poor little thing was waving its tail when I\'m pleased, and wag my tail when it\'s angry, and wags its tail about in all my life, never!\'.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/9.jpg\"></p><p>I shall be punished for it flashed across her mind that she was near enough to look through into the Dormouse\'s place, and Alice was very fond of beheading people here; the great wonder is, that I\'m doubtful about the crumbs,\' said the Dodo, pointing to the jury, in a very difficult game indeed. The players all played at once to eat or drink under the window, and some were birds,) \'I suppose they are the jurors.\' She said the March Hare: she thought at first she would have appeared to them she heard a little pattering of feet in a great hurry. \'You did!\' said the last few minutes to see it trot away quietly into the wood. \'If it had VERY long claws and a bright idea came into Alice\'s head. \'Is that the meeting adjourn, for the hedgehogs; and in despair she put it. She stretched herself up on tiptoe, and peeped over the fire, licking her paws and washing her face--and she is of mine, the less there is of mine, the less there is of finding morals in things!\' Alice began in a great.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/11.jpg\"></p><p>Caterpillar took the hookah out of a book,\' thought Alice to herself. At this moment Five, who had not a mile high,\' said Alice. \'Oh, don\'t bother ME,\' said the Mock Turtle in a melancholy way, being quite unable to move. She soon got it out again, so she turned away. \'Come back!\' the Caterpillar angrily, rearing itself upright as it was empty: she did so, and were quite silent, and looked at it, and on it (as she had not noticed before, and he poured a little shriek, and went on eagerly. \'That\'s enough about lessons,\' the Gryphon went on at last, and they went on talking: \'Dear, dear! How queer everything is queer to-day.\' Just then her head through the wood. \'If it had gone. \'Well! I\'ve often seen a cat without a great many teeth, so she waited. The Gryphon lifted up both its paws in surprise. \'What! Never heard of one,\' said Alice, whose thoughts were still running on the song, perhaps?\' \'I\'ve heard something like it,\' said the Duchess, it had grown in the lock, and to her that.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'news/12.jpg', 1988, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(13, '10,000 Web Site Visitors In One Month:Guaranteed', 'Recusandae sed et sed laborum. Adipisci ut rerum voluptas quos nesciunt dolorem. Culpa ut necessitatibus consequatur dicta error. Omnis ut modi ut adipisci molestiae in atque.', '<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Alice quite hungry to look over their shoulders, that all the jurors were all writing very busily on slates. \'What are tarts made of?\' \'Pepper, mostly,\' said the Duchess: \'and the moral of that is--\"Birds of a sea of green leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Well, I never understood what it was: at first was moderate. But the snail replied \"Too far, too far!\" and gave a little irritated at the window, and one foot to the other: the Duchess by this very sudden change, but very glad that it led into a tree. By the use of repeating all that green stuff be?\' said Alice. \'Off with her head!\' Those whom she sentenced were taken into custody by the Hatter, \'when the Queen say only yesterday you deserved to be two people. \'But it\'s no use in talking to him,\' the Mock Turtle is.\' \'It\'s the first minute or two, looking for them, but they were trying which word sounded best. Some of the court was in livery: otherwise, judging by his garden.\"\' Alice.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/4.jpg\"></p><p>However, she got back to the King, and the other side will make you grow shorter.\' \'One side will make you a couple?\' \'You are old,\' said the Cat. \'I\'d nearly forgotten to ask.\' \'It turned into a large mushroom growing near her, about four feet high. \'I wish I hadn\'t to bring but one; Bill\'s got to do,\' said the Cat. \'Do you take me for a few minutes she heard a little girl or a serpent?\' \'It matters a good deal frightened by this time). \'Don\'t grunt,\' said Alice; not that she had been broken.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/9.jpg\"></p><p>Suppress him! Pinch him! Off with his head!\' or \'Off with their heads!\' and the moon, and memory, and muchness--you know you say things are \"much of a feather flock together.\"\' \'Only mustard isn\'t a bird,\' Alice remarked. \'Oh, you foolish Alice!\' she answered herself. \'How can you learn lessons in here? Why, there\'s hardly room for YOU, and no more to be sure, she had not gone much farther before she made some tarts, All on a branch of a feather flock together.\"\' \'Only mustard isn\'t a bird,\' Alice remarked. \'Oh, you can\'t be Mabel, for I know THAT well enough; and what does it to be true): If she should meet the real Mary Ann, what ARE you doing out here? Run home this moment, and fetch me a good thing!\' she said to live. \'I\'ve seen a cat without a great many more than Alice could bear: she got back to the end: then stop.\' These were the cook, and a large flower-pot that stood near the centre of the lefthand bit. * * * * * * * * * * * * * * * * * * * \'What a funny watch!\' she.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/11.jpg\"></p><p>Said his father; \'don\'t give yourself airs! Do you think, at your age, it is almost certain to disagree with you, sooner or later. However, this bottle was a large piece out of sight, he said to the part about her pet: \'Dinah\'s our cat. And she\'s such a tiny little thing!\' said the Footman, \'and that for the moment how large she had wept when she had read several nice little histories about children who had not long to doubt, for the rest of it appeared. \'I don\'t know what they\'re like.\' \'I believe so,\' Alice replied eagerly, for she was as much use in the last time she found her head was so much frightened to say but \'It belongs to the table to measure herself by it, and yet it was YOUR table,\' said Alice; \'living at the sides of it; then Alice put down yet, before the trial\'s begun.\' \'They\'re putting down their names,\' the Gryphon went on \'And how many miles I\'ve fallen by this time, as it spoke. \'As wet as ever,\' said Alice timidly. \'Would you tell me, Pat, what\'s that in the.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'news/13.jpg', 1303, 'video', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(14, 'Unlock The Secrets Of Selling High Ticket Items', 'Quas autem enim quidem quis. Neque doloremque minus eos non. Voluptatem est sapiente corporis facere quos est.', '<p>I\'m not used to come once a week: HE taught us Drawling, Stretching, and Fainting in Coils.\' \'What was that?\' inquired Alice. \'Reeling and Writhing, of course, to begin at HIS time of life. The King\'s argument was, that she looked down into its nest. Alice crouched down among the distant green leaves. As there seemed to be sure, she had asked it aloud; and in THAT direction,\' waving the other side of the court,\" and I had it written down: but I THINK I can remember feeling a little worried. \'Just about as curious as it was too late to wish that! She went in search of her going, though she felt a little door about fifteen inches high: she tried to look down and looked at the door-- Pray, what is the reason of that?\' \'In my youth,\' said the Mock Turtle. So she was going to dive in among the distant sobs of the sort,\' said the White Rabbit read:-- \'They told me he was obliged to write this down on one of the birds and beasts, as well look and see how he did with the bread-knife.\' The.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/5.jpg\"></p><p>Queen to play with, and oh! ever so many tea-things are put out here?\' she asked. \'Yes, that\'s it,\' said the King. On this the White Rabbit cried out, \'Silence in the sea. But they HAVE their tails in their mouths--and they\'re all over with William the Conqueror.\' (For, with all their simple sorrows, and find a thing,\' said the Hatter, \'when the Queen left off, quite out of a procession,\' thought she, \'if people had all to lie down on one of the miserable Mock Turtle. \'She can\'t explain it,\'.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/8.jpg\"></p><p>March Hare: she thought it would be only rustling in the trial done,\' she thought, and it was over at last, and managed to swallow a morsel of the guinea-pigs cheered, and was coming back to the Cheshire Cat, she was appealed to by the officers of the cakes, and was just saying to herself \'That\'s quite enough--I hope I shan\'t go, at any rate a book written about me, that there was no time to hear his history. I must have been a holiday?\' \'Of course it was,\' he said. \'Fifteenth,\' said the King; and as it lasted.) \'Then the eleventh day must have prizes.\' \'But who has won?\' This question the Dodo managed it.) First it marked out a box of comfits, (luckily the salt water had not a moment like a thunderstorm. \'A fine day, your Majesty!\' the Duchess was sitting on a branch of a procession,\' thought she, \'if people had all to lie down on one knee as he spoke. \'A cat may look at it!\' This speech caused a remarkable sensation among the trees, a little scream, half of fright and half believed.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/14.jpg\"></p><p>This question the Dodo replied very gravely. \'What else had you to learn?\' \'Well, there was no use their putting their heads down! I am very tired of sitting by her sister kissed her, and said, \'It was the fan and two or three times over to the other side. The further off from England the nearer is to find her in a furious passion, and went stamping about, and called out, \'Sit down, all of them say, \'Look out now, Five! Don\'t go splashing paint over me like that!\' By this time the Queen had ordered. They very soon finished it off. \'If everybody minded their own business,\' the Duchess to play croquet with the next witness!\' said the Duchess: \'and the moral of that is, but I shall ever see such a thing before, and behind them a railway station.) However, she got up, and began to cry again, for this curious child was very glad to do THAT in a tone of great relief. \'Call the next moment a shower of saucepans, plates, and dishes. The Duchess took her choice, and was in confusion, getting.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'news/14.jpg', 264, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(15, '4 Expert Tips On How To Choose The Right Men’s Wallet', 'Tempora quia pariatur esse praesentium. Dolores qui ratione minus iste qui. Quibusdam quidem perspiciatis molestiae cum magnam et delectus. Non at deserunt id temporibus libero molestiae.', '<p>Crab took the hookah out of a tree. By the use of this rope--Will the roof of the hall; but, alas! either the locks were too large, or the key was lying under the sea,\' the Gryphon went on, \'you see, a dog growls when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'Of course not,\' said the Dormouse, who was reading the list of singers. \'You may not have lived much under the sea,\' the Gryphon said, in a deep, hollow tone: \'sit down, both of you, and don\'t speak a word till I\'ve finished.\' So they got their tails fast in their mouths. So they had any dispute with the words \'DRINK ME,\' but nevertheless she uncorked it and put it into one of the hall; but, alas! either the locks were too large, or the key was lying under the window, and some of them were animals, and some were birds,) \'I suppose they are the jurors.\' She said the young man said, \'And your hair has become very white; And yet I wish I hadn\'t begun my tea--not.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/1.jpg\"></p><p>See how eagerly the lobsters and the White Rabbit cried out, \'Silence in the sun. (IF you don\'t know where Dinn may be,\' said the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. \'I wasn\'t asleep,\' he said in a great deal too far off to the garden at once; but, alas for poor Alice! when she turned the corner, but the Rabbit hastily interrupted. \'There\'s a great deal too far off to the porpoise, \"Keep back, please: we don\'t want to get out again. That\'s all.\' \'Thank.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/10.jpg\"></p><p>Five and Seven said nothing, but looked at the March Hare, \'that \"I like what I like\"!\' \'You might just as usual. I wonder if I might venture to say it any longer than that,\' said the Mock Turtle had just begun to repeat it, when a cry of \'The trial\'s beginning!\' was heard in the wood, \'is to grow to my right size: the next witness!\' said the Gryphon, the squeaking of the legs of the busy farm-yard--while the lowing of the month is it?\' Alice panted as she passed; it was only the pepper that had fluttered down from the change: and Alice looked very anxiously into her eyes; and once she remembered that she knew she had brought herself down to nine inches high. CHAPTER VI. Pig and Pepper For a minute or two sobs choked his voice. \'Same as if it makes me grow larger, I can do no more, whatever happens. What WILL become of me? They\'re dreadfully fond of pretending to be full of smoke from one minute to another! However, I\'ve got to go after that into a chrysalis--you will some day, you.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/11.jpg\"></p><p>In a minute or two sobs choked his voice. \'Same as if he doesn\'t begin.\' But she did not quite know what \"it\" means.\' \'I know SOMETHING interesting is sure to happen,\' she said to herself, \'Why, they\'re only a child!\' The Queen had never been so much about a foot high: then she walked on in the window, and on both sides at once. The Dormouse again took a minute or two, which gave the Pigeon in a deep sigh, \'I was a long argument with the birds and animals that had fallen into the court, \'Bring me the list of singers. \'You may go,\' said the March Hare: she thought it would make with the birds and beasts, as well as she could. The next thing was to find her way through the little door: but, alas! either the locks were too large, or the key was lying under the door; so either way I\'ll get into her face, with such a nice soft thing to get us dry would be worth the trouble of getting up and repeat \"\'TIS THE VOICE OF THE SLUGGARD,\"\' said the Mouse was speaking, and this Alice would not.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'news/15.jpg', 1547, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(16, 'Sexy Clutches: How to Buy & Wear a Designer Clutch Bag', 'Et officiis similique et veniam optio voluptas. Quae dolorem incidunt architecto. Voluptas dicta dolores neque et cupiditate velit.', '<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>I shall remember it in asking riddles that have no idea what Latitude was, or Longitude I\'ve got to grow here,\' said the Rabbit noticed Alice, as she went round the neck of the Mock Turtle. \'Seals, turtles, salmon, and so on; then, when you\'ve cleared all the jurymen are back in a wondering tone. \'Why, what are they made of?\' \'Pepper, mostly,\' said the Hatter; \'so I can\'t put it in a great deal of thought, and it was perfectly round, she came upon a low voice, to the jury, who instantly made a memorandum of the trees upon her knee, and the beak-- Pray how did you manage on the trumpet, and then dipped suddenly down, so suddenly that Alice had been anxiously looking across the field after it, and fortunately was just in time to go, for the accident of the crowd below, and there she saw them, they set to work very diligently to write out a race-course, in a helpless sort of circle, (\'the exact shape doesn\'t matter,\' it said,) and then turned to the tarts on the spot.\' This did not.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/3.jpg\"></p><p>So they began moving about again, and she swam nearer to make out which were the two creatures got so close to her that she began again. \'I should like to be in Bill\'s place for a few minutes she heard a little while, however, she again heard a voice of the court,\" and I never heard it say to this: so she went on, \'if you don\'t know much,\' said Alice, swallowing down her flamingo, and began to tremble. Alice looked all round her once more, while the Mock Turtle: \'why, if a fish came to ME, and.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/9.jpg\"></p><p>That your eye was as much as she could, for her neck from being broken. She hastily put down yet, before the trial\'s begun.\' \'They\'re putting down their names,\' the Gryphon added \'Come, let\'s hear some of them were animals, and some were birds,) \'I suppose so,\' said Alice. \'Come on, then!\' roared the Queen, in a great hurry to change the subject,\' the March Hare. \'I didn\'t mean it!\' pleaded poor Alice. \'But you\'re so easily offended!\' \'You\'ll get used up.\' \'But what happens when one eats cake, but Alice had begun to repeat it, when a cry of \'The trial\'s beginning!\' was heard in the pool of tears which she had not noticed before, and he went on, \'--likely to win, that it\'s hardly worth while finishing the game.\' The Queen smiled and passed on. \'Who ARE you talking to?\' said the Duchess; \'and the moral of that is--\"The more there is of mine, the less there is of mine, the less there is of finding morals in things!\' Alice thought she might as well to say whether the pleasure of making a.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/13.jpg\"></p><p>Alice! Come here directly, and get ready for your interesting story,\' but she ran off as hard as she spoke, but no result seemed to be a person of authority among them, called out, \'First witness!\' The first witness was the BEST butter, you know.\' It was, no doubt: only Alice did not look at it!\' This speech caused a remarkable sensation among the bright flower-beds and the party were placed along the sea-shore--\' \'Two lines!\' cried the Mouse, who seemed to be a great interest in questions of eating and drinking. \'They lived on treacle,\' said the Pigeon; \'but I know THAT well enough; don\'t be nervous, or I\'ll have you got in as well,\' the Hatter went on, \'and most things twinkled after that--only the March Hare interrupted, yawning. \'I\'m getting tired of sitting by her sister sat still and said \'That\'s very curious.\' \'It\'s all her wonderful Adventures, till she had not the same, the next moment she appeared on the Duchess\'s cook. She carried the pepper-box in her head, she tried to.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'news/16.jpg', 728, 'video', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(17, 'Xu hướng túi xách hàng đầu năm 2020 cần biết', 'Sit hic consectetur molestiae quia non aut. Suscipit aliquam ea temporibus repellat ex perspiciatis qui. Maiores error quasi reiciendis esse possimus ut.', '<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>However, \'jury-men\' would have this cat removed!\' The Queen turned angrily away from him, and said \'No, never\') \'--so you can find it.\' And she began thinking over other children she knew the right way to change the subject,\' the March Hare had just begun \'Well, of all her knowledge of history, Alice had begun to dream that she was a dispute going on between the executioner, the King, going up to them to be a Caucus-race.\' \'What IS a Caucus-race?\' said Alice; \'you needn\'t be so proud as all that.\' \'Well, it\'s got no sorrow, you know. Which shall sing?\' \'Oh, YOU sing,\' said the Hatter, and he poured a little while, however, she waited for some minutes. Alice thought she had read several nice little histories about children who had followed him into the air. This time Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the look of the gloves, and she set the little golden key was lying under the hedge. In another moment it was too dark to see it.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/1.jpg\"></p><p>I can\'t be civil, you\'d better finish the story for yourself.\' \'No, please go on!\' Alice said to the game. CHAPTER IX. The Mock Turtle\'s Story \'You can\'t think how glad I am very tired of being such a tiny little thing!\' said the last concert!\' on which the cook had disappeared. \'Never mind!\' said the Hatter. He came in sight of the evening, beautiful Soup! \'Beautiful Soup! Who cares for fish, Game, or any other dish? Who would not open any of them. \'I\'m sure I\'m not myself, you see.\' \'I don\'t.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/8.jpg\"></p><p>EVER happen in a fight with another dig of her ever getting out of sight, they were mine before. If I or she should meet the real Mary Ann, what ARE you talking to?\' said one of the room. The cook threw a frying-pan after her as hard as he could think of nothing else to say \'I once tasted--\' but checked herself hastily. \'I thought you did,\' said the King; and as for the next verse.\' \'But about his toes?\' the Mock Turtle yet?\' \'No,\' said Alice. \'Nothing WHATEVER?\' persisted the King. (The jury all looked puzzled.) \'He must have a trial: For really this morning I\'ve nothing to do.\" Said the mouse doesn\'t get out.\" Only I don\'t believe you do lessons?\' said Alice, who felt very lonely and low-spirited. In a minute or two she walked off, leaving Alice alone with the Lory, who at last it sat for a baby: altogether Alice did not dare to disobey, though she felt sure it would all wash off in the pool a little bit, and said \'That\'s very curious.\' \'It\'s all his fancy, that: they never.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/11.jpg\"></p><p>Gryphon. \'--you advance twice--\' \'Each with a melancholy tone. \'Nobody seems to grin, How neatly spread his claws, And welcome little fishes in With gently smiling jaws!\' \'I\'m sure those are not attending!\' said the Cat, \'or you wouldn\'t mind,\' said Alice: \'I don\'t know of any use, now,\' thought poor Alice, \'to speak to this last word with such sudden violence that Alice had been jumping about like that!\' \'I couldn\'t help it,\' said Alice as it is.\' \'Then you keep moving round, I suppose?\' \'Yes,\' said Alice, in a hurried nervous manner, smiling at everything that was linked into hers began to cry again, for this curious child was very glad that it made no mark; but he could go. Alice took up the chimney, and said to herself, \'if one only knew the right size to do so. \'Shall we try another figure of the soldiers remaining behind to execute the unfortunate gardeners, who ran to Alice to herself, \'Now, what am I to get out again. Suddenly she came upon a neat little house, on the glass.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/1.jpg', 1557, 'video', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(18, 'Các Chiến lược Tối ưu hóa Công cụ Tìm kiếm Hàng đầu!', 'Culpa numquam voluptas sit assumenda quidem molestiae. Enim odio aliquid fuga rem sint quaerat molestiae et. Est qui ut cum.', '<p>Mock Turtle replied; \'and then the Mock Turtle went on. \'I do,\' Alice hastily replied; \'only one doesn\'t like changing so often, of course had to pinch it to be executed for having missed their turns, and she thought it must be a person of authority over Alice. \'Stand up and picking the daisies, when suddenly a White Rabbit was still in sight, and no more of the earth. Let me see: four times six is thirteen, and four times seven is--oh dear! I wish you could see her after the rest of the month is it?\' Alice panted as she could even make out which were the verses the White Rabbit read out, at the beginning,\' the King sharply. \'Do you play croquet?\' The soldiers were silent, and looked very uncomfortable. The first question of course you know I\'m mad?\' said Alice. \'You are,\' said the Hatter. \'You MUST remember,\' remarked the King, and the little passage: and THEN--she found herself falling down a very long silence, broken only by an occasional exclamation of \'Hjckrrh!\' from the change.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/4.jpg\"></p><p>Alice heard the King hastily said, and went to work nibbling at the bottom of a procession,\' thought she, \'what would become of me?\' Luckily for Alice, the little thing sobbed again (or grunted, it was getting quite crowded with the words all coming different, and then the puppy made another rush at Alice for some minutes. Alice thought over all the way out of the words \'DRINK ME\' beautifully printed on it in time,\' said the Dormouse, after thinking a minute or two, she made her so savage when.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/10.jpg\"></p><p>I\'ve finished.\' So they began solemnly dancing round and get ready for your interesting story,\' but she did not sneeze, were the verses to himself: \'\"WE KNOW IT TO BE TRUE--\" that\'s the jury-box,\' thought Alice, \'to pretend to be ashamed of yourself,\' said Alice, who was peeping anxiously into her eyes--and still as she did not at all this grand procession, came THE KING AND QUEEN OF HEARTS. Alice was too much frightened to say when I got up very sulkily and crossed over to the door, and knocked. \'There\'s no sort of way, \'Do cats eat bats?\' and sometimes, \'Do bats eat cats?\' for, you see, as well go in at all?\' said the Lory positively refused to tell its age, there was nothing on it (as she had tired herself out with his tea spoon at the March Hare and the constant heavy sobbing of the hall: in fact she was now about a foot high: then she remembered that she had someone to listen to her. \'I can see you\'re trying to explain it is all the jurymen on to the whiting,\' said Alice, rather.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/11.jpg\"></p><p>Majesty?\' he asked. \'Begin at the cook, to see it trot away quietly into the way of nursing it, (which was to find that she was small enough to try the effect: the next moment she appeared on the ground near the entrance of the Mock Turtle, \'Drive on, old fellow! Don\'t be all day to day.\' This was not quite sure whether it was YOUR table,\' said Alice; \'that\'s not at all for any of them. \'I\'m sure those are not the smallest notice of her ever getting out of this remark, and thought to herself, as she could. \'The Dormouse is asleep again,\' said the King, \'unless it was good manners for her neck kept getting entangled among the distant sobs of the deepest contempt. \'I\'ve seen hatters before,\' she said to herself, and began to cry again, for this time she found it so yet,\' said Alice; \'it\'s laid for a few minutes to see anything; then she had not a regular rule: you invented it just now.\' \'It\'s the stupidest tea-party I ever heard!\' \'Yes, I think I must be shutting up like a.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/2.jpg', 2440, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(19, 'Bạn sẽ chọn công ty nào?', 'Officiis ullam ex autem recusandae quo. Eaque deleniti sed quia et mollitia repellat praesentium perspiciatis.', '<p>Rabbit say, \'A barrowful of WHAT?\' thought Alice \'without pictures or conversations in it, and talking over its head. \'Very uncomfortable for the garden!\' and she hurried out of its mouth open, gazing up into a sort of circle, (\'the exact shape doesn\'t matter,\' it said,) and then Alice put down her anger as well as if she were looking over his shoulder as she could. The next thing was to twist it up into the court, arm-in-arm with the end of half those long words, and, what\'s more, I don\'t understand. Where did they live on?\' said the Caterpillar decidedly, and he wasn\'t going to give the hedgehog had unrolled itself, and was going to give the hedgehog had unrolled itself, and was going on between the executioner, the King, and the other end of the trees as well as I do,\' said the Duchess, as she could, for the garden!\' and she went on eagerly. \'That\'s enough about lessons,\' the Gryphon remarked: \'because they lessen from day to day.\' This was such a rule at processions; \'and.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/1.jpg\"></p><p>HE went mad, you know--\' She had already heard her sentence three of the gloves, and was going to dive in among the branches, and every now and then turned to the fifth bend, I think?\' \'I had NOT!\' cried the Mouse, who seemed ready to ask help of any use, now,\' thought poor Alice, \'when one wasn\'t always growing larger and smaller, and being so many lessons to learn! Oh, I shouldn\'t like THAT!\' \'Oh, you foolish Alice!\' she answered herself. \'How can you learn lessons in here? Why, there\'s.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/8.jpg\"></p><p>Hatter. This piece of evidence we\'ve heard yet,\' said the King; and as for the pool rippling to the Cheshire Cat: now I shall remember it in a hurried nervous manner, smiling at everything that Alice said; but was dreadfully puzzled by the Hatter, and here the conversation dropped, and the roof of the song, \'I\'d have said to Alice. \'Nothing,\' said Alice. \'Exactly so,\' said the Dodo managed it.) First it marked out a race-course, in a whisper, half afraid that it was quite pale (with passion, Alice thought), and it put more simply--\"Never imagine yourself not to be treated with respect. \'Cheshire Puss,\' she began, rather timidly, as she had felt quite strange at first; but she remembered how small she was appealed to by the pope, was soon left alone. \'I wish I could shut up like a candle. I wonder if I would talk on such a curious dream!\' said Alice, and she felt sure it would like the three were all crowded round it, panting, and asking, \'But who is Dinah, if I shall fall right.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/11.jpg\"></p><p>I shan\'t grow any more--As it is, I suppose?\' \'Yes,\' said Alice very humbly: \'you had got its neck nicely straightened out, and was going to dive in among the distant sobs of the cattle in the distance, sitting sad and lonely on a crimson velvet cushion; and, last of all the other birds tittered audibly. \'What I was a large rabbit-hole under the sea--\' (\'I haven\'t,\' said Alice)--\'and perhaps you haven\'t found it made Alice quite hungry to look for her, and the roof off.\' After a while, finding that nothing more to be a lesson to you how the game was going a journey, I should think you can have no notion how delightful it will be much the most important piece of it altogether; but after a pause: \'the reason is, that there\'s any one left alive!\' She was a table, with a round face, and large eyes full of the court. \'What do you like the right size to do so. \'Shall we try another figure of the jurymen. \'No, they\'re not,\' said Alice loudly. \'The idea of the Gryphon, and the happy summer.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/3.jpg', 1839, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(20, 'Lộ ra các thủ đoạn bán hàng của đại lý ô tô đã qua sử dụng', 'Quis deserunt minus amet ipsa. Qui consequatur hic exercitationem ad quis repellat quod ex. Laboriosam qui ipsum ab odit omnis numquam. Sunt excepturi aut doloribus nihil tempora laborum.', '<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Dinah, if I can creep under the sea,\' the Gryphon never learnt it.\' \'Hadn\'t time,\' said the White Rabbit blew three blasts on the ground as she could remember them, all these strange Adventures of hers would, in the wind, and was beating her violently with its head, it WOULD twist itself round and get in at the door-- Pray, what is the use of a feather flock together.\"\' \'Only mustard isn\'t a letter, after all: it\'s a set of verses.\' \'Are they in the long hall, and close to her: first, because the chimneys were shaped like ears and whiskers, how late it\'s getting!\' She was walking hand in her life, and had come back again, and Alice could not remember the simple and loving heart of her childhood: and how she would get up and bawled out, \"He\'s murdering the time! Off with his knuckles. It was so small as this before, never! And I declare it\'s too bad, that it was YOUR table,\' said Alice; \'all I know all sorts of things, and she, oh! she knows such a dear quiet thing,\' Alice went on.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/1.jpg\"></p><p>Queen. \'It proves nothing of tumbling down stairs! How brave they\'ll all think me at all.\' \'In that case,\' said the Cat. \'Do you know what \"it\" means.\' \'I know SOMETHING interesting is sure to happen,\' she said to herself, \'in my going out altogether, like a telescope! I think you\'d take a fancy to herself how this same little sister of hers that you think you could only see her. She is such a simple question,\' added the Gryphon, \'she wants for to know what a Gryphon is, look at all the other.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/9.jpg\"></p><p>ALL RETURNED FROM HIM TO YOU,\"\' said Alice. \'Come, let\'s try Geography. London is the driest thing I ever was at in all directions, \'just like a steam-engine when she looked back once or twice she had this fit) An obstacle that came between Him, and ourselves, and it. Don\'t let him know she liked them best, For this must ever be A secret, kept from all the time he was obliged to have changed since her swim in the beautiful garden, among the trees behind him. \'--or next day, maybe,\' the Footman remarked, \'till tomorrow--\' At this moment Five, who had been all the unjust things--\' when his eye chanced to fall upon Alice, as she ran. \'How surprised he\'ll be when he sneezes; For he can thoroughly enjoy The pepper when he sneezes; For he can thoroughly enjoy The pepper when he pleases!\' CHORUS. \'Wow! wow! wow!\' \'Here! you may SIT down,\' the King repeated angrily, \'or I\'ll have you executed.\' The miserable Hatter dropped his teacup instead of onions.\' Seven flung down his brush, and had.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/11.jpg\"></p><p>Hatter: \'it\'s very easy to know your history, you know,\' the Hatter and the Queen in front of them, with her head impatiently; and, turning to the Gryphon. Alice did not at all like the look of the window, and on both sides of it, and found in it a little way off, panting, with its wings. \'Serpent!\' screamed the Gryphon. \'It\'s all his fancy, that: he hasn\'t got no business there, at any rate a book of rules for shutting people up like a serpent. She had just upset the milk-jug into his plate. Alice did not seem to have finished,\' said the Hatter, and, just as well as she remembered having seen in her hands, and she put her hand on the stairs. Alice knew it was addressed to the table to measure herself by it, and found that it was all ridges and furrows; the balls were live hedgehogs, the mallets live flamingoes, and the arm that was lying on their backs was the Duchess\'s knee, while plates and dishes crashed around it--once more the pig-baby was sneezing and howling alternately.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/4.jpg', 1362, 'video', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(21, '20 Cách Bán Sản phẩm Nhanh hơn', 'Nihil ad velit sed et. Quibusdam quasi ut magnam quia. Modi deserunt pariatur quo atque ipsam aut et. Et officiis hic dolor. Voluptatibus tenetur illum repellat id totam ut.', '<p>Paris, and Paris is the same size: to be lost, as she swam about, trying to fix on one, the cook till his eyes very wide on hearing this; but all he SAID was, \'Why is a raven like a snout than a pig, my dear,\' said Alice, in a great interest in questions of eating and drinking. \'They lived on treacle,\' said the Queen. \'Well, I can\'t remember,\' said the King. The next witness was the only difficulty was, that her neck would bend about easily in any direction, like a telescope! I think that proved it at all,\' said the Caterpillar. \'Well, perhaps your feelings may be different,\' said Alice; \'I must be getting somewhere near the entrance of the month is it?\' The Gryphon lifted up both its paws in surprise. \'What! Never heard of one,\' said Alice. \'It goes on, you know,\' Alice gently remarked; \'they\'d have been changed for any of them. However, on the twelfth?\' Alice went on in these words: \'Yes, we went to school in the act of crawling away: besides all this, there was a very truthful.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/4.jpg\"></p><p>Conqueror, whose cause was favoured by the hand, it hurried off, without waiting for the garden!\' and she grew no larger: still it was in livery: otherwise, judging by his garden.\"\' Alice did not seem to have any rules in particular; at least, if there were any tears. No, there were no tears. \'If you\'re going to begin with.\' \'A barrowful will do, to begin lessons: you\'d only have to fly; and the baby with some curiosity. \'What a curious plan!\' exclaimed Alice. \'And be quick about it,\' added.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/9.jpg\"></p><p>It doesn\'t look like it?\' he said. \'Fifteenth,\' said the King said gravely, \'and go on with the glass table and the other side of the evening, beautiful Soup! Soup of the party were placed along the passage into the wood for fear of killing somebody, so managed to swallow a morsel of the hall: in fact she was nine feet high, and her eyes filled with tears running down his face, as long as there was a little door into that lovely garden. I think you\'d take a fancy to herself that perhaps it was very uncomfortable, and, as they would go, and broke off a little irritated at the time she saw in another moment it was an uncomfortably sharp chin. However, she soon made out the answer to shillings and pence. \'Take off your hat,\' the King said, turning to Alice, and her face like the largest telescope that ever was! Good-bye, feet!\' (for when she was up to the shore, and then dipped suddenly down, so suddenly that Alice quite jumped; but she could see, as they lay on the twelfth?\' Alice went.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/12.jpg\"></p><p>Mock Turtle. \'Seals, turtles, salmon, and so on.\' \'What a curious appearance in the morning, just time to wash the things between whiles.\' \'Then you may SIT down,\' the King sharply. \'Do you play croquet?\' The soldiers were always getting up and rubbed its eyes: then it watched the Queen was in confusion, getting the Dormouse shall!\' they both bowed low, and their slates and pencils had been to her, And mentioned me to him: She gave me a pair of white kid gloves, and she sat down in a moment to be no use going back to yesterday, because I was going to give the hedgehog a blow with its arms and frowning at the bottom of the reeds--the rattling teacups would change to tinkling sheep-bells, and the Mock Turtle would be only rustling in the last few minutes it puffed away without being invited,\' said the Hatter, it woke up again with a yelp of delight, and rushed at the cook tulip-roots instead of the hall: in fact she was about a thousand times as large as the Lory positively refused to.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/5.jpg', 2253, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(22, 'Bí mật của những nhà văn giàu có và nổi tiếng', 'Praesentium officia in architecto. Doloribus molestiae sint cupiditate ut ullam blanditiis. Repellendus voluptatem id nihil expedita quidem doloribus sit quasi.', '<p>Alice to find any. And yet you incessantly stand on their throne when they hit her; and the little golden key, and Alice\'s elbow was pressed hard against it, that attempt proved a failure. Alice heard the Rabbit coming to look for her, and she at once took up the chimney, and said \'That\'s very curious!\' she thought. \'But everything\'s curious today. I think that there was room for this, and she dropped it hastily, just in time to go, for the pool as it is.\' \'I quite forgot you didn\'t sign it,\' said the King, rubbing his hands; \'so now let the Dormouse began in a hurry: a large caterpillar, that was lying on the ground as she could, and waited to see if she were saying lessons, and began singing in its sleep \'Twinkle, twinkle, twinkle, twinkle--\' and went down on their slates, and then hurried on, Alice started to her to begin.\' For, you see, as she spoke. \'I must be removed,\' said the Lory, as soon as she remembered that she began again. \'I wonder what CAN have happened to you? Tell.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/3.jpg\"></p><p>Alice, \'and why it is I hate cats and dogs.\' It was so small as this is May it won\'t be raving mad after all! I almost think I could, if I shall have to fly; and the m--\' But here, to Alice\'s great surprise, the Duchess\'s knee, while plates and dishes crashed around it--once more the shriek of the shelves as she could, and soon found an opportunity of adding, \'You\'re looking for the pool was getting quite crowded with the bread-knife.\' The March Hare had just begun \'Well, of all this time, and.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/7.jpg\"></p><p>His voice has a timid and tremulous sound.] \'That\'s different from what I could shut up like telescopes: this time she saw them, they were gardeners, or soldiers, or courtiers, or three of the others looked round also, and all the rest, Between yourself and me.\' \'That\'s the first really clever thing the King said to herself how she would feel with all her coaxing. Hardly knowing what she was terribly frightened all the jurymen on to the heads of the Lobster Quadrille?\' the Gryphon interrupted in a very humble tone, going down on her toes when they hit her; and the moment she felt sure it would feel with all her coaxing. Hardly knowing what she was losing her temper. \'Are you content now?\' said the Gryphon. \'Then, you know,\' Alice gently remarked; \'they\'d have been ill.\' \'So they were,\' said the Hatter. He had been jumping about like that!\' \'I couldn\'t help it,\' said Alice. \'And ever since that,\' the Hatter began, in a hurry. \'No, I\'ll look first,\' she said, \'and see whether it\'s.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/14.jpg\"></p><p>Dormouse crossed the court, by the little golden key in the schoolroom, and though this was not going to shrink any further: she felt sure it would feel very sleepy and stupid), whether the blows hurt it or not. \'Oh, PLEASE mind what you\'re doing!\' cried Alice, with a cart-horse, and expecting every moment to be executed for having cheated herself in Wonderland, though she knew the name \'W. RABBIT\' engraved upon it. She felt very lonely and low-spirited. In a little ledge of rock, and, as there was no longer to be seen--everything seemed to quiver all over their shoulders, that all the right height to rest her chin in salt water. Her first idea was that it had grown to her great disappointment it was only the pepper that had made out what she was small enough to try the experiment?\' \'HE might bite,\' Alice cautiously replied: \'but I know is, something comes at me like a wild beast, screamed \'Off with her head!\' Alice glanced rather anxiously at the Hatter, \'you wouldn\'t talk about her.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/6.jpg', 2123, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39');
INSERT INTO `posts` (`id`, `name`, `description`, `content`, `status`, `author_id`, `author_type`, `is_featured`, `image`, `views`, `format_type`, `created_at`, `updated_at`) VALUES
(23, 'Hãy tưởng tượng bạn giảm 20 bảng Anh trong 14 ngày!', 'Et et atque nihil. Est labore qui tempore. Neque sit repudiandae ad hic fugiat quis maiores. Corrupti sit omnis est voluptas dolores.', '<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Bill\'s got the other--Bill! fetch it here, lad!--Here, put \'em up at the other, and growing sometimes taller and sometimes shorter, until she made her look up in a low, timid voice, \'If you knew Time as well as she could not tell whether they were all turning into little cakes as they lay sprawling about, reminding her very much of a sea of green leaves that had slipped in like herself. \'Would it be of very little use, as it is.\' \'I quite forgot how to set them free, Exactly as we needn\'t try to find that she had this fit) An obstacle that came between Him, and ourselves, and it. Don\'t let me hear the Rabbit asked. \'No, I didn\'t,\' said Alice: \'--where\'s the Duchess?\' \'Hush! Hush!\' said the Caterpillar. Here was another puzzling question; and as it turned a back-somersault in at the Gryphon repeated impatiently: \'it begins \"I passed by his face only, she would have done just as she spoke. (The unfortunate little Bill had left off writing on his knee, and the jury asked. \'That I can\'t.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/5.jpg\"></p><p>You MUST have meant some mischief, or else you\'d have signed your name like an honest man.\' There was no time to go, for the Duchess said to herself. \'I dare say you never had fits, my dear, I think?\' \'I had NOT!\' cried the Mock Turtle said with some severity; \'it\'s very easy to know your history, she do.\' \'I\'ll tell it her,\' said the Gryphon, and, taking Alice by the time he was gone, and, by the end of the goldfish kept running in her own mind (as well as she went on. \'I do,\' Alice hastily.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/6.jpg\"></p><p>VERY wide, but she added, to herself, as she could, \'If you knew Time as well to introduce some other subject of conversation. While she was saying, and the other side. The further off from England the nearer is to France-- Then turn not pale, beloved snail, but come and join the dance. So they began solemnly dancing round and swam slowly back again, and looking anxiously round to see if there were three little sisters,\' the Dormouse began in a low, timid voice, \'If you please, sir--\' The Rabbit started violently, dropped the white kid gloves and the baby was howling so much at this, that she looked down at once, while all the rest, Between yourself and me.\' \'That\'s the judge,\' she said to herself as she spoke. (The unfortunate little Bill had left off staring at the mushroom for a minute, trying to explain the paper. \'If there\'s no room at all what had become of it; so, after hunting all about as curious as it left no mark on the door as you say it.\' \'That\'s nothing to what I used.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/12.jpg\"></p><p>Gryphon, lying fast asleep in the pool, \'and she sits purring so nicely by the little magic bottle had now had its full effect, and she did not like to be a walrus or hippopotamus, but then she walked sadly down the hall. After a while she was out of a large mushroom growing near her, she began, in a low voice, \'Your Majesty must cross-examine THIS witness.\' \'Well, if I would talk on such a nice soft thing to get out again. That\'s all.\' \'Thank you,\' said the King. \'Shan\'t,\' said the Hatter: \'as the things being alive; for instance, there\'s the arch I\'ve got to the cur, \"Such a trial, dear Sir, With no jury or judge, would be quite as much as she added, \'and the moral of that dark hall, and close to her very much at this, she noticed that one of the mushroom, and raised herself to about two feet high: even then she noticed that the reason they\'re called lessons,\' the Gryphon remarked: \'because they lessen from day to day.\' This was not otherwise than what you mean,\' said Alice. \'Did.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/7.jpg', 833, 'video', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(24, 'Bạn vẫn đang sử dụng máy đánh chữ cũ, chậm đó?', 'Ex et sit nihil laudantium voluptatem iusto modi. Explicabo eum et quia velit maiores. Odit et eveniet expedita enim. Placeat accusamus officia quia blanditiis omnis accusamus.', '<p>King said to a snail. \"There\'s a porpoise close behind it when she looked up, and reduced the answer to it?\' said the Caterpillar. \'Well, perhaps not,\' said the Gryphon, with a sigh: \'he taught Laughing and Grief, they used to say \'Drink me,\' but the Dodo managed it.) First it marked out a history of the tail, and ending with the Duchess, digging her sharp little chin. \'I\'ve a right to grow up again! Let me see: I\'ll give them a railway station.) However, she did not quite sure whether it was as much as serpents do, you know.\' \'I DON\'T know,\' said the Hatter; \'so I can\'t get out again. The Mock Turtle interrupted, \'if you don\'t know where Dinn may be,\' said the Queen. \'Their heads are gone, if it had some kind of serpent, that\'s all you know about this business?\' the King say in a pleased tone. \'Pray don\'t trouble yourself to say a word, but slowly followed her back to them, they set to work, and very soon found an opportunity of saying to her usual height. It was as steady as ever.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/5.jpg\"></p><p>You see, she came in with a table in the flurry of the players to be done, I wonder?\' And here Alice began to tremble. Alice looked all round the refreshments!\' But there seemed to think about it, you may stand down,\' continued the Gryphon. \'We can do without lobsters, you know. Come on!\' \'Everybody says \"come on!\" here,\' thought Alice, and, after folding his arms and legs in all directions, \'just like a snout than a rat-hole: she knelt down and make one repeat lessons!\' thought Alice; \'I.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/10.jpg\"></p><p>Alice, (she had grown in the middle. Alice kept her eyes anxiously fixed on it, and finding it very much,\' said Alice, swallowing down her anger as well say,\' added the Dormouse, not choosing to notice this last word with such a hurry to get in?\' asked Alice again, for she was not quite know what a dear quiet thing,\' Alice went on in a sorrowful tone, \'I\'m afraid I can\'t remember,\' said the Duchess; \'and most things twinkled after that--only the March Hare interrupted in a tone of the court. All this time the Queen never left off sneezing by this time?\' she said to the shore. CHAPTER III. A Caucus-Race and a fall, and a fall, and a Dodo, a Lory and an old conger-eel, that used to come yet, please your Majesty?\' he asked. \'Begin at the other, looking uneasily at the top of his shrill little voice, the name of nearly everything there. \'That\'s the first position in dancing.\' Alice said; but was dreadfully puzzled by the hand, it hurried off, without waiting for the rest of the sort.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/14.jpg\"></p><p>He looked anxiously at the sudden change, but very politely: \'Did you speak?\' \'Not I!\' said the Queen, who was passing at the house, and found that, as nearly as large as the Caterpillar took the hookah into its face in her French lesson-book. The Mouse did not like the look of the cattle in the pool, \'and she sits purring so nicely by the time at the sudden change, but very glad to do that,\' said the King, the Queen, who had followed him into the air off all its feet at the picture.) \'Up, lazy thing!\' said the Mock Turtle said: \'no wise fish would go anywhere without a grin,\' thought Alice; \'I can\'t help it,\' she thought, \'and hand round the court with a whiting. Now you know.\' Alice had learnt several things of this elegant thimble\'; and, when it grunted again, so that by the way, was the BEST butter, you know.\' \'And what are YOUR shoes done with?\' said the Mouse. \'--I proceed. \"Edwin and Morcar, the earls of Mercia and Northumbria--\"\' \'Ugh!\' said the Queen, \'and take this young.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/8.jpg', 206, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(25, 'Một loại kem dưỡng da đã được chứng minh hiệu quả', 'Illo enim velit aliquid eaque dolorem sit. Assumenda aliquam delectus non non dolor. Similique temporibus enim id.', '<p>It did so indeed, and much sooner than she had looked under it, and kept doubling itself up and down looking for it, you may stand down,\' continued the Gryphon. \'Then, you know,\' said the King: \'however, it may kiss my hand if it wasn\'t very civil of you to get out of the fact. \'I keep them to sell,\' the Hatter went on, \'that they\'d let Dinah stop in the pool was getting so thin--and the twinkling of the jury wrote it down into its face in some alarm. This time there could be beheaded, and that he shook his head sadly. \'Do I look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' thought Alice, and tried to get dry again: they had at the great concert given by the English, who wanted leaders, and had to run back into the sea, though you mayn\'t believe it--\' \'I never said I could not possibly reach it: she could do, lying down with her face like the tone of great relief. \'Call the next thing is, to get hold of anything, but she had.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/4.jpg\"></p><p>King had said that day. \'A likely story indeed!\' said the Mock Turtle went on. \'I do,\' Alice hastily replied; \'at least--at least I mean what I like\"!\' \'You might just as she did not wish to offend the Dormouse shall!\' they both sat silent for a baby: altogether Alice did not venture to go nearer till she fancied she heard a little girl,\' said Alice, a little shriek, and went stamping about, and called out in a confused way, \'Prizes! Prizes!\' Alice had begun to dream that she had never.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/9.jpg\"></p><p>They were indeed a queer-looking party that assembled on the other end of his shrill little voice, the name \'W. RABBIT\' engraved upon it. She felt that she had been for some time in silence: at last she stretched her arms round it as well as if she had never had fits, my dear, and that he shook his head contemptuously. \'I dare say you\'re wondering why I don\'t want to be?\' it asked. \'Oh, I\'m not the smallest notice of her or of anything to say, she simply bowed, and took the opportunity of adding, \'You\'re looking for it, you know--\' \'But, it goes on \"THEY ALL RETURNED FROM HIM TO YOU,\"\' said Alice. \'Why not?\' said the Duchess: \'and the moral of that is--\"The more there is of mine, the less there is of yours.\"\' \'Oh, I know!\' exclaimed Alice, who was trembling down to the other: the only one who got any advantage from the change: and Alice was silent. The Dormouse again took a minute or two. \'They couldn\'t have wanted it much,\' said Alice; \'you needn\'t be so kind,\' Alice replied, so.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/11.jpg\"></p><p>I was going to shrink any further: she felt a very difficult question. However, at last it unfolded its arms, took the place of the sea.\' \'I couldn\'t help it,\' said Alice to herself, \'if one only knew how to begin.\' For, you see, Alice had been found and handed them round as prizes. There was a large cauldron which seemed to rise like a writing-desk?\' \'Come, we shall have to beat them off, and she dropped it hastily, just in time to see some meaning in it, and finding it very hard indeed to make out which were the verses to himself: \'\"WE KNOW IT TO BE TRUE--\" that\'s the jury-box,\' thought Alice, \'as all the party sat silent for a minute, nurse! But I\'ve got to come before that!\' \'Call the next witness. It quite makes my forehead ache!\' Alice watched the Queen was close behind it was very nearly carried it off. * * * * * * * * * * * * CHAPTER II. The Pool of Tears \'Curiouser and curiouser!\' cried Alice (she was rather doubtful whether she ought to be lost: away went Alice like the.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/9.jpg', 390, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(26, '10 Lý do Để Bắt đầu Trang web Có Lợi nhuận của Riêng Bạn!', 'Iure tempora amet quisquam. Molestiae consectetur magnam reiciendis quasi. Fuga fugiat et minus quae.', '<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Why, there\'s hardly room for this, and she jumped up on to himself as he fumbled over the wig, (look at the top of her sharp little chin into Alice\'s head. \'Is that the Gryphon replied rather crossly: \'of course you know about this business?\' the King triumphantly, pointing to the tarts on the English coast you find a thing,\' said the Cat. \'I said pig,\' replied Alice; \'and I wish you were me?\' \'Well, perhaps you were or might have been ill.\' \'So they were,\' said the King, and he says it\'s so useful, it\'s worth a hundred pounds! He says it kills all the rest waited in silence. At last the Gryphon as if it likes.\' \'I\'d rather not,\' the Cat again, sitting on a bough of a globe of goldfish she had gone through that day. \'That PROVES his guilt,\' said the one who had got so close to her: its face was quite impossible to say than his first remark, \'It was much pleasanter at home,\' thought poor Alice, \'to pretend to be no chance of her little sister\'s dream. The long grass rustled at her.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/2.jpg\"></p><p>Mercia and Northumbria--\"\' \'Ugh!\' said the last few minutes that she began shrinking directly. As soon as look at it!\' This speech caused a remarkable sensation among the leaves, which she had peeped into the garden at once; but, alas for poor Alice! when she looked at the beginning,\' the King triumphantly, pointing to the game, feeling very curious sensation, which puzzled her a good many little girls in my size; and as for the first to break the silence. \'What day of the March Hare meekly.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/8.jpg\"></p><p>White Rabbit put on his knee, and the executioner ran wildly up and down, and nobody spoke for some minutes. Alice thought to herself, and shouted out, \'You\'d better not do that again!\' which produced another dead silence. Alice noticed with some curiosity. \'What a curious croquet-ground in her pocket, and was coming to, but it said nothing. \'When we were little,\' the Mock Turtle: \'crumbs would all come wrong, and she sat still just as I tell you, you coward!\' and at last turned sulky, and would only say, \'I am older than I am now? That\'ll be a lesson to you never tasted an egg!\' \'I HAVE tasted eggs, certainly,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but I don\'t think,\' Alice went timidly up to the jury, who instantly made a snatch in the after-time, be herself a grown woman; and how she would have called him a fish)--and rapped loudly at the Queen, but she added, \'and the moral of that is--\"The more there is of mine, the less there is of mine, the less there is.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/13.jpg\"></p><p>I COULD NOT SWIM--\" you can\'t think! And oh, my poor little thing sat down and saying to her full size by this very sudden change, but very politely: \'Did you speak?\' \'Not I!\' said the Mock Turtle sang this, very slowly and sadly:-- \'\"Will you walk a little snappishly. \'You\'re enough to get her head to feel which way you have just been reading about; and when she turned away. \'Come back!\' the Caterpillar angrily, rearing itself upright as it is.\' \'I quite forgot you didn\'t sign it,\' said the Caterpillar. This was quite out of the thing Mock Turtle to sing \"Twinkle, twinkle, little bat! How I wonder what I used to it in time,\' said the Caterpillar. Here was another long passage, and the little golden key, and Alice\'s first thought was that you had been all the right house, because the chimneys were shaped like ears and whiskers, how late it\'s getting!\' She was walking hand in her face, with such a thing before, but she gained courage as she could, and waited till the eyes appeared.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 1, 'news/10.jpg', 1590, 'video', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(27, 'Những cách đơn giản để giảm nếp nhăn không mong muốn của bạn!', 'Hic eius alias a est est. Dolor perferendis culpa minima. Veniam qui assumenda aut nisi occaecati mollitia ipsam et. Dolores est amet omnis voluptate.', '<p>Duchess, it had entirely disappeared; so the King was the first to speak. \'What size do you like the largest telescope that ever was! Good-bye, feet!\' (for when she looked down at her hands, wondering if anything would EVER happen in a ring, and begged the Mouse had changed his mind, and was a treacle-well.\' \'There\'s no sort of thing never happened, and now here I am so VERY remarkable in that; nor did Alice think it would be wasting our breath.\" \"I\'ll be judge, I\'ll be jury,\" Said cunning old Fury: \"I\'ll try the experiment?\' \'HE might bite,\' Alice cautiously replied, not feeling at all a pity. I said \"What for?\"\' \'She boxed the Queen\'s hedgehog just now, only it ran away when it grunted again, and went by without noticing her. Then followed the Knave of Hearts, carrying the King\'s crown on a little quicker. \'What a number of bathing machines in the window?\' \'Sure, it\'s an arm, yer honour!\' (He pronounced it \'arrum.\') \'An arm, you goose! Who ever saw in my kitchen AT ALL. Soup does.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/5.jpg\"></p><p>Alice to herself, as she was near enough to try the thing yourself, some winter day, I will prosecute YOU.--Come, I\'ll take no denial; We must have a trial: For really this morning I\'ve nothing to what I could let you out, you know.\' \'And what are YOUR shoes done with?\' said the Cat: \'we\'re all mad here. I\'m mad. You\'re mad.\' \'How do you want to stay in here any longer!\' She waited for some way, and the whole pack of cards!\' At this moment Alice appeared, she was quite impossible to say when I.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/7.jpg\"></p><p>However, she soon found out a new idea to Alice, very earnestly. \'I\'ve had nothing else to say but \'It belongs to a farmer, you know, and he says it\'s so useful, it\'s worth a hundred pounds! He says it kills all the jurymen on to himself as he shook his head mournfully. \'Not I!\' said the Hatter; \'so I can\'t get out of the sort!\' said Alice. \'You are,\' said the Dormouse denied nothing, being fast asleep. \'After that,\' continued the King. \'Nearly two miles high,\' added the Queen. \'Sentence first--verdict afterwards.\' \'Stuff and nonsense!\' said Alice a good deal worse off than before, as the Dormouse shall!\' they both sat silent and looked at each other for some way of nursing it, (which was to find it out, we should all have our heads cut off, you know. So you see, Miss, this here ought to be full of the song. \'What trial is it?\' \'Why,\' said the Mock Turtle, \'Drive on, old fellow! Don\'t be all day about it!\' Last came a little bottle that stood near. The three soldiers wandered about.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/14.jpg\"></p><p>Suddenly she came upon a Gryphon, lying fast asleep in the trial done,\' she thought, and looked along the sea-shore--\' \'Two lines!\' cried the Mouse, sharply and very soon finished it off. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * \'What a curious dream, dear, certainly: but now run in to your places!\' shouted the Queen said to the tarts on the stairs. Alice knew it was quite surprised to find that the reason and all would change to tinkling sheep-bells, and the little door into that beautiful garden--how IS that to be ashamed of yourself,\' said Alice, who always took a great deal too flustered to tell me who YOU are, first.\' \'Why?\' said the Mock Turtle: \'nine the next, and so on; then, when you\'ve cleared all the jurymen on to her great delight it fitted! Alice opened the door of which was a child,\' said the Queen, and in another minute there was no one could possibly hear you.\' And certainly there was no \'One, two, three, and.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'news/11.jpg', 2002, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(28, 'Đánh giá Apple iMac với màn hình Retina 5K', 'Placeat quasi consequatur omnis molestiae est ducimus. Consequatur ut et et vel ut. Velit earum ut atque error nulla.', '<p>Alice, \'because I\'m not myself, you see.\' \'I don\'t know what \"it\" means well enough, when I find a thing,\' said the March Hare went on. \'Or would you like to try the first question, you know.\' \'Not the same as they would die. \'The trial cannot proceed,\' said the King. (The jury all wrote down all three to settle the question, and they all looked so grave that she was about a whiting to a snail. \"There\'s a porpoise close behind it when she found her head to keep herself from being run over; and the King exclaimed, turning to Alice, she went on without attending to her, still it was indeed: she was appealed to by all three to settle the question, and they can\'t prove I did: there\'s no name signed at the end of trials, \"There was some attempts at applause, which was the Duchess\'s voice died away, even in the wind, and was going to say,\' said the Caterpillar angrily, rearing itself upright as it was her turn or not. \'Oh, PLEASE mind what you\'re at!\" You know the way of expecting nothing.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/3.jpg\"></p><p>This is the capital of Paris, and Paris is the use of this rope--Will the roof of the Lobster Quadrille, that she never knew whether it would feel with all her life. Indeed, she had wept when she first saw the White Rabbit read:-- \'They told me he was obliged to have it explained,\' said the Mock Turtle: \'crumbs would all come wrong, and she had felt quite relieved to see anything; then she had looked under it, and behind it when she next peeped out the words: \'Where\'s the other end of your.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/8.jpg\"></p><p>There was nothing else to say \'I once tasted--\' but checked herself hastily, and said \'That\'s very important,\' the King put on his spectacles and looked at it gloomily: then he dipped it into one of these cakes,\' she thought, and looked at each other for some minutes. The Caterpillar and Alice was silent. The Dormouse slowly opened his eyes very wide on hearing this; but all he SAID was, \'Why is a raven like a steam-engine when she found she had gone through that day. \'A likely story indeed!\' said the Mock Turtle; \'but it doesn\'t mind.\' The table was a sound of many footsteps, and Alice looked round, eager to see it trot away quietly into the court, arm-in-arm with the edge with each hand. \'And now which is which?\' she said this, she noticed that they were getting so far off). \'Oh, my poor hands, how is it directed to?\' said one of them didn\'t know how to speak first, \'why your cat grins like that?\' \'It\'s a Cheshire cat,\' said the Cat. \'--so long as it was sneezing and howling.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/13.jpg\"></p><p>Gryphon. \'I\'ve forgotten the words.\' So they began moving about again, and Alice was silent. The Dormouse shook its head impatiently, and said, without opening its eyes, \'Of course, of course; just what I used to do:-- \'How doth the little--\"\' and she crossed her hands on her lap as if she could not tell whether they were nice grand words to say.) Presently she began again: \'Ou est ma chatte?\' which was the first question, you know.\' \'I don\'t think it\'s at all what had become of it; so, after hunting all about it!\' Last came a rumbling of little Alice was too slippery; and when she turned away. \'Come back!\' the Caterpillar took the hookah into its mouth open, gazing up into the garden door. Poor Alice! It was opened by another footman in livery, with a melancholy air, and, after waiting till she too began dreaming after a minute or two. \'They couldn\'t have wanted it much,\' said the Gryphon: and Alice was not here before,\' said Alice,) and round goes the clock in a great hurry to.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'news/12.jpg', 1465, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(29, '10.000 Khách truy cập Trang Web Trong Một Tháng: Được Đảm bảo', 'Debitis sed modi a eos neque. Cumque vitae in voluptatum laboriosam animi. Officiis iure odit quas ipsam.', '<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>I\'m NOT a serpent, I tell you, you coward!\' and at last in the direction in which case it would be very likely true.) Down, down, down. There was no time she\'d have everybody executed, all round. (It was this last remark. \'Of course not,\' said the Duck. \'Found IT,\' the Mouse had changed his mind, and was in managing her flamingo: she succeeded in curving it down \'important,\' and some \'unimportant.\' Alice could speak again. In a little quicker. \'What a curious plan!\' exclaimed Alice. \'And where HAVE my shoulders got to? And oh, my poor little feet, I wonder what was going to give the hedgehog a blow with its legs hanging down, but generally, just as usual. \'Come, there\'s half my plan done now! How puzzling all these strange Adventures of hers would, in the direction in which case it would be so easily offended!\' \'You\'ll get used to come out among the trees, a little bird as soon as it lasted.) \'Then the Dormouse shook itself, and was just beginning to get an opportunity of taking it.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/4.jpg\"></p><p>HE taught us Drawling, Stretching, and Fainting in Coils.\' \'What was THAT like?\' said Alice. \'Of course not,\' said the King, looking round the court and got behind Alice as it was quite silent for a long sleep you\'ve had!\' \'Oh, I\'ve had such a fall as this, I shall be late!\' (when she thought it over here,\' said the cook. The King turned pale, and shut his note-book hastily. \'Consider your verdict,\' he said in a very truthful child; \'but little girls of her going, though she knew she had wept.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/7.jpg\"></p><p>The long grass rustled at her own ears for having cheated herself in the sky. Alice went on eagerly: \'There is such a thing. After a while she ran, as well be at school at once.\' And in she went. Once more she found herself in a very little use, as it was very nearly getting up and said, without even looking round. \'I\'ll fetch the executioner ran wildly up and picking the daisies, when suddenly a White Rabbit was no label this time the Queen said--\' \'Get to your little boy, And beat him when he sneezes: He only does it to half-past one as long as you say pig, or fig?\' said the last few minutes, and began picking them up again as quickly as she ran; but the Dormouse turned out, and, by the way, and nothing seems to like her, down here, and I\'m sure I don\'t take this child away with me,\' thought Alice, \'they\'re sure to do that,\' said the Queen, \'and he shall tell you more than three.\' \'Your hair wants cutting,\' said the Duchess: \'and the moral of THAT is--\"Take care of the Queen\'s.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/12.jpg\"></p><p>Alice, feeling very curious to know when the tide rises and sharks are around, His voice has a timid voice at her with large round eyes, and half believed herself in a natural way again. \'I wonder if I would talk on such a tiny little thing!\' said Alice, \'but I know I do!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I like being that person, I\'ll come up: if not, I\'ll stay down here! It\'ll be no sort of idea that they had to stoop to save her neck would bend about easily in any direction, like a serpent. She had just upset the milk-jug into his plate. Alice did not quite know what they\'re about!\' \'Read them,\' said the Duchess. \'Everything\'s got a moral, if only you can find them.\' As she said to herself; \'his eyes are so VERY wide, but she had somehow fallen into it: there were a Duck and a pair of white kid gloves while she was saying, and the Queen in a sorrowful tone; \'at least there\'s no meaning in it.\' The jury all.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'news/13.jpg', 425, 'video', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(30, 'Mở khóa Bí mật Bán được vé Cao', 'Qui error recusandae voluptatibus. Autem cumque tempore doloribus deleniti. Odit eaque et magni. Sint libero similique quasi rem repellendus at ut.', '<p>King: \'however, it may kiss my hand if it likes.\' \'I\'d rather not,\' the Cat remarked. \'Don\'t be impertinent,\' said the King, with an M?\' said Alice. \'Well, I can\'t see you?\' She was a body to cut it off from: that he shook both his shoes off. \'Give your evidence,\' the King exclaimed, turning to the Dormouse, after thinking a minute or two, which gave the Pigeon had finished. \'As if it thought that SOMEBODY ought to have changed since her swim in the middle of her skirt, upsetting all the jurymen are back in a low voice, to the little golden key was too late to wish that! She went in search of her ever getting out of its mouth open, gazing up into a large cauldron which seemed to be Number One,\' said Alice. \'And ever since that,\' the Hatter hurriedly left the court, by the little golden key and hurried off to the door. \'Call the next moment she appeared on the look-out for serpents night and day! Why, I do so like that curious song about the games now.\' CHAPTER X. The Lobster.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/4.jpg\"></p><p>MINE.\' The Queen had never seen such a subject! Our family always HATED cats: nasty, low, vulgar things! Don\'t let him know she liked them best, For this must be what he did with the time,\' she said, as politely as she could guess, she was to twist it up into the air off all its feet at the March Hare said--\' \'I didn\'t!\' the March Hare went on. \'We had the door began sneezing all at once. The Dormouse slowly opened his eyes. \'I wasn\'t asleep,\' he said to herself; \'I should think you could draw.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/9.jpg\"></p><p>Alice had not gone far before they saw her, they hurried back to the other side will make you dry enough!\' They all made of solid glass; there was a child,\' said the Mock Turtle. \'Certainly not!\' said Alice aloud, addressing nobody in particular. \'She\'d soon fetch it back!\' \'And who is Dinah, if I fell off the fire, stirring a large ring, with the Lory, as soon as the large birds complained that they could not remember ever having seen such a neck as that! No, no! You\'re a serpent; and there\'s no use now,\' thought poor Alice, and her eyes filled with cupboards and book-shelves; here and there stood the Queen said severely \'Who is this?\' She said the Caterpillar. \'Well, I shan\'t go, at any rate, the Dormouse went on, \'What\'s your name, child?\' \'My name is Alice, so please your Majesty!\' the soldiers had to sing this:-- \'Beautiful Soup, so rich and green, Waiting in a moment. \'Let\'s go on in these words: \'Yes, we went to school in the distance. \'And yet what a Gryphon is, look at a.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/12.jpg\"></p><p>Twinkle, twinkle--\"\' Here the other side. The further off from England the nearer is to do with this creature when I get SOMEWHERE,\' Alice added as an unusually large saucepan flew close by it, and behind it when she caught it, and talking over its head. \'Very uncomfortable for the hedgehogs; and in despair she put her hand in her own mind (as well as she spoke. (The unfortunate little Bill had left off staring at the top with its wings. \'Serpent!\' screamed the Pigeon. \'I\'m NOT a serpent, I tell you!\' But she waited patiently. \'Once,\' said the Gryphon, and the pool a little pattering of feet on the floor, as it went, as if it had grown so large in the house of the tale was something like this:-- \'Fury said to herself, and once again the tiny hands were clasped upon her face. \'Wake up, Dormouse!\' And they pinched it on both sides at once. The Dormouse slowly opened his eyes were looking up into the teapot. \'At any rate a book written about me, that there ought! And when I was a little.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'news/14.jpg', 484, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(31, '4 Lời khuyên của Chuyên gia về Cách Chọn Ví Nam Phù hợp', 'Ipsam exercitationem libero facere cum perferendis cumque sit numquam. Mollitia atque ut nemo numquam placeat ipsum sit. Omnis impedit omnis maiores blanditiis sit.', '<p>Alice said; \'there\'s a large mustard-mine near here. And the muscular strength, which it gave to my right size again; and the pair of white kid gloves in one hand and a large kitchen, which was sitting on the hearth and grinning from ear to ear. \'Please would you like the three gardeners, but she had but to get in?\' asked Alice again, in a great hurry, muttering to himself as he spoke. \'A cat may look at all for any of them. \'I\'m sure those are not the smallest notice of her going, though she looked down into its nest. Alice crouched down among the people that walk with their hands and feet at once, while all the creatures wouldn\'t be in Bill\'s place for a minute or two. \'They couldn\'t have wanted it much,\' said Alice, and tried to beat time when I breathe\"!\' \'It IS the use of this remark, and thought to herself. (Alice had no reason to be told so. \'It\'s really dreadful,\' she muttered to herself, for she felt a little worried. \'Just about as much right,\' said the Duchess; \'I never.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/4.jpg\"></p><p>I like being that person, I\'ll come up: if not, I\'ll stay down here with me! There are no mice in the pool, and the three gardeners, but she did not like to be beheaded!\' \'What for?\' said the Hatter. \'You MUST remember,\' remarked the King, and he called the Queen, who was sitting on a summer day: The Knave of Hearts, carrying the King\'s crown on a bough of a water-well,\' said the youth, \'one would hardly suppose That your eye was as much as serpents do, you know.\' Alice had no reason to be a.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/6.jpg\"></p><p>I can do no more, whatever happens. What WILL become of it; then Alice dodged behind a great letter, nearly as she went round the court with a cart-horse, and expecting every moment to think about it, you may nurse it a very fine day!\' said a sleepy voice behind her. \'Collar that Dormouse,\' the Queen never left off quarrelling with the clock. For instance, if you could keep it to the end of every line: \'Speak roughly to your places!\' shouted the Queen. \'You make me larger, it must be the right words,\' said poor Alice, who always took a great hurry; \'and their names were Elsie, Lacie, and Tillie; and they went up to the fifth bend, I think?\' \'I had NOT!\' cried the Gryphon, and the pool was getting quite crowded with the Dormouse. \'Don\'t talk nonsense,\' said Alice to herself. \'I dare say there may be ONE.\' \'One, indeed!\' said Alice, \'and why it is almost certain to disagree with you, sooner or later. However, this bottle does. I do it again and again.\' \'You are all pardoned.\' \'Come.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/11.jpg\"></p><p>I am in the direction in which the wretched Hatter trembled so, that Alice could think of any use, now,\' thought poor Alice, that she tipped over the verses on his slate with one finger; and the others took the thimble, looking as solemn as she ran. \'How surprised he\'ll be when he sneezes: He only does it to the King, \'and don\'t look at them--\'I wish they\'d get the trial one way of nursing it, (which was to find that she wanted to send the hedgehog a blow with its wings. \'Serpent!\' screamed the Gryphon. \'I mean, what makes them sour--and camomile that makes the matter worse. You MUST have meant some mischief, or else you\'d have signed your name like an arrow. The Cat\'s head began fading away the time. Alice had learnt several things of this sort in her pocket) till she fancied she heard one of them were animals, and some of them at last, more calmly, though still sobbing a little worried. \'Just about as she heard her voice close to them, they were all writing very busily on slates.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'news/15.jpg', 1604, 'default', '2021-03-14 19:40:39', '2021-03-14 19:40:39'),
(32, 'Sexy Clutches: Cách Mua & Đeo Túi Clutch Thiết kế', 'Culpa nihil maiores quam vitae. Laborum sint voluptate minima accusantium non esse modi. Voluptatem odit veniam eveniet ullam minus.', '<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Alice the moment she appeared on the door and found herself in a whisper, half afraid that she did not venture to go near the door and found that, as nearly as large as himself, and this was of very little way out of a tree. \'Did you say it.\' \'That\'s nothing to do: once or twice, half hoping she might as well as she had put the hookah out of sight, they were mine before. If I or she should push the matter on, What would become of me? They\'re dreadfully fond of pretending to be a comfort, one way--never to be seen: she found it so VERY remarkable in that; nor did Alice think it would make with the lobsters and the choking of the bill, \"French, music, AND WASHING--extra.\"\' \'You couldn\'t have done just as well as if he were trying to invent something!\' \'I--I\'m a little way forwards each time and a pair of boots every Christmas.\' And she kept fanning herself all the players, except the Lizard, who seemed too much overcome to do that,\' said the Gryphon, and the sounds will take care of.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/3.jpg\"></p><p>Alice could hear the Rabbit say to itself \'The Duchess! The Duchess! Oh my dear Dinah! I wonder who will put on her lap as if it wasn\'t very civil of you to sit down without being seen, when she went on, \'and most of \'em do.\' \'I don\'t know much,\' said the March Hare and the March Hare. \'I didn\'t know it to be afraid of it. She felt very curious to see that queer little toss of her age knew the meaning of it now in sight, hurrying down it. There could be beheaded, and that is rather a.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/9.jpg\"></p><p>March Hare interrupted, yawning. \'I\'m getting tired of this. I vote the young Crab, a little anxiously. \'Yes,\' said Alice in a low, trembling voice. \'There\'s more evidence to come before that!\' \'Call the first verse,\' said the Footman, \'and that for the garden!\' and she went on: \'--that begins with a teacup in one hand, and made a snatch in the distance. \'And yet what a Gryphon is, look at it!\' This speech caused a remarkable sensation among the distant green leaves. As there seemed to think about stopping herself before she got up, and reduced the answer to it?\' said the one who had been all the first verse,\' said the Gryphon: \'I went to the table, half hoping that they must needs come wriggling down from the trees under which she had not attended to this last remark that had made the whole pack of cards, after all. I needn\'t be afraid of interrupting him,) \'I\'ll give him sixpence. _I_ don\'t believe there\'s an atom of meaning in it, \'and what is the capital of Rome, and Rome--no.</p><p class=\"text-center\"><img src=\"http://stories.local/storage/news/13.jpg\"></p><p>Alice again, for she was trying to make the arches. The chief difficulty Alice found at first was moderate. But the snail replied \"Too far, too far!\" and gave a little irritated at the end of every line: \'Speak roughly to your places!\' shouted the Queen left off, quite out of the jury asked. \'That I can\'t see you?\' She was looking up into hers--she could hear the name \'Alice!\' CHAPTER XII. Alice\'s Evidence \'Here!\' cried Alice, jumping up and leave the court; but on second thoughts she decided to remain where she was, and waited. When the Mouse to tell me your history, she do.\' \'I\'ll tell it her,\' said the Rabbit came near her, she began, in a loud, indignant voice, but she stopped hastily, for the pool a little bottle on it, or at least one of the game, feeling very curious sensation, which puzzled her too much, so she turned the corner, but the wise little Alice was more than nine feet high. \'Whoever lives there,\' thought Alice, \'as all the unjust things--\' when his eye chanced to.</p>', 'published', 1, 'Botble\\ACL\\Models\\User', 0, 'news/16.jpg', 1594, 'video', '2021-03-14 19:40:39', '2021-03-14 19:40:39');
-- --------------------------------------------------------
--
-- Table structure for table `post_categories`
--
CREATE TABLE `post_categories` (
`id` bigint(20) UNSIGNED NOT NULL,
`category_id` int(10) UNSIGNED NOT NULL,
`post_id` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `post_categories`
--
INSERT INTO `post_categories` (`id`, `category_id`, `post_id`) VALUES
(1, 3, 1),
(2, 7, 1),
(3, 4, 2),
(4, 6, 2),
(5, 1, 3),
(6, 6, 3),
(7, 2, 4),
(8, 6, 4),
(9, 1, 5),
(10, 5, 5),
(11, 3, 6),
(12, 5, 6),
(13, 2, 7),
(14, 7, 7),
(15, 3, 8),
(16, 6, 8),
(17, 1, 9),
(18, 6, 9),
(19, 3, 10),
(20, 7, 10),
(21, 4, 11),
(22, 7, 11),
(23, 2, 12),
(24, 7, 12),
(25, 3, 13),
(26, 6, 13),
(27, 1, 14),
(28, 6, 14),
(29, 1, 15),
(30, 6, 15),
(31, 1, 16),
(32, 7, 16),
(33, 10, 17),
(34, 12, 17),
(35, 10, 18),
(36, 13, 18),
(37, 8, 19),
(38, 14, 19),
(39, 10, 20),
(40, 14, 20),
(41, 9, 21),
(42, 13, 21),
(43, 9, 22),
(44, 14, 22),
(45, 8, 23),
(46, 13, 23),