@@ -45,39 +45,39 @@ private function copyBlogModuleDirectory(): void
45
45
{
46
46
$ this ->info ('Copying Blog Module directory... ' );
47
47
(new Filesystem )->ensureDirectoryExists (base_path ('modules ' ));
48
- (new Filesystem )->copyDirectory (__DIR__ . '/../../stubs/modules/Blog ' , base_path ('modules/Blog ' ));
48
+ (new Filesystem )->copyDirectory (__DIR__ . '/../../stubs/modules/Blog ' , base_path ('modules/Blog ' ));
49
49
$ this ->info ('Blog Module directory copied successfully. ' );
50
50
}
51
51
52
52
private function copyResourcesComponentsFiles (): void
53
53
{
54
54
$ this ->info ('Copying Blog Module components... ' );
55
55
(new Filesystem )->ensureDirectoryExists (resource_path ('js/Components/Modules/Blog ' ));
56
- (new Filesystem )->copyDirectory (__DIR__ . '/../../stubs/resources/js/Components/Modules/Blog ' , resource_path ('js/Components/Modules/Blog ' ));
56
+ (new Filesystem )->copyDirectory (__DIR__ . '/../../stubs/resources/js/Components/Modules/Blog ' , resource_path ('js/Components/Modules/Blog ' ));
57
57
$ this ->info ('Blog Module components copied successfully. ' );
58
58
}
59
59
60
60
private function copyBlogSeederImages (): void
61
61
{
62
62
$ this ->info ('Copying Blog Seeder images... ' );
63
63
(new Filesystem )->ensureDirectoryExists (resource_path ('images/blog ' ));
64
- (new Filesystem )->copyDirectory (__DIR__ . '/../../stubs/resources/images/blog ' , resource_path ('images/blog ' ));
64
+ (new Filesystem )->copyDirectory (__DIR__ . '/../../stubs/resources/images/blog ' , resource_path ('images/blog ' ));
65
65
$ this ->info ('Blog Module Seeder images copied successfully. ' );
66
66
}
67
67
68
68
private function copyResourcesFiles (): void
69
69
{
70
70
$ this ->info ('Copying Blog Module resources... ' );
71
71
(new Filesystem )->ensureDirectoryExists (resource_path ('js/Pages ' ));
72
- (new Filesystem )->copyDirectory (__DIR__ . '/../../stubs/resources/js/Pages ' , resource_path ('js/Pages ' ));
72
+ (new Filesystem )->copyDirectory (__DIR__ . '/../../stubs/resources/js/Pages ' , resource_path ('js/Pages ' ));
73
73
$ this ->info ('Blog Module resources copied successfully. ' );
74
74
}
75
75
76
76
private function copyResourcesSiteFiles (): void
77
77
{
78
78
$ this ->info ('Copying Blog Module resources-site... ' );
79
79
(new Filesystem )->ensureDirectoryExists (base_path ('resources-site ' ));
80
- (new Filesystem )->copyDirectory (__DIR__ . '/../../stubs/resources-site ' , base_path ('resources-site ' ));
80
+ (new Filesystem )->copyDirectory (__DIR__ . '/../../stubs/resources-site ' , base_path ('resources-site ' ));
81
81
$ this ->info ('Blog Module resources-site copied successfully. ' );
82
82
}
83
83
@@ -87,7 +87,7 @@ private function copyTranslationFile(): void
87
87
88
88
if (! file_exists ($ paginationEnglish )) {
89
89
(new Filesystem )->ensureDirectoryExists (base_path ('lang/en ' ));
90
- copy (__DIR__ . '/../../stubs/lang/en/pagination.php ' , base_path ('lang/en/pagination.php ' ));
90
+ copy (__DIR__ . '/../../stubs/lang/en/pagination.php ' , base_path ('lang/en/pagination.php ' ));
91
91
}
92
92
}
93
93
}
0 commit comments