File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,9 @@ protected function installLivewireStack()
158
158
// Models...
159
159
copy (__DIR__ .'/../../stubs/app/Models/User.php ' , app_path ('Models/User.php ' ));
160
160
161
+ // Factories...
162
+ copy (__DIR__ .'/../../database/factories/UserFactory.php ' , base_path ('database/factories/UserFactory.php ' ));
163
+
161
164
// Actions...
162
165
copy (__DIR__ .'/../../stubs/app/Actions/Fortify/CreateNewUser.php ' , app_path ('Actions/Fortify/CreateNewUser.php ' ));
163
166
copy (__DIR__ .'/../../stubs/app/Actions/Fortify/UpdateUserProfileInformation.php ' , app_path ('Actions/Fortify/UpdateUserProfileInformation.php ' ));
@@ -329,6 +332,9 @@ protected function installInertiaStack()
329
332
// Models...
330
333
copy (__DIR__ .'/../../stubs/app/Models/User.php ' , app_path ('Models/User.php ' ));
331
334
335
+ // Factories...
336
+ copy (__DIR__ .'/../../database/factories/UserFactory.php ' , base_path ('database/factories/UserFactory.php ' ));
337
+
332
338
// Actions...
333
339
copy (__DIR__ .'/../../stubs/app/Actions/Fortify/CreateNewUser.php ' , app_path ('Actions/Fortify/CreateNewUser.php ' ));
334
340
copy (__DIR__ .'/../../stubs/app/Actions/Fortify/UpdateUserProfileInformation.php ' , app_path ('Actions/Fortify/UpdateUserProfileInformation.php ' ));
You can’t perform that action at this time.
0 commit comments