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