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