<?php
namespace App\KommaApp\Posts\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\KommaApp\Kms\Core\SectionController;
use App\KommaApp\Posts\Models\Post;
class PostController extends SectionController
{
protected $slug = "posts";
protected $forModelName = Post::class;
function __construct(PostSection $section)
{
parent::__construct($section);
}
}