File: D:/HostingSpaces/SBogers10/rentman2019.komma.pro/app/Komma/Webinars/Kms/WebinarController.php
<?php
namespace App\Komma\Webinars\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\Komma\Kms\Core\SectionController;
use App\Komma\Webinars\Models\Webinar;
class WebinarController extends SectionController
{
protected $slug = 'webinars';
protected $forModelName = Webinar::class;
public function __construct(WebinarSection $section)
{
parent::__construct($section);
}
}