21 lines
374 B
PHP
21 lines
374 B
PHP
|
<?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
|
||
|
}
|
||
|
);
|