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