counts on the dashboard

This commit is contained in:
2025-04-08 17:54:33 +01:00
parent 57b35b4849
commit a7386814c7
4 changed files with 65 additions and 14 deletions

View File

@@ -32,7 +32,8 @@ Route::middleware(['auth', 'verified'])->group(function () {
});
Route::resource('applications', ApplicationController::class)
->only('show')
->only('show', 'index')
->name('index', 'applications.index')
->name('show', 'applications.show');
Route::prefix('applications/{application}')->group(function () {