File: D:/HostingSpaces/SBogers10/inzigd.komma.pro/app/Komma/Kms/Dashboard/DashboardRoutes.php
<?php
namespace App\Komma\Kms\Dashboard;
use Illuminate\Support\Facades\Route;
final class DashboardRoutes
{
/**
* 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::get('/', DashboardController::class. '@show')->name('dashboard.index');
// Route::get('/', function () {
// return redirect('kms/users');
// });
}
}