DeleteOnFetch/Http/routes.php
2023-06-03 12:34:31 +01:00

6 lines
213 B
PHP

<?php
Route::group(['middleware' => 'web', 'prefix' => \Helper::getSubdirectory(), 'namespace' => 'Modules\DeleteOnFetch\Http\Controllers'], function()
{
Route::get('/', 'DeleteOnFetchController@index');
});