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