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