diff --git a/src/MotherboxServiceProvider.php b/src/MotherboxServiceProvider.php index c403472..f50bccb 100644 --- a/src/MotherboxServiceProvider.php +++ b/src/MotherboxServiceProvider.php @@ -15,7 +15,7 @@ public function boot() { // config $this->publishes([ - __DIR__.'/Config/motherbox.php' => config_path('motherbox.php') + __DIR__.'/config/motherbox.php' => config_path('motherbox.php') ], 'config'); // stubs @@ -32,7 +32,7 @@ public function boot() public function register() { // Merge config files - $this->mergeConfigFrom(__DIR__.'/Config/motherbox.php','motherbox'); + $this->mergeConfigFrom(__DIR__.'/config/motherbox.php','motherbox'); $this->commands( Commands\PackageCommand::class