mirror of
https://gh.wpcy.net/https://github.com/webdados/DeleteOnFetch.git
synced 2026-07-15 14:59:51 +08:00
6 lines
213 B
PHP
6 lines
213 B
PHP
<?php
|
|
|
|
Route::group(['middleware' => 'web', 'prefix' => \Helper::getSubdirectory(), 'namespace' => 'Modules\DeleteOnFetch\Http\Controllers'], function()
|
|
{
|
|
Route::get('/', 'DeleteOnFetchController@index');
|
|
});
|