HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/beerten.komma.nl/vendor/komma/kms/src/Users/UserRoutes.php
<?php

namespace Komma\KMS\Users;


use Komma\KMS\Users\Kms\KmsUserController;
use Komma\KMS\Users\Models\KmsUser;
use Illuminate\Support\Facades\Route;


final class UserRoutes
{

    /**
     * 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('kms_user', KmsUser::class); //Explicit route model binding

        Route::resource('kms_users', KmsUserController::class);
        Route::post('kms_users/mail_set_password', KmsUserController::class.'@mailUserToSetPassword')->name('kms_users.send_set_password_email');
        Route::post('kms_users/mail_reset_password', KmsUserController::class.'@mailUserToResetPassword')->name('kms_users.send_reset_password_email');
    }
}