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