11 lines
345 B
PHP
11 lines
345 B
PHP
<?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');
|
|
});
|
|
});
|