23 lines
454 B
PHP
Executable File
23 lines
454 B
PHP
Executable File
<?php
|
|
|
|
namespace Webkul\Sales\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class SalesServiceProvider extends ServiceProvider
|
|
{
|
|
public function boot(): void
|
|
{
|
|
$this->loadMigrationsFrom(__DIR__ . '/../Database/Migrations');
|
|
}
|
|
|
|
/**
|
|
* Register services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register(): void
|
|
{
|
|
$this->mergeConfigFrom(dirname(__DIR__) . '/Config/system.php', 'core');
|
|
}
|
|
} |