2022-07-30 17:51:02 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Facades;
|
|
|
|
|
|
|
|
use App\Services\SettingService;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
|
|
|
|
class Settings extends Facade
|
|
|
|
{
|
|
|
|
protected static function getFacadeAccessor()
|
|
|
|
{
|
|
|
|
return SettingService::class;
|
|
|
|
}
|
2022-11-22 15:15:52 +01:00
|
|
|
}
|