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/rentman2019.komma.pro/app/Komma/Auth/AuthRoutes.php
<?php

namespace App\Komma\Auth;

use Illuminate\Support\Facades\Route;

final class AuthRoutes
{
    /**
     * The routes for the authentication
     *
     * TODO: There should be some kind of Middleware to resolve them to the right path
     *
     * Route that are resolved from the Alias route to Rest Route by the AliasMiddleware.
     * Through the controller the models will be bind by Implicit Route Model Binding,
     * so no need to add Route::model in here.
     */
    public static function get()
    {
//        Route::get('login', SiteLoginController::class.'@showLoginForm')->name('site.login');
//        Route::post('login', SiteLoginController::class.'@login')->name('site.login');
//        Route::post('logout', SiteLoginController::class.'@logout')->name('site.logout');
//
//        Route::get('password/reset', SiteForgotPasswordController::class.'@showLinkRequestForm')->name('site.password.request');
//        Route::post('password/email', SiteForgotPasswordController::class.'@sendResetLinkEmail')->name('site.password.email');
//        Route::get('password/reset/{token}', SiteResetPasswordController::class.'@showResetForm')->name('site.password.reset');
//        Route::post('password/reset', SiteResetPasswordController::class.'@reset');
//        Route::post('password/reseted', SiteResetPasswordController::class.'@showReseted');
//
//        Route::get('password/set/{token?}', SiteResetPasswordController::class.'@showSetForm')->name('site.password.request_set');
//        Route::post('password/set', SiteResetPasswordController::class.'@set')->name('site.password.set');
//
//        Route::get('register', RegisterController::class.'@showRegistrationForm')->name('site.register');
//        Route::post('register', RegisterController::class.'@register');
//        Route::get('registered', RegisterController::class.'@showRegistered')->name('site.registered');

        Route::group(['prefix' => 'kms'], function () {
            Route::get('login', KmsLoginController::class.'@showLoginForm')->name('kms.login');
            Route::post('login', KmsLoginController::class.'@login');
            Route::post('logout', KmsLoginController::class.'@logout')->name('kms.logout');

            // Password Reset Routes...
            Route::get('password/reset', KmsForgotPasswordController::class.'@showLinkRequestForm')->name('kms.password.request');
            Route::post('password/email', KmsForgotPasswordController::class.'@sendResetLinkEmail')->name('kms.password.email');
            Route::get('password/reset/{token}', KmsResetPasswordController::class.'@showResetForm')->name('kms.password.reset');
            Route::post('password/reset', KmsResetPasswordController::class.'@reset');
        });
    }

//    /**
//     * 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(){
//
//    }
}