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