File: D:/HostingSpaces/SBogers10/stafa.komma.pro/app/Komma/Locations/Kms/LocationController.php
<?php
namespace App\Komma\Locations\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\Komma\Kms\Core\SectionController;
use App\Komma\Locations\Models\Location;
final class LocationController extends SectionController
{
protected $slug = "locations";
protected $forModelName = Location::class;
function __construct(Locationsection $section)
{
parent::__construct($section);
}
}