47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Setting;
 | 
						|
 | 
						|
use App\Fileshare\FileshareSettings;
 | 
						|
use App\Form\FormSettings;
 | 
						|
use App\Mailgateway\MailgatewaySettings;
 | 
						|
use Modules\Module\ModuleSettings;
 | 
						|
use App\Prevention\PreventionSettings;
 | 
						|
use App\Setting\Data\SettingSynthesizer;
 | 
						|
use Illuminate\Routing\Router;
 | 
						|
use Illuminate\Support\ServiceProvider;
 | 
						|
use Livewire\Livewire;
 | 
						|
use Modules\Invoice\InvoiceSettings;
 | 
						|
 | 
						|
class SettingServiceProvider extends ServiceProvider
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Register services.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function register()
 | 
						|
    {
 | 
						|
        app()->singleton(SettingFactory::class, fn () => new SettingFactory());
 | 
						|
        app(Router::class)->bind('settingGroup', fn ($param) => app(SettingFactory::class)->resolveGroupName($param));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Bootstrap services.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function boot()
 | 
						|
    {
 | 
						|
        app(SettingFactory::class)->register(ModuleSettings::class);
 | 
						|
        app(SettingFactory::class)->register(InvoiceSettings::class);
 | 
						|
        app(SettingFactory::class)->register(MailgatewaySettings::class);
 | 
						|
        app(SettingFactory::class)->register(NamiSettings::class);
 | 
						|
        app(SettingFactory::class)->register(FormSettings::class);
 | 
						|
        app(SettingFactory::class)->register(FileshareSettings::class);
 | 
						|
        app(SettingFactory::class)->register(PreventionSettings::class);
 | 
						|
 | 
						|
        Livewire::propertySynthesizer(SettingSynthesizer::class);
 | 
						|
    }
 | 
						|
}
 |