add projects detail page, task create / delete

This commit is contained in:
Gregor Vostrak
2024-04-08 18:41:04 +02:00
parent 0081aa7a6e
commit 5293bc7a05
32 changed files with 733 additions and 215 deletions

View File

@@ -40,6 +40,10 @@ Route::middleware([
return Inertia::render('Projects');
})->name('projects');
Route::get('/projects/{project}', function () {
return Inertia::render('ProjectShow');
})->name('projects.show');
Route::get('/clients', function () {
return Inertia::render('Clients');
})->name('clients');