-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
roadmap.sql
649 lines (631 loc) · 51.5 KB
/
roadmap.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
-- -------------------------------------------------------------
-- TablePlus 3.12.6(366)
--
-- https://tableplus.com/
--
-- Database: roadmap
-- Generation Time: 2021-08-08 10:18:16.4690
-- -------------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
CREATE TABLE `levels` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`position` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
CREATE TABLE `link_topic` (
`link_id` bigint(20) unsigned NOT NULL,
`topic_id` bigint(20) unsigned NOT NULL,
KEY `link_id_fk_4355454` (`link_id`),
KEY `topic_id_fk_4355454` (`topic_id`),
CONSTRAINT `link_id_fk_4355454` FOREIGN KEY (`link_id`) REFERENCES `links` (`id`) ON DELETE CASCADE,
CONSTRAINT `topic_id_fk_4355454` FOREIGN KEY (`topic_id`) REFERENCES `topics` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
CREATE TABLE `link_types` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
CREATE TABLE `links` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`type_id` bigint(20) unsigned DEFAULT NULL,
`position` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `type_fk_4355451` (`type_id`),
CONSTRAINT `type_fk_4355451` FOREIGN KEY (`type_id`) REFERENCES `link_types` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=196 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
CREATE TABLE `projects` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` longtext COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`level_id` bigint(20) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `level_fk_4355474` (`level_id`),
CONSTRAINT `level_fk_4355474` FOREIGN KEY (`level_id`) REFERENCES `levels` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
CREATE TABLE `topics` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`topic_id` bigint(20) unsigned DEFAULT NULL,
`level_id` bigint(20) unsigned DEFAULT NULL,
`position` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `topic_fk_4355444` (`topic_id`),
KEY `level_fk_4355464` (`level_id`),
CONSTRAINT `level_fk_4355464` FOREIGN KEY (`level_id`) REFERENCES `levels` (`id`),
CONSTRAINT `topic_fk_4355444` FOREIGN KEY (`topic_id`) REFERENCES `topics` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=142 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
INSERT INTO `levels` (`id`, `name`, `position`, `created_at`, `updated_at`, `deleted_at`, `description`) VALUES
(1, 'Beginner', 1, '2021-07-10 19:33:21', '2021-07-13 08:23:22', NULL, 'Create your very first simple Laravel project'),
(2, 'Mid', 3, '2021-07-10 19:33:27', '2021-07-23 06:13:07', NULL, 'Master all Laravel features with 3-5 years of practical experience'),
(3, 'Senior', 4, '2021-07-10 19:33:33', '2021-07-30 14:51:33', NULL, 'Responsibility for architecture decisions on large projects'),
(4, 'Advanced Beginner', 2, '2021-07-13 08:23:32', '2021-07-13 08:23:32', NULL, 'The goal of this level is to find the first job or freelance gig');
INSERT INTO `link_topic` (`link_id`, `topic_id`) VALUES
(1, 1),
(2, 4),
(3, 3),
(4, 4),
(5, 8),
(6, 8),
(7, 14),
(8, 15),
(9, 37),
(10, 37),
(11, 16),
(12, 26),
(13, 26),
(14, 27),
(15, 28),
(16, 28),
(17, 19),
(18, 22),
(19, 23),
(20, 23),
(21, 23),
(22, 24),
(23, 18),
(24, 34),
(25, 33),
(26, 39),
(27, 10),
(28, 11),
(29, 13),
(30, 36),
(31, 60),
(32, 59),
(33, 21),
(34, 21),
(35, 50),
(36, 51),
(37, 52),
(38, 53),
(39, 53),
(40, 30),
(41, 30),
(42, 61),
(43, 61),
(44, 61),
(45, 61),
(46, 62),
(47, 63),
(48, 63),
(49, 64),
(50, 64),
(51, 70),
(52, 76),
(53, 69),
(54, 69),
(55, 54),
(56, 56),
(57, 56),
(58, 57),
(59, 57),
(60, 58),
(61, 58),
(62, 58),
(63, 58),
(64, 58),
(65, 66),
(66, 67),
(67, 67),
(68, 68),
(69, 77),
(70, 77),
(71, 77),
(72, 77),
(73, 77),
(74, 72),
(75, 73),
(76, 72),
(77, 78),
(78, 78),
(79, 78),
(80, 79),
(81, 79),
(82, 78),
(83, 81),
(84, 17),
(85, 17),
(86, 82),
(87, 83),
(88, 84),
(89, 84),
(90, 86),
(91, 87),
(92, 88),
(93, 89),
(94, 89),
(95, 89),
(96, 90),
(97, 91),
(98, 92),
(99, 93),
(100, 93),
(101, 94),
(102, 94),
(103, 95),
(104, 96),
(105, 40),
(106, 42),
(107, 44),
(108, 46),
(109, 32),
(110, 97),
(111, 98),
(112, 99),
(113, 100),
(114, 100),
(115, 101),
(116, 101),
(117, 101),
(118, 101),
(119, 102),
(120, 103),
(121, 104),
(122, 104),
(123, 74),
(124, 101),
(125, 13),
(126, 105),
(127, 105),
(128, 106),
(129, 106),
(130, 108),
(131, 108),
(132, 109),
(133, 110),
(134, 112),
(135, 113),
(136, 113),
(137, 113),
(138, 115),
(139, 116),
(140, 116),
(141, 42),
(142, 86),
(143, 86),
(144, 88),
(145, 97),
(146, 32),
(147, 32),
(148, 90),
(149, 90),
(150, 91),
(151, 117),
(152, 119),
(153, 119),
(154, 119),
(155, 119),
(156, 119),
(157, 138),
(158, 139),
(159, 140),
(160, 121),
(161, 121),
(162, 121),
(163, 121),
(164, 98),
(165, 47),
(166, 35),
(167, 122),
(168, 122),
(169, 122),
(170, 123),
(171, 123),
(172, 123),
(173, 124),
(174, 125),
(175, 125),
(176, 125),
(177, 129),
(178, 129),
(179, 127),
(180, 129),
(181, 128),
(182, 128),
(183, 130),
(184, 130),
(185, 132),
(186, 132),
(187, 133),
(188, 133),
(189, 133),
(190, 135),
(191, 135),
(192, 137),
(193, 137),
(194, 137),
(195, 141);
INSERT INTO `link_types` (`id`, `name`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'Article', '2021-07-10 19:33:39', '2021-07-10 19:33:39', NULL),
(2, 'Course', '2021-07-10 19:33:43', '2021-07-10 19:33:43', NULL),
(3, 'Official Docs', '2021-07-10 19:33:49', '2021-07-10 19:33:49', NULL),
(4, 'Video', '2021-07-17 06:08:55', '2021-07-17 06:08:55', NULL);
INSERT INTO `links` (`id`, `title`, `url`, `created_at`, `updated_at`, `deleted_at`, `type_id`, `position`) VALUES
(1, 'Laravel Routing - Full Documentation Page', 'https://laravel.com/docs/8.x/routing', '2021-07-12 12:30:45', '2021-07-13 09:20:26', '2021-07-13 09:20:26', 3, 0),
(2, 'Laravel Resource Controllers', 'https://laravel.com/docs/8.x/controllers#resource-controllers', '2021-07-12 12:32:40', '2021-07-12 12:32:40', NULL, 3, 0),
(3, 'Basic Controllers with Routes', 'https://laravel.com/docs/8.x/controllers#basic-controllers', '2021-07-12 12:35:32', '2021-07-12 12:35:32', NULL, 3, 0),
(4, 'Simple Laravel CRUD with Resource Controllers [digitalocean.com]', 'https://www.digitalocean.com/community/tutorials/simple-laravel-crud-with-resource-controllers', '2021-07-12 12:36:45', '2021-07-12 12:36:45', NULL, 1, 0),
(5, 'View Routes', 'https://laravel.com/docs/8.x/routing#view-routes', '2021-07-13 09:09:49', '2021-07-13 09:09:49', NULL, 3, 2),
(6, 'Basic Routing', 'https://laravel.com/docs/8.x/routing#basic-routing', '2021-07-13 09:10:11', '2021-07-13 09:10:11', NULL, 3, 1),
(7, 'Laravel Blade - Full Documentation Page', 'https://laravel.com/docs/8.x/blade', '2021-07-13 09:15:35', '2021-07-13 09:20:24', '2021-07-13 09:20:24', 3, 0),
(8, 'Blade: Displaying Data', 'https://laravel.com/docs/8.x/blade#displaying-data', '2021-07-13 09:16:16', '2021-07-13 09:16:23', NULL, 3, 0),
(9, 'Blade: If-Statements', 'https://laravel.com/docs/8.x/blade#if-statements', '2021-07-13 09:18:04', '2021-07-13 09:18:04', NULL, 3, 0),
(10, 'Blade Loops', 'https://laravel.com/docs/8.x/blade#loops', '2021-07-13 09:18:26', '2021-07-13 09:18:26', NULL, 3, 0),
(11, 'Blade: Layout Using Template Inheritance', 'https://laravel.com/docs/8.x/blade#layouts-using-template-inheritance', '2021-07-13 09:19:46', '2021-07-13 09:19:46', NULL, 3, 0),
(12, 'Laravel Breeze Official Documentation', 'https://laravel.com/docs/8.x/starter-kits#laravel-breeze', '2021-07-13 09:21:02', '2021-07-13 09:21:02', NULL, 3, 0),
(13, 'Laravel UI: Official Github Page', 'https://github.com/laravel/ui', '2021-07-13 09:21:27', '2021-07-13 09:21:27', NULL, 3, 0),
(14, 'Retrieving the Authenticated User', 'https://laravel.com/docs/8.x/authentication#retrieving-the-authenticated-user', '2021-07-13 09:22:41', '2021-07-13 09:22:41', NULL, 3, 0),
(15, 'Determining If The Current User Is Authenticated', 'https://laravel.com/docs/8.x/authentication#determining-if-the-current-user-is-authenticated', '2021-07-13 09:23:33', '2021-07-13 09:24:15', NULL, 3, 0),
(16, 'Blade: Authentication Directives', 'https://laravel.com/docs/8.x/blade#authentication-directives', '2021-07-13 09:24:00', '2021-07-13 09:24:00', NULL, 3, 0),
(17, 'Database Migrations', 'https://laravel.com/docs/8.x/migrations', '2021-07-13 09:25:36', '2021-07-13 09:25:36', NULL, 3, 0),
(18, 'Eloquent: Getting Started', 'https://laravel.com/docs/8.x/eloquent', '2021-07-13 09:26:26', '2021-07-13 09:26:26', NULL, 3, 0),
(19, 'Eloquent Relationships: One-to-Many', 'https://laravel.com/docs/8.x/eloquent-relationships#one-to-many', '2021-07-13 09:31:41', '2021-07-13 09:32:47', NULL, 3, 0),
(20, 'Eloquent Relationships: BelongsTo', 'https://laravel.com/docs/8.x/eloquent-relationships#one-to-many-inverse', '2021-07-13 09:32:08', '2021-07-13 09:32:08', NULL, 3, 0),
(21, 'Eloquent Relationships: Many-to-Many', 'https://laravel.com/docs/8.x/eloquent-relationships#many-to-many', '2021-07-13 09:32:36', '2021-07-13 09:32:36', NULL, 3, 0),
(22, 'Relationships: Eager Loading', 'https://laravel.com/docs/8.x/eloquent-relationships#eager-loading', '2021-07-13 09:34:00', '2021-07-13 09:34:00', NULL, 3, 0),
(23, 'Laravel Validation', 'https://laravel.com/docs/8.x/validation', '2021-07-13 09:34:42', '2021-07-13 09:34:42', NULL, 3, 0),
(24, 'Filesystem: File Uploads', 'https://laravel.com/docs/8.x/filesystem#file-uploads', '2021-07-13 09:35:38', '2021-07-13 09:36:02', NULL, 3, 0),
(25, 'Database Pagination', 'https://laravel.com/docs/8.x/pagination', '2021-07-13 09:37:07', '2021-07-13 09:37:07', NULL, 3, 0),
(26, 'Route Parameters', 'https://laravel.com/docs/8.x/routing#route-parameters', '2021-07-14 08:31:33', '2021-07-14 08:31:33', NULL, 3, 0),
(27, 'Named Routes', 'https://laravel.com/docs/8.x/routing#named-routes', '2021-07-17 05:59:20', '2021-07-17 05:59:20', NULL, 3, 0),
(28, 'Route Groups', 'https://laravel.com/docs/8.x/routing#route-groups', '2021-07-17 05:59:43', '2021-07-17 05:59:43', NULL, 3, 0),
(29, 'Route Model Binding', 'https://laravel.com/docs/8.x/routing#route-model-binding', '2021-07-17 06:00:09', '2021-07-17 06:00:09', NULL, 3, 0),
(30, 'Redirect Routes', 'https://laravel.com/docs/8.x/routing#redirect-routes', '2021-07-17 06:00:35', '2021-07-17 06:00:47', NULL, 3, 0),
(31, 'Defining Middleware', 'https://laravel.com/docs/8.x/middleware#defining-middleware', '2021-07-17 06:01:32', '2021-07-17 06:01:32', NULL, 3, 0),
(32, 'Protecting Routes', 'https://laravel.com/docs/8.x/authentication#protecting-routes', '2021-07-17 06:02:21', '2021-07-17 06:02:21', NULL, 3, 0),
(33, 'Database: Seeding', 'https://laravel.com/docs/8.x/seeding', '2021-07-17 06:03:10', '2021-07-17 06:03:10', NULL, 3, 0),
(34, 'Defining Model Factories', 'https://laravel.com/docs/8.x/database-testing#defining-model-factories', '2021-07-17 06:05:13', '2021-07-17 06:05:13', NULL, 3, 0),
(35, 'Eloquent: Query Scopes', 'https://laravel.com/docs/8.x/eloquent#query-scopes', '2021-07-17 06:05:41', '2021-07-17 06:05:41', NULL, 3, 0),
(36, 'Polymorphic Relationships', 'https://laravel.com/docs/8.x/eloquent-relationships#polymorphic-relationships', '2021-07-17 06:06:09', '2021-07-17 06:06:09', NULL, 3, 0),
(37, 'Accessors & Mutators', 'https://laravel.com/docs/8.x/eloquent-mutators#accessors-and-mutators', '2021-07-17 06:06:34', '2021-07-17 06:06:34', NULL, 3, 0),
(38, 'Eloquent Collections', 'https://laravel.com/docs/8.x/eloquent-collections', '2021-07-17 06:07:10', '2021-07-17 06:07:10', NULL, 3, 0),
(39, 'General Laravel Collections', 'https://laravel.com/docs/8.x/collections', '2021-07-17 06:07:45', '2021-07-17 06:07:45', NULL, 3, 0),
(40, 'Authorization', 'https://laravel.com/docs/8.x/authorization', '2021-07-17 06:08:31', '2021-07-17 06:08:31', NULL, 3, 0),
(41, 'Laravel Roles and Permissions: All CORE Things You Need To Know', 'https://www.youtube.com/watch?v=kZOgH3-0Bko', '2021-07-17 06:09:17', '2021-07-17 06:09:17', NULL, 4, 0),
(42, 'Spatie Laravel Permission: Example Project Review', 'https://www.youtube.com/watch?v=NgToi0uiMNQ', '2021-07-17 06:10:21', '2021-07-17 06:10:21', NULL, 4, 0),
(43, 'Two Best Laravel Packages to Manage Roles/Permissions', 'https://laravel-news.com/two-best-roles-permissions-packages', '2021-07-17 06:10:49', '2021-07-17 06:10:49', NULL, 1, 0),
(44, 'spatie/laravel-permission', 'https://github.com/spatie/laravel-permission', '2021-07-17 06:11:15', '2021-07-17 06:11:15', NULL, 3, 0),
(45, 'JosephSilber/bouncer', 'https://github.com/JosephSilber/bouncer', '2021-07-17 06:11:34', '2021-07-17 06:11:34', NULL, 3, 0),
(46, 'Email Verification', 'https://laravel.com/docs/8.x/verification', '2021-07-17 06:13:07', '2021-07-17 06:13:07', NULL, 3, 0),
(47, 'File Storage', 'https://laravel.com/docs/8.x/filesystem', '2021-07-17 06:14:32', '2021-07-17 06:14:32', NULL, 3, 0),
(48, 'Laravel: How to Upload Files to Amazon S3', 'https://www.youtube.com/watch?v=xZQM9q_QxMA', '2021-07-17 06:15:15', '2021-07-17 06:15:15', NULL, 4, 0),
(49, 'spatie/laravel-medialibrary', 'https://github.com/spatie/laravel-medialibrary', '2021-07-17 06:16:13', '2021-07-17 06:16:13', NULL, 3, 0),
(50, 'intervention/image', 'https://github.com/Intervention/image', '2021-07-17 06:16:43', '2021-07-17 06:16:43', NULL, 3, 0),
(51, 'Eloquent: API Resources', 'https://laravel.com/docs/8.x/eloquent-resources', '2021-07-17 06:17:47', '2021-07-17 06:17:47', NULL, 3, 0),
(52, 'Laravel Sanctum', 'https://laravel.com/docs/8.x/sanctum', '2021-07-17 06:19:12', '2021-07-17 06:19:12', NULL, 3, 0),
(53, 'API Resource Routes', 'https://laravel.com/docs/8.x/controllers#api-resource-routes', '2021-07-17 06:20:13', '2021-07-17 06:20:13', NULL, 3, 0),
(54, 'Default Route Files', 'https://laravel.com/docs/8.x/routing#the-default-route-files', '2021-07-17 06:21:04', '2021-07-17 06:21:04', NULL, 3, 0),
(55, 'Logging', 'https://laravel.com/docs/8.x/logging', '2021-07-17 06:21:56', '2021-07-17 06:21:56', NULL, 3, 0),
(56, 'Error Handling', 'https://laravel.com/docs/8.x/errors', '2021-07-17 06:22:48', '2021-07-17 06:22:48', NULL, 3, 0),
(57, 'Exceptions in Laravel: Why/How to Use and Create Your Own', 'https://www.youtube.com/watch?v=RTTXZVIL6tw', '2021-07-17 06:23:53', '2021-07-17 06:23:53', NULL, 4, 0),
(58, 'Custom HTTP Error Pages', 'https://laravel.com/docs/8.x/errors#custom-http-error-pages', '2021-07-17 06:25:05', '2021-07-17 06:25:05', NULL, 3, 0),
(59, 'Laravel Error Pages: Change Text or Customize Layouts', 'https://www.youtube.com/watch?v=iMAFUi6Z57k', '2021-07-17 06:25:17', '2021-07-17 06:25:17', NULL, 4, 0),
(60, 'Bugsnag Laravel', 'https://docs.bugsnag.com/platforms/php/laravel/', '2021-07-17 06:26:09', '2021-07-17 06:26:09', NULL, 3, 0),
(61, 'Flare Homepage', 'https://flareapp.io/', '2021-07-17 06:26:44', '2021-07-17 06:26:44', NULL, 3, 0),
(62, 'Sentry Laravel', 'https://docs.sentry.io/platforms/php/guides/laravel/', '2021-07-17 06:27:10', '2021-07-17 06:27:10', NULL, 3, 0),
(63, 'Rollbar Laravel', 'https://docs.rollbar.com/docs/laravel', '2021-07-17 06:27:34', '2021-07-17 06:27:34', NULL, 3, 0),
(64, 'Bug Tracking in Laravel: Bugsnag vs Flare [Demo/Review]', 'https://www.youtube.com/watch?v=88UqUXhWwGA', '2021-07-17 06:28:17', '2021-07-17 06:28:17', NULL, 4, 0),
(65, 'Mail & Mailables', 'https://laravel.com/docs/8.x/mail', '2021-07-17 06:31:48', '2021-07-17 06:31:48', NULL, 3, 0),
(66, 'How to Send Email From Laravel, and Why We Need 3rd Party Providers For It', 'https://laraveldaily.com/how-to-send-email-from-laravel-and-why-we-need-3rd-party-providers-for-it/', '2021-07-17 06:32:26', '2021-07-17 06:32:26', NULL, 1, 0),
(67, 'Mail: Drivers Prerequisites', 'https://laravel.com/docs/8.x/mail#driver-prerequisites', '2021-07-17 06:32:55', '2021-07-17 06:32:55', NULL, 3, 0),
(68, 'Notifications', 'https://laravel.com/docs/8.x/notifications', '2021-07-17 06:33:32', '2021-07-17 06:33:32', NULL, 3, 0),
(69, 'barryvdh/laravel-debugbar', 'https://github.com/barryvdh/laravel-debugbar', '2021-07-17 06:37:27', '2021-07-17 06:37:27', NULL, 3, 0),
(70, 'Laravel Telescope', 'https://laravel.com/docs/8.x/telescope', '2021-07-17 06:37:55', '2021-07-17 06:37:55', NULL, 3, 0),
(71, 'Spatie Ray (Premium Tool)', 'https://myray.app/', '2021-07-17 06:38:52', '2021-07-17 06:38:52', NULL, 3, 0),
(72, 'Debug Eloquent Queries from API: Laravel Telescope', 'https://www.youtube.com/watch?v=SR3RzIfeozI', '2021-07-17 06:40:46', '2021-07-17 06:40:46', NULL, 4, 0),
(73, 'Spatie Ray: Laravel Debugging with Pleasure', 'https://www.youtube.com/watch?v=n4pMxyAXeqY', '2021-07-17 06:41:22', '2021-07-17 06:41:22', NULL, 4, 0),
(74, 'Testing: Getting Started', 'https://laravel.com/docs/8.x/testing', '2021-07-17 06:43:24', '2021-07-17 06:43:24', NULL, 3, 0),
(75, 'Database Testing', 'https://laravel.com/docs/8.x/database-testing', '2021-07-17 06:44:04', '2021-07-17 06:44:04', NULL, 3, 0),
(76, 'Laravel: PHPUnit Testing for Beginners', 'https://laraveldaily.teachable.com/p/laravel-phpunit-testing-for-beginners', '2021-07-17 06:44:40', '2021-07-17 06:44:40', NULL, 2, 0),
(77, 'Deployment', 'https://laravel.com/docs/8.x/deployment', '2021-07-17 06:46:36', '2021-07-17 06:46:36', NULL, 3, 0),
(78, 'How to Deploy Laravel Projects to Live Server: The Ultimate Guide', 'https://laraveldaily.com/how-to-deploy-laravel-projects-to-live-server-the-ultimate-guide/', '2021-07-17 06:46:59', '2021-07-17 06:46:59', NULL, 1, 0),
(79, 'What Server is Needed to Deploy Laravel Projects', 'https://laraveldaily.com/what-server-is-needed-to-deploy-laravel-projects/', '2021-07-17 06:47:22', '2021-07-17 06:47:22', NULL, 1, 0),
(80, 'Git', 'https://git-scm.com/', '2021-07-17 06:47:58', '2021-07-17 06:47:58', NULL, 3, 0),
(81, 'Git in Laravel. Part 1 - Branches: Main, Develop and Feature', 'https://www.youtube.com/watch?v=AmScEC-_72I', '2021-07-17 06:48:28', '2021-07-17 06:48:28', NULL, 4, 0),
(82, 'How we Deploy Laravel: Branches, Staging Servers, Forge and Envoyer', 'https://www.youtube.com/watch?v=8DVuVftFZcQ', '2021-07-17 06:49:07', '2021-07-17 06:49:07', NULL, 4, 0),
(83, 'Laravel Horizon', 'https://laravel.com/docs/8.x/horizon', '2021-07-22 03:03:23', '2021-07-22 03:03:23', NULL, 3, 0),
(84, 'Blade Components', 'https://laravel.com/docs/8.x/blade#components', '2021-07-22 04:50:33', '2021-07-22 04:50:33', NULL, 3, 0),
(85, 'Laravel Blade Components: Two Examples - Laravel Breeze/UI', 'https://www.youtube.com/watch?v=HybWBINeXMw', '2021-07-22 04:51:04', '2021-07-22 04:51:04', NULL, 4, 0),
(86, 'Soft Deleting', 'https://laravel.com/docs/8.x/eloquent#soft-deleting', '2021-07-22 05:15:52', '2021-07-22 05:15:52', NULL, 3, 0),
(87, 'Postman API Client', 'https://www.postman.com/product/api-client/', '2021-07-22 05:39:07', '2021-07-22 05:39:07', NULL, 3, 0),
(88, 'Laravel API 404 Error: Customize Exception Message', 'https://www.youtube.com/watch?v=SlBJrLnyoMk', '2021-07-22 05:43:29', '2021-07-22 05:43:29', NULL, 4, 0),
(89, 'HTTP Status Codes', 'https://httpstatuses.com/', '2021-07-22 05:44:21', '2021-07-22 05:44:21', NULL, 1, 0),
(90, 'Eloquent Observers', 'https://laravel.com/docs/8.x/eloquent#observers', '2021-07-23 04:23:19', '2021-07-23 04:23:19', NULL, 3, 0),
(91, 'Query Builder: Raw Expressions', 'https://laravel.com/docs/8.x/queries#raw-expressions', '2021-07-23 04:24:46', '2021-07-23 04:24:46', NULL, 3, 0),
(92, 'Cache', 'https://laravel.com/docs/8.x/cache', '2021-07-23 04:26:17', '2021-07-23 04:26:17', NULL, 3, 0),
(93, 'All About Eloquent', 'https://laravel.com/docs/8.x/eloquent', '2021-07-23 04:29:58', '2021-07-23 04:29:58', NULL, 3, 0),
(94, 'Eloquent: Expert Level', 'https://laraveldaily.teachable.com/p/laravel-eloquent-expert-level', '2021-07-23 04:30:40', '2021-07-23 04:30:40', NULL, 2, 0),
(95, '20 Laravel Eloquent Tips and Tricks', 'https://laravel-news.com/eloquent-tips-tricks', '2021-07-23 04:31:00', '2021-07-23 04:31:00', NULL, 1, 0),
(96, 'Laravel Jetstream', 'https://jetstream.laravel.com', '2021-07-23 04:36:42', '2021-07-23 04:36:42', NULL, 3, 0),
(97, 'Laravel Fortify', 'https://laravel.com/docs/8.x/fortify', '2021-07-23 04:37:37', '2021-07-23 04:37:37', NULL, 3, 0),
(98, 'Laravel API: How to Upload File from Vue.js', 'https://blog.quickadminpanel.com/laravel-api-how-to-upload-file-from-vue-js/', '2021-07-23 04:40:53', '2021-07-23 04:40:53', NULL, 1, 0),
(99, 'Laravel API Documentation with OpenAPI/Swagger', 'https://blog.quickadminpanel.com/laravel-api-documentation-with-openapiswagger/', '2021-07-23 04:42:46', '2021-07-23 04:42:46', NULL, 1, 0),
(100, 'Scribe: New Package for Laravel API Documentation', 'https://www.youtube.com/watch?v=PjwGI8c2IfA', '2021-07-23 04:43:18', '2021-07-23 04:43:18', NULL, 4, 0),
(101, 'Versioning your REST API with Laravel', 'https://codimth.com/blog/web/laravel/versioning-your-rest-api-laravel', '2021-07-23 04:46:49', '2021-07-23 04:46:49', NULL, 1, 0),
(102, 'Versioning your API: from V1 to V2 and Beyond [video from my course]', 'https://laraveldaily.teachable.com/courses/how-to-create-laravel-api/lectures/17568998', '2021-07-23 04:48:00', '2021-07-23 04:48:00', NULL, 4, 0),
(103, 'Vue.js + Laravel: CRUD with SPA', 'https://laraveldaily.teachable.com/p/vue-laravel-crud-spa', '2021-07-23 04:50:29', '2021-07-23 04:50:29', NULL, 2, 0),
(104, 'Using Sanctum to authenticate a mobile app', 'https://laravel-news.com/using-sanctum-to-authenticate-a-mobile-app', '2021-07-23 04:51:30', '2021-07-23 04:51:30', NULL, 1, 0),
(105, 'Route Caching', 'https://laravel.com/docs/8.x/routing#route-caching', '2021-07-23 04:53:23', '2021-07-23 04:53:23', NULL, 3, 0),
(106, 'Rate Limiting', 'https://laravel.com/docs/8.x/routing#rate-limiting', '2021-07-23 04:53:43', '2021-07-23 04:53:43', NULL, 3, 0),
(107, 'Single Action Controllers', 'https://laravel.com/docs/8.x/controllers#single-action-controllers', '2021-07-23 04:54:20', '2021-07-23 04:54:20', NULL, 3, 0),
(108, 'Extending Blade', 'https://laravel.com/docs/8.x/blade#extending-blade', '2021-07-23 04:55:51', '2021-07-23 04:55:51', NULL, 3, 0),
(109, 'Events and Listeners', 'https://laravel.com/docs/8.x/events', '2021-07-23 04:57:47', '2021-07-23 04:57:47', NULL, 3, 0),
(110, 'Writing Artisan Commands', 'https://laravel.com/docs/8.x/artisan#writing-commands', '2021-07-23 04:58:44', '2021-07-23 04:59:43', NULL, 3, 0),
(111, 'Task Scheduling', 'https://laravel.com/docs/8.x/scheduling', '2021-07-23 05:00:36', '2021-07-23 05:00:36', NULL, 3, 0),
(112, 'Laravel Socialite', 'https://laravel.com/docs/8.x/socialite', '2021-07-23 05:01:17', '2021-07-23 05:01:17', NULL, 3, 0),
(113, 'HTTP Client', 'https://laravel.com/docs/8.x/http-client', '2021-07-23 05:02:12', '2021-07-23 05:02:12', NULL, 3, 0),
(114, 'Laravel and External APIs: Get Data with HTTP Client', 'https://www.youtube.com/watch?v=oEDDZsmMLc0', '2021-07-23 05:02:42', '2021-07-23 05:02:42', NULL, 4, 0),
(115, 'Creating Jobs', 'https://laravel.com/docs/8.x/queues#creating-jobs', '2021-07-23 05:12:13', '2021-07-23 05:12:13', NULL, 3, 0),
(116, 'Queueing Notifications', 'https://laravel.com/docs/8.x/notifications#queueing-notifications', '2021-07-23 05:12:49', '2021-07-23 05:12:49', NULL, 3, 0),
(117, 'Queued Event Listeners', 'https://laravel.com/docs/8.x/events#queued-event-listeners', '2021-07-23 05:13:21', '2021-07-23 05:13:21', NULL, 3, 0),
(118, 'Queueing Mail', 'https://laravel.com/docs/8.x/mail#queueing-mail', '2021-07-23 05:14:05', '2021-07-23 05:14:05', NULL, 3, 0),
(119, 'Dealing with Failed Jobs', 'https://laravel.com/docs/8.x/queues#dealing-with-failed-jobs', '2021-07-23 05:15:00', '2021-07-23 05:15:00', NULL, 3, 0),
(120, 'Dispatching Jobs', 'https://laravel.com/docs/8.x/queues#dispatching-jobs', '2021-07-23 05:15:46', '2021-07-23 05:15:46', NULL, 3, 0),
(121, 'Running the Queue Worker', 'https://laravel.com/docs/8.x/queues#running-the-queue-worker', '2021-07-23 05:17:06', '2021-07-23 05:17:06', NULL, 3, 0),
(122, 'Configuring Supervisor', 'https://laravel.com/docs/8.x/queues#supervisor-configuration', '2021-07-23 05:17:33', '2021-07-23 05:17:33', NULL, 3, 0),
(123, 'Queues in Laravel', 'https://laraveldaily.teachable.com/p/queues-in-laravel', '2021-07-23 05:18:05', '2021-07-23 05:18:05', NULL, 2, 0),
(124, 'Laravel Queues 101: Example with Sending Emails', 'https://www.youtube.com/watch?v=rVx8xKisbr8', '2021-07-23 05:18:41', '2021-07-23 05:18:41', NULL, 4, 0),
(125, 'Laravel Route Model Binding: All You Need To Know', 'https://www.youtube.com/watch?v=6dEfxGLgevM', '2021-07-23 05:39:07', '2021-07-23 05:39:07', NULL, 4, 0),
(126, 'Laravel Cashier (Stripe)', 'https://laravel.com/docs/8.x/billing', '2021-07-23 05:53:53', '2021-07-23 05:53:53', NULL, 3, 0),
(127, 'Laravel Cashier (Paddle)', 'https://laravel.com/docs/8.x/cashier-paddle', '2021-07-23 05:54:18', '2021-07-23 05:54:18', NULL, 3, 0),
(128, 'Subscription billing with Laravel Cashier for Mollie', 'https://github.com/laravel/cashier-mollie', '2021-07-23 05:55:51', '2021-07-23 05:55:51', NULL, 1, 0),
(129, 'How To Integrate Paypal Payment Gateway In Laravel', 'https://websolutionstuff.com/post/how-to-integrate-paypal-payment-gateway-in-laravel', '2021-07-23 05:57:06', '2021-07-23 05:57:06', NULL, 1, 0),
(130, 'Build A Laravel App With TDD', 'https://laracasts.com/series/build-a-laravel-app-with-tdd', '2021-07-23 05:59:45', '2021-07-23 05:59:45', NULL, 2, 0),
(131, 'TDD With Laravel', 'https://tddwithlaravel.com/', '2021-07-23 06:01:48', '2021-07-23 06:01:48', NULL, 2, 0),
(132, 'Mocking', 'https://laravel.com/docs/8.x/mocking', '2021-07-23 06:02:28', '2021-07-23 06:02:28', NULL, 3, 0),
(133, 'Laravel Dusk', 'https://laravel.com/docs/8.x/dusk', '2021-07-23 06:03:17', '2021-07-23 06:03:17', NULL, 3, 0),
(134, 'Laravel Scout', 'https://laravel.com/docs/8.x/scout', '2021-07-23 06:04:24', '2021-07-23 06:04:24', NULL, 3, 0),
(135, 'ElasticSearch Driver for Laravel Scout', 'https://laravel-news.com/explorer', '2021-07-23 06:05:33', '2021-07-23 06:05:33', NULL, 1, 0),
(136, 'Algolia: Scout Extended', 'https://www.algolia.com/doc/framework-integration/laravel/getting-started/introduction-to-scout-extended/?client=php', '2021-07-23 06:06:08', '2021-07-23 06:06:08', NULL, 3, 0),
(137, 'Full-Text Search with MeiliSearch and Laravel Scout', 'https://tighten.co/blog/full-text-search-with-meilisearch-and-scout/', '2021-07-23 06:07:00', '2021-07-23 06:07:00', NULL, 1, 0),
(138, 'How to Contribute to Laravel Docs (or any open-source repository)', 'https://www.youtube.com/watch?v=vEcT6JIFji0', '2021-07-23 06:08:09', '2021-07-23 06:08:09', NULL, 4, 0),
(139, 'Package Development', 'https://laravel.com/docs/8.x/packages', '2021-07-23 06:08:56', '2021-07-23 06:08:56', NULL, 3, 0),
(140, 'Laravel Package Development', 'https://laravelpackage.com/', '2021-07-23 06:09:47', '2021-07-23 06:09:47', NULL, 2, 0),
(141, 'Laravel: Create Public API with Cache and Rate Limits', 'https://www.youtube.com/watch?v=vrLcCxWlxOk', '2021-07-23 07:08:51', '2021-07-23 07:08:51', NULL, 4, 0),
(142, 'Laravel Model: Check if Any Field Was Changed', 'https://www.youtube.com/watch?v=_xluet13xxE', '2021-07-23 07:10:58', '2021-07-23 07:10:58', NULL, 4, 0),
(143, 'Eloquent Observers or Events Listeners? Which is Better?', 'https://www.youtube.com/watch?v=DvoaU6cQQHM', '2021-07-23 07:11:23', '2021-07-23 07:11:23', NULL, 4, 0),
(144, 'Cache Eloquent Query Results to Load Pages Instantly', 'https://www.youtube.com/watch?v=JhKngeE0XJA', '2021-07-23 07:12:11', '2021-07-23 07:12:11', NULL, 4, 0),
(145, 'How to Create Artisan Commands in Laravel', 'https://www.youtube.com/watch?v=-r3WnYy7g48', '2021-07-23 07:12:59', '2021-07-23 07:12:59', NULL, 4, 0),
(146, 'Laravel: 3 Ways to Send a Welcome Email (Controller vs Observer vs Events)', 'https://www.youtube.com/watch?v=ZWzH6SOzjhI', '2021-07-23 07:14:06', '2021-07-23 07:14:06', NULL, 4, 0),
(147, 'Laravel: Why Observers and Event Listeners are \"Risky\"', 'https://www.youtube.com/watch?v=A3bmLo77e5M', '2021-07-23 07:14:28', '2021-07-23 07:14:28', NULL, 4, 0),
(148, 'Laravel Jetstream+Livewire: Real Mini-Project', 'https://laraveldaily.teachable.com/p/laravel-jetstream-livewire-project', '2021-07-23 07:15:39', '2021-07-23 07:15:39', NULL, 2, 0),
(149, 'Laravel Jetstream: How it Works and Example How to Customize', 'https://www.youtube.com/watch?v=d8YgWApHMfA', '2021-07-23 07:16:14', '2021-07-23 07:16:14', NULL, 4, 0),
(150, 'Laravel Fortify: Four Auth Things to Customize', 'https://www.youtube.com/watch?v=Vr4LJU3kw1g', '2021-07-23 07:17:52', '2021-07-23 07:17:52', NULL, 4, 0),
(151, 'Broadcasting', 'https://laravel.com/docs/8.x/broadcasting', '2021-07-25 04:43:58', '2021-07-25 04:43:58', NULL, 3, 0),
(152, 'Laravel Design Patterns - Bobby Bouwmann - Laracon EU 2018 Amsterdam', 'https://www.youtube.com/watch?v=qpo5KG0vIyE', '2021-08-02 18:30:40', '2021-08-02 18:30:40', NULL, 4, 0),
(153, 'Laracasts: Design Patterns in PHP', 'https://laracasts.com/series/design-patterns-in-php', '2021-08-02 18:31:07', '2021-08-02 18:31:07', NULL, 2, 0),
(154, 'Colin Decarlo - Design Patterns with Laravel [Laracon 2018]', 'https://www.youtube.com/watch?v=e4ugSgGaCQ0', '2021-08-02 18:31:59', '2021-08-02 18:31:59', NULL, 4, 0),
(155, 'Matt Stauffer - Patterns That Pay Off [Laracon 2018]', 'https://www.youtube.com/watch?v=enTb2E4vEos', '2021-08-02 18:32:40', '2021-08-02 18:32:40', NULL, 4, 0),
(156, 'Design Patterns in PHP', 'https://refactoring.guru/design-patterns/php', '2021-08-02 18:33:01', '2021-08-02 18:33:01', NULL, 2, 0),
(157, 'Design Patterns PHP: Creational', 'https://designpatternsphp.readthedocs.io/en/latest/Creational/README.html', '2021-08-02 18:33:34', '2021-08-02 18:33:34', NULL, 1, 0),
(158, 'Design Patterns PHP: Structural', 'https://designpatternsphp.readthedocs.io/en/latest/Structural/README.html', '2021-08-02 18:33:58', '2021-08-02 18:33:58', NULL, 1, 0),
(159, 'Design Patterns PHP: Behavioral', 'https://designpatternsphp.readthedocs.io/en/latest/Behavioral/README.html', '2021-08-02 18:34:22', '2021-08-02 18:34:22', NULL, 1, 0),
(160, 'Becoming a better developer by using the SOLID design principles by Katerina Trajchevska', 'https://www.youtube.com/watch?v=rtmFCcjEgEw', '2021-08-03 08:00:15', '2021-08-03 08:00:15', NULL, 4, 0),
(161, 'Writing Maintainable Code: SOLID Principles Explained in PHP (Laravel)', 'https://geekflare.com/php-solid-principles/', '2021-08-03 08:01:01', '2021-08-03 08:01:01', NULL, 1, 0),
(162, 'Laracasts: SOLID Principles in PHP', 'https://laracasts.com/series/solid-principles-in-php', '2021-08-03 08:01:25', '2021-08-03 08:01:25', NULL, 2, 0),
(163, 'PHP Solid Principles [Playlist]', 'https://www.youtube.com/watch?v=ARxZV8OZ8Cg&list=PLNuh5_K9dfQ3jMU-2C2jYRGe2iXJkpCZj', '2021-08-03 08:01:54', '2021-08-03 08:01:54', NULL, 4, 0),
(164, 'Laravel Task Scheduling: Run Artisan Command Hourly', 'https://www.youtube.com/watch?v=r-KrsQ0dN80', '2021-08-04 04:31:18', '2021-08-04 04:31:18', NULL, 4, 0),
(165, 'How to Create Laravel API', 'https://laraveldaily.teachable.com/p/how-to-create-laravel-api', '2021-08-04 04:32:08', '2021-08-04 04:32:08', NULL, 2, 0),
(166, 'File Uploads in Laravel', 'https://laraveldaily.teachable.com/p/file-uploads-in-laravel', '2021-08-04 04:33:08', '2021-08-04 04:33:08', NULL, 2, 0),
(167, 'Scaling Laravel', 'https://courses.serversforhackers.com/scaling-laravel', '2021-08-05 08:39:02', '2021-08-05 08:39:02', NULL, 2, 0),
(168, 'Enterprise Laravel by Matt Stauffer', 'https://enterpriselaravel.com/', '2021-08-05 08:40:06', '2021-08-05 08:40:06', NULL, 4, 0),
(169, 'What the hell is scalable code anyway?', 'https://blog.sarasarya.com/what-the-hell-is-scalable-code-anyway-f6626ad78227', '2021-08-05 08:41:41', '2021-08-05 08:41:41', NULL, 1, 0),
(170, 'How would you know if you\'ve written readable and easily maintainable code? [forum thread]', 'https://softwareengineering.stackexchange.com/questions/141005/how-would-you-know-if-youve-written-readable-and-easily-maintainable-code', '2021-08-05 08:45:14', '2021-08-05 08:45:14', NULL, 1, 0),
(171, 'Crafting maintainable Laravel applications', 'https://jasonmccreary.me/articles/crafting-maintainable-laravel-applications/', '2021-08-05 08:47:29', '2021-08-05 08:47:29', NULL, 1, 0),
(172, '7 Golden Rules of Clean, Simple and Maintainable Code', 'https://shhetri.github.io/clean-code/#/', '2021-08-05 08:48:32', '2021-08-05 08:48:32', NULL, 1, 0),
(173, 'How to Create Reusable Code with Laravel 8 Traits', 'https://www.remotestack.io/how-to-create-reusable-code-with-laravel-traits/', '2021-08-05 08:50:23', '2021-08-05 08:51:05', '2021-08-05 08:51:05', 1, 0),
(174, 'Repository: alexeymezenin / laravel-best-practices', 'https://github.com/alexeymezenin/laravel-best-practices', '2021-08-05 08:51:55', '2021-08-05 08:51:55', NULL, 1, 0),
(175, 'PHP: The Right Way', 'https://phptherightway.com/', '2021-08-05 08:55:11', '2021-08-05 08:55:11', NULL, 2, 0),
(176, 'Reddit: What are your Laravel best practices?', 'https://www.reddit.com/r/laravel/comments/f34t86/what_are_your_laravel_best_practices/', '2021-08-05 08:56:16', '2021-08-05 08:56:16', NULL, 1, 0),
(177, '18 Tips to optimize laravel database queries', 'https://dudi.dev/optimize-laravel-database-queries/', '2021-08-06 05:21:00', '2021-08-06 05:21:00', NULL, 1, 0),
(178, 'Optimizing Laravel Part 2: Improving Query Performance with Database Indexing', 'https://deliciousbrains.com/optimizing-laravel-database-indexing-performance/', '2021-08-06 05:22:58', '2021-08-06 05:22:58', NULL, 1, 0),
(179, 'How to Structure Databases in Laravel', 'https://laraveldaily.teachable.com/p/how-to-structure-database-in-laravel', '2021-08-06 05:24:52', '2021-08-06 05:24:52', NULL, 2, 0),
(180, 'Eloquent Performance Patterns', 'https://eloquent-course.reinink.ca/', '2021-08-06 05:25:31', '2021-08-06 05:25:31', NULL, 2, 0),
(181, 'MongoDB and Laravel Integration', 'https://www.mongodb.com/compatibility/mongodb-laravel-intergration', '2021-08-06 05:30:11', '2021-08-06 05:30:11', NULL, 3, 0),
(182, 'MongoDB + Laravel = Love — When to use NoSQL', 'https://faun.pub/when-to-use-nosql-getting-started-with-mongodb-in-laravel-f5376ceaf545', '2021-08-06 05:31:34', '2021-08-06 05:31:34', NULL, 1, 0),
(183, 'Scaling Laravel App with Multiple Databases', 'https://devdojo.com/bobbyiliev/scaling-laravel-app-with-multiple-databases', '2021-08-06 05:34:36', '2021-08-06 05:34:36', NULL, 1, 0),
(184, 'Multiple DB Connections in Laravel', 'https://fideloper.com/laravel-multiple-database-connections', '2021-08-06 05:35:42', '2021-08-06 05:35:42', NULL, 1, 0),
(185, 'Laravel Deployer', 'https://github.com/lorisleiva/laravel-deployer', '2021-08-06 05:44:25', '2021-08-06 05:44:25', NULL, 3, 0),
(186, 'Envoyer - Zero Downtime PHP Deployment', 'https://envoyer.io/', '2021-08-06 05:44:56', '2021-08-06 05:44:56', NULL, 3, 0),
(187, 'Performant Laravel', 'https://serversforhackers.com/laravel-perf', '2021-08-06 05:47:15', '2021-08-06 05:47:15', NULL, 2, 0),
(188, 'The Ultimate Performance Checklist For Laravel Apps', 'https://laravel-news.com/performance-checklist', '2021-08-06 05:48:35', '2021-08-06 05:48:35', NULL, 1, 0),
(189, 'How to Optimize PHP Laravel Web Application for High Performance?', 'https://geekflare.com/laravel-optimization/', '2021-08-06 05:51:34', '2021-08-06 05:51:34', NULL, 1, 0),
(190, 'How to write testable code', 'https://dev.to/ddarrko/how-to-write-more-testable-code-oi7', '2021-08-06 05:54:08', '2021-08-06 05:54:08', NULL, 1, 0),
(191, 'Refactoring towards testability', 'https://madewithlove.com/blog/software-engineering/refactoring-untestable-code-towards-testability/', '2021-08-06 05:54:35', '2021-08-06 05:54:35', NULL, 1, 0),
(192, 'How to create a CI/CD for a Laravel application using GitHub Actions', 'https://blog.logrocket.com/how-to-create-a-ci-cd-for-a-laravel-application-using-github-actions/', '2021-08-06 05:57:59', '2021-08-06 05:57:59', NULL, 1, 0),
(193, 'Configure Laravel 8 for CI/CD with Jenkins and GitHub — Part 1', 'https://faun.pub/configure-laravel-8-for-ci-cd-with-jenkins-and-github-part-1-58b9be304292', '2021-08-06 05:59:06', '2021-08-06 05:59:06', NULL, 1, 0),
(194, 'Build, Test, and Deploy Your Laravel Application With GitHub Actions', 'https://www.twilio.com/blog/build-test-deploy-laravel-application-github-actions', '2021-08-06 05:59:47', '2021-08-06 05:59:47', NULL, 1, 0),
(195, 'Laravel Passport', 'https://laravel.com/docs/8.x/passport', '2021-08-08 07:14:45', '2021-08-08 07:14:45', NULL, 3, 0);
INSERT INTO `projects` (`id`, `name`, `description`, `created_at`, `updated_at`, `deleted_at`, `level_id`) VALUES
(1, 'Building a Simple Blog with Authentication', 'Description of the project is coming soon.', '2021-07-13 08:55:14', '2021-07-17 07:04:59', NULL, 1),
(2, 'Mini CRM', 'Description of the project is coming soon.', '2021-07-17 07:05:21', '2021-07-17 07:05:21', NULL, 4);
INSERT INTO `topics` (`id`, `name`, `created_at`, `updated_at`, `deleted_at`, `topic_id`, `level_id`, `position`) VALUES
(1, 'Routing and Controllers: Basics', '2021-07-12 12:23:27', '2021-07-13 08:19:39', NULL, NULL, 1, 1),
(2, 'Database Basics', '2021-07-12 12:23:36', '2021-07-13 08:35:03', NULL, NULL, 1, 4),
(3, 'Routing to a Single Controller Method', '2021-07-12 12:24:24', '2021-07-12 12:35:40', NULL, 1, 1, 2),
(4, 'Route Resource and Resourceful Controllers', '2021-07-12 12:24:40', '2021-07-13 09:28:18', NULL, 38, 1, 1),
(8, 'Callback Functions and Route::view()', '2021-07-13 08:18:23', '2021-07-13 09:08:59', NULL, 1, 1, 1),
(9, 'Routing Advanced', '2021-07-13 08:24:21', '2021-07-13 08:24:21', NULL, NULL, 4, 1),
(10, 'Route Naming', '2021-07-13 08:24:40', '2021-07-22 06:51:40', NULL, 1, 1, 4),
(11, 'Route Groups', '2021-07-13 08:25:06', '2021-07-22 04:55:06', NULL, 1, 1, 5),
(12, 'Middleware', '2021-07-13 08:25:34', '2021-07-16 08:22:41', NULL, NULL, 4, 2),
(13, 'Route Model Binding', '2021-07-13 08:28:16', '2021-07-13 08:28:16', NULL, 9, 4, 1),
(14, 'Blade Basics', '2021-07-13 08:29:19', '2021-07-13 08:29:19', NULL, NULL, 1, 2),
(15, 'Displaying Variables in Blade', '2021-07-13 08:30:41', '2021-07-13 09:17:32', NULL, 14, 1, 1),
(16, 'Layout: @include, @extends, @section, @yield', '2021-07-13 08:31:25', '2021-07-13 08:31:25', NULL, 14, 1, 3),
(17, 'Blade Components', '2021-07-13 08:32:20', '2021-07-22 04:48:34', NULL, 14, 1, 4),
(18, 'Forms, Validation and Form Requests', '2021-07-13 08:33:59', '2021-07-13 09:29:15', NULL, 38, 1, 2),
(19, 'Database Migrations', '2021-07-13 08:35:16', '2021-07-13 08:35:16', NULL, 2, 1, 1),
(20, 'Database Advanced', '2021-07-13 08:35:39', '2021-07-14 12:32:06', NULL, NULL, 4, 3),
(21, 'Database Seeders and Factories', '2021-07-13 08:36:26', '2021-07-13 08:36:26', NULL, 20, 2, 1),
(22, 'Basic Eloquent Model and MVC: Controller -> Model -> View', '2021-07-13 08:38:52', '2021-07-13 08:39:06', NULL, 2, 1, 2),
(23, 'Eloquent Relationships: belongsTo / hasMany / belongsToMany', '2021-07-13 08:40:34', '2021-07-13 08:40:34', NULL, 2, 1, 3),
(24, 'Eager Loading and N+1 Query Problem', '2021-07-13 08:41:26', '2021-07-13 08:41:26', NULL, 2, 1, 4),
(25, 'Auth Basics', '2021-07-13 08:44:05', '2021-07-13 08:44:05', NULL, NULL, 1, 3),
(26, 'Starter Kits: Breeze (Tailwind) or Laravel UI (Bootstrap)', '2021-07-13 08:44:49', '2021-07-13 08:47:39', NULL, 25, 1, 1),
(27, 'Default Auth Model and Access its Fields from Anywhere', '2021-07-13 08:46:44', '2021-07-13 08:48:19', NULL, 25, 1, 2),
(28, 'Check Auth in Controller / Blade', '2021-07-13 08:47:05', '2021-07-13 08:53:30', NULL, 25, 1, 3),
(29, 'Auth Advanced', '2021-07-13 08:49:28', '2021-07-13 08:49:28', NULL, NULL, 4, 4),
(30, 'Authorization: Roles/Permissions, Gates, Policies', '2021-07-13 08:49:57', '2021-07-16 08:24:30', NULL, 29, 4, 1),
(31, '(optional) Starter Kits: Laravel Jetstream and Fortify', '2021-07-13 08:51:02', '2021-07-13 08:51:02', NULL, NULL, 2, 6),
(32, 'Events and Listeners', '2021-07-13 08:52:34', '2021-07-13 08:52:34', NULL, 43, 2, 2),
(33, 'Table Pagination', '2021-07-13 08:58:23', '2021-07-13 09:29:28', NULL, 38, 1, 4),
(34, 'File Uploads and Storage Folder Basics', '2021-07-13 08:59:03', '2021-07-13 09:28:53', NULL, 38, 1, 3),
(35, 'File Uploads Advanced', '2021-07-13 08:59:39', '2021-07-16 08:26:30', NULL, NULL, 4, 5),
(36, 'Route Redirect', '2021-07-13 09:02:59', '2021-07-13 09:02:59', NULL, 9, 4, 2),
(37, 'Blade If-Else and Loop Structures', '2021-07-13 09:17:08', '2021-07-13 09:17:08', NULL, 14, 1, 2),
(38, 'Full Simple CRUD', '2021-07-13 09:28:06', '2021-07-13 09:28:06', NULL, NULL, 1, 5),
(39, 'Route Parameters', '2021-07-14 08:31:14', '2021-07-14 08:31:14', NULL, 1, 1, 3),
(40, 'Route Caching', '2021-07-14 08:41:25', '2021-07-14 09:57:58', NULL, 41, 2, 1),
(41, 'Routing Extra Features', '2021-07-14 09:57:48', '2021-07-14 09:57:48', NULL, NULL, 2, 1),
(42, 'Rate Limiting', '2021-07-14 09:59:09', '2021-07-14 09:59:09', NULL, 41, 2, 2),
(43, 'Various Extra Laravel Features', '2021-07-14 10:01:12', '2021-07-14 10:01:12', NULL, NULL, 2, 3),
(44, 'Invokable controllers', '2021-07-14 10:01:35', '2021-07-14 10:01:35', NULL, 41, 2, 3),
(46, 'Custom Blade Directives', '2021-07-14 12:12:24', '2021-07-14 12:12:24', NULL, 43, 2, 1),
(47, 'API Basics', '2021-07-14 12:16:32', '2021-07-14 12:16:32', NULL, NULL, 4, 6),
(48, 'API Advanced', '2021-07-14 12:18:09', '2021-07-14 12:18:09', NULL, NULL, 2, 5),
(50, 'Eloquent Query Scopes', '2021-07-14 12:30:55', '2021-07-14 12:30:55', NULL, 20, 2, 2),
(51, 'Polymorphic relationships', '2021-07-14 12:31:30', '2021-07-14 12:31:30', NULL, 20, 4, 3),
(52, 'Eloquent Accessors and Mutators', '2021-07-14 12:32:35', '2021-07-14 12:32:35', NULL, 20, 4, 4),
(53, 'Eloquent Collections', '2021-07-16 08:15:51', '2021-07-16 08:15:51', NULL, 20, 4, 5),
(54, 'Log Files in Laravel', '2021-07-16 08:17:08', '2021-07-16 08:18:22', NULL, 55, 4, 1),
(55, 'Debugging Errors', '2021-07-16 08:17:56', '2021-07-16 08:17:56', NULL, NULL, 4, 7),
(56, 'Try-Catch and Laravel Exceptions', '2021-07-16 08:19:24', '2021-07-16 08:19:24', NULL, 55, 4, 2),
(57, 'Customizing Error Pages and Messages', '2021-07-16 08:20:22', '2021-07-16 08:20:22', NULL, 55, 4, 4),
(58, '(optional) Third Party Bug Trackers: Bugsnag, Flare, Sentry, Rollbar', '2021-07-16 08:21:04', '2021-07-16 08:21:04', NULL, 55, 4, 5),
(59, 'Auth Middleware', '2021-07-16 08:22:15', '2021-07-22 04:57:31', NULL, 25, 1, 4),
(60, 'Create Custom Middleware Class', '2021-07-16 08:22:32', '2021-07-16 08:22:32', NULL, 12, 4, 1),
(61, 'Authorization: Extra Packages - Spatie Permission, Bouncer, etc', '2021-07-16 08:24:10', '2021-07-17 06:12:28', NULL, 29, 4, 2),
(62, 'Authentication: Email Verification', '2021-07-16 08:24:53', '2021-07-16 08:24:53', NULL, 29, 4, 3),
(63, 'Drivers and Disks, Example of Amazon S3', '2021-07-16 08:26:21', '2021-07-16 08:26:21', NULL, 35, 4, 1),
(64, 'Extra Packages: Spatie Medialibrary, Intervention Image, etc', '2021-07-16 08:26:50', '2021-07-16 08:26:50', NULL, 35, 4, 2),
(65, 'Sending Email', '2021-07-16 08:27:48', '2021-07-16 08:27:48', NULL, NULL, 4, 8),
(66, 'Mailables and Mail Facade', '2021-07-16 08:28:05', '2021-07-16 08:28:05', NULL, 65, 4, 1),
(67, 'Configure Drivers/Services: Mailgun, Mailtrap, etc', '2021-07-16 08:28:40', '2021-07-16 08:28:40', NULL, 65, 4, 2),
(68, 'Notifications System: Email, SMS, Slack, etc.', '2021-07-16 08:29:07', '2021-07-16 08:29:07', NULL, 65, 4, 3),
(69, 'API Routes and Controllers', '2021-07-16 08:30:26', '2021-07-16 08:30:26', NULL, 47, 4, 1),
(70, 'API Eloquent Resources', '2021-07-16 08:30:46', '2021-07-16 08:30:46', NULL, 47, 4, 3),
(71, 'Automated Testing with PHPUnit', '2021-07-16 08:32:31', '2021-07-16 08:32:31', NULL, NULL, 4, 9),
(72, '\"Smoke\" Tests to Check if Pages are Loading', '2021-07-16 08:32:49', '2021-07-16 08:32:49', NULL, 71, 4, 1),
(73, 'Configure Testing Database and Test CRUD Operations', '2021-07-16 08:33:30', '2021-07-16 08:33:30', NULL, 71, 4, 2),
(74, 'Jobs and Queues', '2021-07-16 18:15:54', '2021-07-16 18:15:54', NULL, NULL, 2, 4),
(75, 'Deployment and Version Control', '2021-07-16 18:18:52', '2021-07-17 06:45:24', NULL, NULL, 4, 10),
(76, 'API Auth with Sanctum', '2021-07-17 06:18:59', '2021-07-17 06:18:59', NULL, 47, 4, 4),
(77, 'Local Debugging Tools: Debugbar, Telescope, Ray', '2021-07-17 06:35:42', '2021-07-17 06:35:42', NULL, 55, 4, 3),
(78, 'Deployment on Live Servers', '2021-07-17 06:46:04', '2021-07-17 06:46:04', NULL, 75, 4, 2),
(79, 'Git Version Control', '2021-07-17 06:46:19', '2021-07-17 06:46:19', NULL, 75, 4, 1),
(80, 'Payments', '2021-07-18 08:36:15', '2021-07-18 08:36:15', NULL, NULL, 2, 7),
(81, 'Laravel Horizon (optional, if you use Redis)', '2021-07-22 03:02:43', '2021-07-22 03:02:43', NULL, 74, 2, 5),
(82, 'Soft Deletes', '2021-07-22 05:15:24', '2021-07-22 05:15:24', NULL, 20, 4, 6),
(83, 'Working with API Clients: Postman or Alternatives', '2021-07-22 05:37:58', '2021-07-22 05:38:12', NULL, 47, 4, 2),
(84, 'API Error Handling and Status Codes', '2021-07-22 05:42:08', '2021-07-22 05:42:08', NULL, 47, 4, 5),
(85, 'Database/Eloquent Extra Features', '2021-07-23 04:22:27', '2021-07-23 04:22:27', NULL, NULL, 2, 2),
(86, 'Model Observers', '2021-07-23 04:22:49', '2021-07-23 04:22:49', NULL, 85, 2, 1),
(87, 'Raw Database Queries', '2021-07-23 04:24:14', '2021-07-23 04:24:14', NULL, 85, 2, 2),
(88, 'Caching', '2021-07-23 04:25:40', '2021-07-23 05:58:17', NULL, 43, 2, 7),
(89, 'All Eloquent Features', '2021-07-23 04:29:13', '2021-07-23 04:29:13', NULL, 85, 2, 3),
(90, 'Laravel Jetstream (requires Livewire/Inertia knowledge)', '2021-07-23 04:36:14', '2021-07-23 04:36:14', NULL, 31, 2, 1),
(91, 'Laravel Fortify', '2021-07-23 04:37:18', '2021-07-23 04:37:18', NULL, 31, 2, 2),
(92, 'Upload Files via API', '2021-07-23 04:39:54', '2021-07-23 04:39:54', NULL, 48, 2, 1),
(93, 'Generate API Documentation', '2021-07-23 04:42:27', '2021-07-23 04:42:27', NULL, 48, 2, 2),
(94, 'API Versioning', '2021-07-23 04:45:16', '2021-07-23 04:45:16', NULL, 48, 2, 3),
(95, 'Only-API Projects with Front-end like Vue.js', '2021-07-23 04:49:01', '2021-07-23 04:49:01', NULL, 48, 2, 5),
(96, 'Only-API Projects with Mobile Apps', '2021-07-23 04:49:15', '2021-07-23 04:49:15', NULL, 48, 2, 6),
(97, 'Creating Artisan Commands', '2021-07-23 04:58:14', '2021-07-23 04:58:14', NULL, 43, 2, 5),
(98, 'Task Scheduling', '2021-07-23 05:00:05', '2021-07-23 05:00:05', NULL, 43, 2, 6),
(99, 'Login with X: Laravel Socialite', '2021-07-23 05:00:55', '2021-07-23 05:00:55', NULL, 43, 2, 4),
(100, 'Laravel HTTP Client and Guzzle', '2021-07-23 05:01:48', '2021-07-23 05:01:48', NULL, 43, 2, 3),
(101, 'Queueable Classes and Jobs', '2021-07-23 05:11:36', '2021-07-23 05:11:36', NULL, 74, 2, 1),
(102, 'Processing Failed Jobs', '2021-07-23 05:14:31', '2021-07-23 05:14:31', NULL, 74, 2, 3),
(103, 'Job Dispatching, Batching and Chaining', '2021-07-23 05:15:34', '2021-07-23 05:15:34', NULL, 74, 2, 2),
(104, 'Configuring Queues: Drivers, Redis, Supervisor', '2021-07-23 05:16:36', '2021-07-23 05:16:36', NULL, 74, 2, 4),
(105, 'Laravel Cashier with Stripe/Paddle', '2021-07-23 05:53:18', '2021-07-23 05:54:43', NULL, 80, 2, 1),
(106, 'Custom Payment Providers: PayPal, Mollie, etc', '2021-07-23 05:54:59', '2021-07-23 05:54:59', NULL, 80, 2, 2),
(107, 'Automated Testing Advanced', '2021-07-23 05:58:58', '2021-07-23 05:58:58', NULL, NULL, 2, 8),
(108, 'TDD: Test-Driven Development', '2021-07-23 05:59:15', '2021-07-23 05:59:15', NULL, 107, 2, 1),
(109, 'Mocking', '2021-07-23 06:02:03', '2021-07-23 06:02:03', NULL, 107, 2, 2),
(110, '(optional) Laravel Dusk', '2021-07-23 06:02:54', '2021-07-23 06:02:54', NULL, 107, 2, 3),
(111, 'Full-Text Search', '2021-07-23 06:03:44', '2021-07-23 06:03:44', NULL, NULL, 2, 9),
(112, 'Laravel Scout', '2021-07-23 06:03:55', '2021-07-23 06:03:55', NULL, 111, 2, 1),
(113, 'Drivers: ElasticSearch, Algolia or MeiliSearch', '2021-07-23 06:05:11', '2021-07-23 06:05:11', NULL, 111, 2, 2),
(114, 'Laravel Packages', '2021-07-23 06:07:25', '2021-07-23 06:07:25', NULL, NULL, 2, 10),
(115, 'Contributing to Packages, making Pull Requests', '2021-07-23 06:07:37', '2021-07-23 06:07:37', NULL, 114, 2, 1),
(116, 'Create Laravel Packages', '2021-07-23 06:08:27', '2021-07-23 06:08:27', NULL, 114, 2, 2),
(117, 'Real-time: Broadcasting, Echo and Pusher', '2021-07-25 04:43:24', '2021-07-25 04:43:24', NULL, 43, 2, 8),
(118, 'Project Architecture and Structure Decisions', '2021-07-30 14:51:09', '2021-07-30 15:13:20', '2021-07-30 15:13:20', NULL, 3, 0),
(119, 'PHP/Laravel Design Patterns', '2021-07-30 14:51:22', '2021-07-30 15:14:07', NULL, NULL, 3, 0),
(120, 'Well-written Code', '2021-07-30 14:51:50', '2021-07-30 14:51:50', NULL, NULL, 3, 0),
(121, 'SOLID Code', '2021-07-30 14:52:05', '2021-07-30 14:52:05', NULL, 120, 3, 1),
(122, 'Scalable Code', '2021-07-30 14:52:15', '2021-07-30 14:52:42', NULL, 120, 3, 2),
(123, 'Maintainable Code', '2021-07-30 14:52:26', '2021-07-30 14:52:26', NULL, 120, 3, 3),
(124, 'Reusable Code', '2021-07-30 14:52:35', '2021-08-05 08:51:16', '2021-08-05 08:51:16', 120, 3, 4),
(125, 'Best Practices and Standards', '2021-07-30 14:52:53', '2021-07-30 14:52:53', NULL, 120, 3, 5),
(126, 'Large Datasets', '2021-07-30 14:54:46', '2021-07-30 14:54:46', NULL, NULL, 3, 0),
(127, 'Large Database Structures', '2021-07-30 14:55:11', '2021-07-30 14:55:11', NULL, 126, 3, 1),
(128, 'NoSQL Solutions', '2021-07-30 14:55:33', '2021-07-30 14:55:33', NULL, 126, 3, 2),
(129, 'Eloquent/SQL Query Optimization', '2021-07-30 14:55:59', '2021-08-06 05:25:45', NULL, 126, 3, 3),
(130, 'Scaling to Multiple Databases', '2021-07-30 14:56:31', '2021-07-30 14:56:31', NULL, 126, 3, 4),
(131, 'Working with High-Traffic Projects', '2021-07-30 14:57:40', '2021-07-30 14:58:09', NULL, NULL, 3, 0),
(132, 'Stability and Zero-Downtime Deployments', '2021-07-30 14:58:37', '2021-07-30 14:58:47', NULL, 131, 3, 1),
(133, 'Performance Optimization and Caching', '2021-07-30 14:59:06', '2021-07-30 14:59:06', NULL, 131, 3, 2),
(134, 'Ensuring Code Quality', '2021-07-30 14:59:23', '2021-07-30 14:59:52', NULL, NULL, 3, 0),
(135, 'Writing Testable Code', '2021-07-30 15:00:06', '2021-07-30 15:00:06', NULL, 134, 3, 1),
(136, 'Automated Testing: Process Optimization', '2021-07-30 15:00:25', '2021-08-06 05:56:40', '2021-08-06 05:56:40', 134, 3, 2),
(137, 'Continuous Integration and Continuous Delivery (CI/CD)', '2021-07-30 15:01:48', '2021-07-30 15:01:48', NULL, 134, 3, 3),
(138, 'Creational Design Patterns', '2021-07-30 15:17:40', '2021-07-30 15:17:40', NULL, 119, 3, 1),
(139, 'Structural Design Patterns', '2021-07-30 15:18:01', '2021-07-30 15:18:01', NULL, 119, 3, 2),
(140, 'Behavioral Design Patterns', '2021-07-30 15:18:15', '2021-07-30 15:18:15', NULL, 119, 3, 3),
(141, 'API with OAuth and Laravel Passport', '2021-08-08 07:14:27', '2021-08-08 07:14:27', NULL, 48, 2, 4);
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;