mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
34 lines
535 B
PHP
34 lines
535 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
use Modules\GeneralSetting\Entities\BusinessSetting;
|
|
use Modules\GeneralSetting\Entities\GeneralSetting;
|
|
use Config;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class GeneralSettingsServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
|
|
}
|
|
}
|