File tree 1 file changed +5
-5
lines changed
src/Illuminate/Auth/Console
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -71,12 +71,12 @@ public function fire()
71
71
*/
72
72
protected function createDirectories ()
73
73
{
74
- if (! is_dir (base_path ( ' resources/ views/layouts ' ))) {
75
- mkdir (base_path ( ' resources/ views/layouts ' ), 0755 , true );
74
+ if (! is_dir (resource_path ( ' views/layouts ' ))) {
75
+ mkdir (resource_path ( ' views/layouts ' ), 0755 , true );
76
76
}
77
77
78
- if (! is_dir (base_path ( ' resources/ views/auth/passwords ' ))) {
79
- mkdir (base_path ( ' resources/ views/auth/passwords ' ), 0755 , true );
78
+ if (! is_dir (resource_path ( ' views/auth/passwords ' ))) {
79
+ mkdir (resource_path ( ' views/auth/passwords ' ), 0755 , true );
80
80
}
81
81
}
82
82
@@ -90,7 +90,7 @@ protected function exportViews()
90
90
foreach ($ this ->views as $ key => $ value ) {
91
91
copy (
92
92
__DIR__ .'/stubs/make/views/ ' .$ key ,
93
- base_path ( ' resources/ views/ ' .$ value )
93
+ resource_path ( ' views/ ' .$ value )
94
94
);
95
95
}
96
96
}
You can’t perform that action at this time.
0 commit comments