Adding config folder
This commit is contained in:
parent
87c670cad0
commit
a6f5ba39a3
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'bmail' => env('BMAIL_KEY', null)
|
||||
|
||||
];
|
|
@ -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')
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue