<?php
namespace App\Komma\Products\Kms;
use App\Komma\Kms\Core\SectionController;
use App\Komma\Products\Models\Product;
class ProductController extends SectionController
{
protected $slug = 'products';
protected $forModelName = Product::class;
public function __construct(ProductSection $section)
{
parent::__construct($section);
}
}