<?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.'@index')->name('dashboard.index');
}
}