feat: cms first commit
This commit is contained in:
10
modules/Cms/routes/route.php
Normal file
10
modules/Cms/routes/route.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use Modules\Cms\Http\Controllers\CategoryController;
|
||||
|
||||
Route::prefix('cms')->group(function(){
|
||||
|
||||
Route::apiResource('category', CategoryController::class);
|
||||
//next
|
||||
});
|
Reference in New Issue
Block a user