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/centrum8a.komma.pro/app/KommaApp/Dates/dateRoutes.php
<?php

use App\KommaApp\Dates\Kms\DateController as BackendDateController;
use App\KommaApp\Dates\DateController as FrontendDateController;

Route::model('date', App\KommaApp\Dates\Models\Date::class); //Explicit route model binding

Route::resource('dates', FrontendDateController::class, ['only' => [
    'index', 'show'
]]);

Route::group(['middleware' => ['auth']], function() {
    Route::resource('kms/dates', BackendDateController::class);
});


//Route::get('dates/filters', FrontendDateController::class.'@filters');