<?php
namespace App\Komma\Buttons\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\Komma\Kms\Core\SectionController;
use App\Komma\Buttons\Models\Button;
final class ButtonController extends SectionController
{
protected $slug = "buttons";
protected $forModelName = Button::class;
function __construct(ButtonSection $section)
{
parent::__construct($section);
}
}