File: D:/HostingSpaces/SBogers10/rentman2019.komma.pro/app/Komma/Inventories/Kms/InventoryController.php
<?php
namespace App\Komma\Inventories\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\Komma\Inventories\Models\Inventory;
use App\Komma\Kms\Core\SectionController;
class InventoryController extends SectionController
{
protected $slug = 'inventories';
protected $forModelName = Inventory::class;
public function __construct(InventorySection $section)
{
parent::__construct($section);
}
}