Modifying Service Provider

This commit is contained in:
Loann 2020-04-09 16:05:44 +02:00
parent dfd4d18c46
commit 339841b4c9
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ class BMailServiceProvider extends ServiceProvider
public function register()
{
$this->mergeConfigFrom(
__DIR__.'/../config/services.php',
__DIR__.'/../../config/services.php',
'bmail'
);
}
@ -29,7 +29,7 @@ class BMailServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([
__DIR__.'/../config/services.php' => config_path('services.php')
__DIR__.'/../../config/services.php' => config_path('services.php')
]);
}
}