chore: update document approval workflow and bug fixes
This commit is contained in:
10
Modules/ProjectRFIs/routes/web.php
Normal file
10
Modules/ProjectRFIs/routes/web.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use Modules\ProjectRFIs\Http\Controllers\ProjectRFIsController;
|
||||
|
||||
Route::middleware(['auth', 'verified'])->group(function () {
|
||||
Route::prefix('rfis')->name('projects.rfis.')->group(function () {
|
||||
Route::get('/', [ProjectRFIsController::class, 'index'])->name('index');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user