<?php
namespace App\Komma\ProductGroups\Kms;
use App\Komma\Kms\Core\SectionController;
use App\Komma\ProductGroups\Models\ProductGroup;
class ProductGroupController extends SectionController
{
protected $slug = 'productgroups';
protected $forModelName = ProductGroup::class;
public function __construct(ProductGroupSection $section)
{
parent::__construct($section);
}
}