File: D:/HostingSpaces/SBogers10/ste.komma.pro/app/Products/Kms/ProductController.php
<?php
namespace App\Products\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\Products\Models\Product;
use App\Products\Models\ProductTranslation;
use Komma\KMS\Core\SectionController;
final class ProductController extends SectionController
{
protected $sortable = true;
protected $slug = "products";
protected $classModelName = Product::class;
protected $forTranslationModelName = ProductTranslation::class;
function __construct()
{
$productSection = new ProductSection($this->slug);
parent::__construct($productSection);
}
}