2018-09-27 10:01:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Webkul\Sales\Providers;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
|
|
class SalesServiceProvider extends ServiceProvider
|
|
|
|
|
{
|
2021-10-04 08:30:32 +00:00
|
|
|
public function boot(): void
|
2018-09-27 10:01:25 +00:00
|
|
|
{
|
2021-10-06 12:26:08 +00:00
|
|
|
$this->loadMigrationsFrom(__DIR__ . '/../Database/Migrations');
|
2018-09-27 10:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Register services.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
2021-10-04 08:30:32 +00:00
|
|
|
public function register(): void
|
2018-09-27 10:01:25 +00:00
|
|
|
{
|
2021-10-06 12:26:08 +00:00
|
|
|
$this->mergeConfigFrom(dirname(__DIR__) . '/Config/system.php', 'core');
|
2018-09-27 10:01:25 +00:00
|
|
|
}
|
|
|
|
|
}
|