File: D:/HostingSpaces/SBogers95/rentman.io/app/Komma/PricingProducts/Kms/PricingProductController.php
<?php
namespace App\Komma\PricingProducts\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\Komma\Kms\Core\SectionController;
use App\Komma\PricingProducts\Models\PricingProduct;
class PricingProductController extends SectionController
{
protected $slug = 'pricingproducts';
protected $forModelName = PricingProduct::class;
public function __construct(PricingProductSection $section)
{
parent::__construct($section);
}
}