mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-14 11:12:09 -05:00
10 lines
313 B
PHP
10 lines
313 B
PHP
<?php
|
|
use Illuminate\Support\Facades\Route;
|
|
use Modules\Category\Http\Controllers\CategoryController;
|
|
|
|
Route::middleware('web')->group(function () {
|
|
Route::prefix('categories')->name('categories.')->group(function () {
|
|
Route::get('/', [CategoryController::class, 'index'])->name('index');
|
|
});
|
|
});
|