File: D:/HostingSpaces/SBogers10/zelfverkopen.komma.pro/app/KommaApp/Customers/Kms/CustomerController.php
<?php
namespace App\KommaApp\Customers\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\KommaApp\Customers\Models\Customer;
use App\KommaApp\Kms\Core\SectionController;
class CustomerController extends SectionController
{
protected $slug = "customers";
protected $forModelName = Customer::class;
function __construct(CustomerSection $section)
{
parent::__construct($section);
}
}