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