add shared reports section in the frontend

This commit is contained in:
Gregor Vostrak
2024-11-03 18:34:25 +01:00
committed by Constantin Graf
parent c03aad1abd
commit 2560619c15
17 changed files with 1174 additions and 29 deletions

View File

@@ -48,6 +48,10 @@ Route::middleware([
return Inertia::render('ReportingDetailed');
})->name('reporting.detailed');
Route::get('/reporting/shared', function () {
return Inertia::render('ReportingShared');
})->name('reporting.shared');
Route::get('/projects', function () {
return Inertia::render('Projects');
})->name('projects');