Modifying provider

This commit is contained in:
2020-04-09 17:21:16 +02:00
parent a3e74da992
commit 60ad613ca3
2 changed files with 13 additions and 5 deletions

View File

@@ -16,8 +16,8 @@ class BMailServiceProvider extends ServiceProvider
public function register()
{
$this->mergeConfigFrom(
__DIR__.'/../config/services.php',
'bmail'
__DIR__ . '/../config/services.php',
'services'
);
}
@@ -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')
], 'config');
}
}