Files
GSB-Construction/Modules/FinancialManagement/routes/api.php

9 lines
317 B
PHP

<?php
use Illuminate\Support\Facades\Route;
use Modules\FinancialManagement\Http\Controllers\FinancialManagementController;
Route::middleware(['auth:sanctum'])->prefix('v1')->group(function () {
Route::apiResource('financialmanagements', FinancialManagementController::class)->names('financialmanagement');
});