Added shareable reports

This commit is contained in:
Constantin Graf
2024-08-13 16:21:59 +02:00
committed by Constantin Graf
parent 0ee0175f04
commit c03aad1abd
30 changed files with 1912 additions and 141 deletions

View File

@@ -25,6 +25,10 @@ use Laravel\Jetstream\Jetstream;
Route::get('/', [HomeController::class, 'index']);
Route::get('/shared-report', function () {
return Inertia::render('SharedReport');
})->name('shared-report');
Route::middleware([
'auth:web',
config('jetstream.auth_session'),