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