File: D:/HostingSpaces/SBogers10/somerenslust.komma.pro/app/KommaApp/Sponsors/Kms/SponsorService.php
<?php
namespace App\KommaApp\Sponsors\Kms;
use App\KommaApp\Kms\Core\Attributes\Attribute;
use App\KommaApp\Kms\Core\NestedSets\Nodes\EloquentNode;
use App\KommaApp\Kms\Core\Sections\SectionService;
use App\KommaApp\Kms\Core\Sections\SectionTabItem;
use App\KommaApp\Sponsors\Models\Sponsor;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Model;
class SponsorService extends SectionService
{
protected $sortable = false;
function __construct()
{
$this->forModelName = Sponsor::class;
parent::__construct();
}
}