diff --git a/src/ServiceProvider.php b/src/ServiceProvider.php index 9b78cc8..c304afc 100644 --- a/src/ServiceProvider.php +++ b/src/ServiceProvider.php @@ -27,5 +27,9 @@ class ServiceProvider extends BaseServiceProvider $this->publishes([ __DIR__.'/config.php' => config_path('simple-crud.php'), ], 'config'); + + $this->publishes([ + __DIR__.'/stubs' => base_path('stubs/simple-crud'), + ], 'stubs'); } }