<?php
namespace App\Komma\SiteConfig\Kms;
use App\Komma\Kms\Core\Sections\SectionService;
use App\Komma\SiteConfig\Models\SiteConfig;
class SiteConfigService extends SectionService
{
protected $sortable = false;
protected $orderBy = 'sidebar_name';
public function __construct()
{
$this->forModelName = SiteConfig::class;
parent::__construct();
}
}