<?php
namespace App\Users\Kms;
use App\Users\SiteUser;
use Komma\KMS\Users\UserController;
final class SiteUserController extends UserController
{
protected string $slug = "site_users";
protected string $classModelName = SiteUser::class;
function __construct()
{
$section = new SiteUserSection($this->slug);
parent::__construct($section);
$this->modelService = new SiteUserService();
}
}