File: D:/HostingSpaces/marisrental/boldt.tech/app/Komma/SiteUsers/SiteUserRoutes.php
<?php
namespace App\Komma\SiteUsers;
use App\Komma\SiteUsers\Kms\SiteUserController;
use App\Komma\SiteUsers\Models\SiteUser;
use Illuminate\Support\Facades\Route;
final class SiteUserRoutes
{
/**
* 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('siteuser', SiteUser::class); //Explicit route model binding
Route::resource('siteusers', SiteUserController::class);
}
}