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/SBogers85/equichecker.com/app/KommaApp/Customers/CustomerRoutes.php
<?php

// Customers
Route::resource('kms/{site}/customers', 'Customers\Kms\CustomerController');


//Password reset functionailty
Route::get('password/forgot', ['uses'=>'Customers\CustomerAuthController@forgotPassword', 'as'=> 'customer.password.forgot']);
Route::post('password/forgot', 'Customers\CustomerAuthController@processForgotPassword');

Route::get('activate-account/{type}/{token}', ['uses'=>'Customers\CustomerAuthController@activateAccountPage', 'as'=>'customer.activate.account']);
Route::post('activate-account/{type}/{token}', 'Customers\CustomerAuthController@processActivateAccount');

Route::get('password/reset/{type}/{token}', ['uses'=>'Customers\CustomerAuthController@resetPasswordPage', 'as'=>'customer.password.reset']);
Route::post('password/reset/{type}/{token}', 'Customers\CustomerAuthController@processResetPassword');


/**
 * Routes for logging in and out
 */
Route::get('login', 'Customers\CustomerAuthController@login');
Route::post('login', 'Customers\CustomerAuthController@processLogin');
Route::get('logout',['uses'=>'Customers\CustomerAuthController@logout','as'=>'customer.logout']);