From 459b62500ef7b425da64b1f7e1954493001982fd Mon Sep 17 00:00:00 2001 From: Adrian Hopek Date: Wed, 13 Apr 2022 11:58:30 +0200 Subject: [PATCH] #122 - fix missing people in vacation request view (#123) --- .../Http/Controllers/VacationRequestController.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Infrastructure/Http/Controllers/VacationRequestController.php b/app/Infrastructure/Http/Controllers/VacationRequestController.php index 917110c..6325789 100644 --- a/app/Infrastructure/Http/Controllers/VacationRequestController.php +++ b/app/Infrastructure/Http/Controllers/VacationRequestController.php @@ -103,7 +103,6 @@ class VacationRequestController extends Controller ->paginate(); $users = User::query() - ->withVacationLimitIn($yearPeriod) ->orderBy("last_name") ->orderBy("first_name") ->get();