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