add billing, organization settings and import to navigation

This commit is contained in:
Gregor Vostrak
2024-05-21 02:44:09 +02:00
parent c67c5e46e1
commit efd3fef0c5
4 changed files with 93 additions and 11 deletions

View File

@@ -59,6 +59,10 @@ Route::middleware([
return Inertia::render('Tags');
})->name('tags');
Route::get('/import', function () {
return Inertia::render('Import');
})->name('import');
});
Route::get('health-check/up', [HealthCheckController::class, 'up']);