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