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