File: D:/HostingSpaces/SBogers10/reiskick.komma.nl/app/Sidebars/Kms/SidebarController.php
<?php
namespace App\Sidebars\Kms;
use App\Sidebars\Models\Sidebar;
use App\Sidebars\Models\SidebarTranslation;
use Komma\KMS\Core\SectionController;
final class SidebarController extends SectionController
{
protected string $slug = "sidebars";
protected string $classModelName = Sidebar::class;
protected ?string $forTranslationModelName = SidebarTranslation::class;
function __construct()
{
$hotelSection = new SidebarSection($this->slug);
parent::__construct($hotelSection);
}
}