File: D:/HostingSpaces/SBogers10/wingssprayer.komma.pro/vendor/komma/kms/src/Sites/SiteRoutes.php
<?php
namespace Komma\KMS\Sites;
use Komma\KMS\Sites\Kms\SiteController;
use Komma\KMS\Sites\Models\Site;
use Illuminate\Support\Facades\Route;
use Komma\KMS\Sites\Models\SiteInterface;
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);
}
}