Antoine Le Gonidec
5beaf94f3a
This is only a placeholder for now, it does not send to a real page yet.
18 lines
478 B
PHP
18 lines
478 B
PHP
<?php
|
|
/*
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
SPDX-FileCopyrightText: © 2024 Millions Missing FRANCE <info@millionsmissing.fr>
|
|
*/
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::group(
|
|
[
|
|
'middleware' => 'web',
|
|
'prefix' => \Helper::getSubdirectory(),
|
|
'namespace' => 'Modules\MMFCustomersGroups\Http\Controllers'
|
|
],
|
|
function() {
|
|
Route::get('/groups/list', ['uses' => CustomersGroupsController::class . '@list', 'laroute' => true])->name('groups.list');
|
|
}
|
|
);
|