File: D:/HostingSpaces/SBogers10/beat-the-barn.komma.nl/app/Authors/Kms/AuthorController.php
<?php
namespace App\Authors\Kms;
use App\Authors\Models\Author;
use App\Authors\Models\AuthorTranslation;
use Komma\KMS\Core\SectionController;
final class AuthorController extends SectionController
{
protected string $slug = "authors";
protected string $classModelName = Author::class;
public function __construct()
{
$teamMemberSection = new AuthorSection($this->slug);
parent::__construct($teamMemberSection);
}
}