prefix('v1')->group(function () { Route::get('notifications', [NotificationController::class, 'index'])->name('notifications.index'); Route::patch('notifications/{id}/read', [NotificationController::class, 'markAsRead'])->name('notifications.markAsRead'); Route::patch('notifications/mark-all-read', [NotificationController::class, 'markAllAsRead'])->name('notifications.markAllAsRead'); Route::get('notifications/count', [NotificationController::class, 'getCount'])->name('notifications.count'); });