<?php
namespace App\Komma\Posts\Kms;
use App\Komma\Kms\Core\SectionController;
use App\Komma\Posts\Models\Post;
final class PostController extends SectionController
{
protected $slug = "posts";
protected $forModelName = Post::class;
function __construct(PostSection $section)
{
parent::__construct($section);
}
}