File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ public static function install()
15
15
static ::updateStyles ();
16
16
static ::updateBootstrapping ();
17
17
static ::updateWelcomePage ();
18
+ static ::updatePagination ();
18
19
static ::removeNodeModules ();
19
20
}
20
21
@@ -71,6 +72,13 @@ protected static function updateWelcomePage()
71
72
copy (__DIR__ .'/tailwindcss-stubs/resources/views/welcome.blade.php ' , resource_path ('views/welcome.blade.php ' ));
72
73
}
73
74
75
+ protected static function updatePagination ()
76
+ {
77
+ (new Filesystem )->delete (resource_path ('views/vendor/paginate ' ));
78
+
79
+ copy (__DIR__ .'/tailwindcss-stubs/resources/views/paginate ' , resource_path ('views/paginate ' ));
80
+ }
81
+
74
82
protected static function scaffoldAuth ()
75
83
{
76
84
file_put_contents (app_path ('Http/Controllers/HomeController.php ' ), static ::compileControllerStub ());
You can’t perform that action at this time.
0 commit comments