File: D:/HostingSpaces/SBogers10/hem-mechatronics.komma.pro/app/Komma/Products/Kms/ProductController.php
<?php
namespace App\Komma\Products\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\Komma\Kms\Core\SectionController;
use App\Komma\Products\Models\Product;
final class ProductController extends SectionController
{
protected $slug = "products";
protected $forModelName = Product::class;
function __construct(ProductSection $section)
{
parent::__construct($section);
}
}