freescout-customers-groups/Http/routes.php

21 lines
374 B
PHP
Raw Normal View History

2024-07-16 10:09:44 +00:00
<?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
}
);