File: D:/HostingSpaces/SBogers10/honger.komma.pro/app/KommaApp/PostAuthors/Kms/PostAuthorService.php
<?php
namespace App\KommaApp\PostAuthors\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\Languages\Models\Language;
use App\KommaApp\Pages\Models\PageTranslation;
use App\KommaApp\PostAuthors\Models\Post;
use App\KommaApp\PostAuthors\Models\PostAuthor;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Model;
class PostAuthorService extends SectionService
{
protected $sortable = false;
protected $orderBy = 'name';
function __construct()
{
$this->forModelName = PostAuthor::class;
parent::__construct();
}
}