From 02e7f738fc9c6ccc7150f816454f01b61369b1df Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Tue, 6 Aug 2019 12:37:56 -0500 Subject: [PATCH] testing --- .../Controllers/Dashboard/DashboardController.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/Http/Controllers/Dashboard/DashboardController.php b/app/Http/Controllers/Dashboard/DashboardController.php index b087190f3..4893a1fcf 100644 --- a/app/Http/Controllers/Dashboard/DashboardController.php +++ b/app/Http/Controllers/Dashboard/DashboardController.php @@ -114,8 +114,8 @@ class DashboardController extends Controller ])->get()->toArray(); //Add the alt's open requests to the open requests array - foreach($altOpen as $alt) { - array_push($open, $alt); + foreach($altOpen as $aOpen) { + array_push($open, $aOpen); } } @@ -134,8 +134,8 @@ class DashboardController extends Controller ])->take(5)->get()->toArray(); //For each alt add it to the array - foreach($altApproved as $alt) { - array_push($approved, $alt); + foreach($altApproved as $aApproved) { + array_push($approved, $aApproved); } } @@ -154,8 +154,8 @@ class DashboardController extends Controller ])->take(5)->get()->toArray(); //For each alt's denied request add it to the array - foreach($altDenied as $alt) { - array_push($denied, $alt); + foreach($altDenied as $aDenied) { + array_push($denied, $aDenied); } } }