Add required routes.php file
This commit is contained in:
parent
867bec7a25
commit
b2383e5432
1 changed files with 20 additions and 0 deletions
20
Http/routes.php
Normal file
20
Http/routes.php
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
/*
|
||||
SPDX-License-Identifier: AGPL-3.0-only
|
||||
SPDX-FileCopyrightText: © 2024 Millions Missing FRANCE <info@millionsmissing.fr>
|
||||
*/
|
||||
|
||||
use Helper;
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::group(
|
||||
[
|
||||
'middleware' => 'web',
|
||||
'prefix' => Helper::getSubdirectory(),
|
||||
'namespace' => 'Modules\MMFCustomersGroups\Http\Controllers'
|
||||
],
|
||||
function() {
|
||||
// TODO
|
||||
}
|
||||
);
|
Loading…
Reference in a new issue