File: D:/HostingSpaces/SBogers10/vangogh.komma.pro/app/Komma/Sites/SiteRoutes.php
<?php
namespace App\Komma\Sites;
use App\Komma\Sites\Kms\SiteController;
use App\Komma\Sites\Models\Site;
use Illuminate\Support\Facades\Route;
final class SiteRoutes
{
/**
* Routes that are used for and within the KMS
* Will be prefixed with 'kms' by the Route::group in the RouteResolver
*/
public static function kms()
{
Route::model('site', Site::class); //Explicit route model binding
Route::resource('sites', SiteController::class);
}
}