From d63517d8e2e62596e32f29befd40dbfb1922a70a Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Fri, 7 Dec 2018 03:38:51 -0600 Subject: [PATCH] StructureController --- app/Http/Controllers/StructureController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/StructureController.php b/app/Http/Controllers/StructureController.php index 1404a33a8..c7b5e2217 100644 --- a/app/Http/Controllers/StructureController.php +++ b/app/Http/Controllers/StructureController.php @@ -91,9 +91,9 @@ class StructureController extends Controller //Create the array to pass to the blade view $totalTaxes = [ 'thisMonthReprocessing' => number_format($monthTaxesReprocessing, 2, '.', ','), - 'lastMonthReprocessing' => number_format($lastMonthTaxesReprocessing, 2, '.', ','), + 'lastMonthReprocessing' => number_format($lastTaxesReprocessing, 2, '.', ','), 'thisMonthMarket' => number_format($monthTaxesMarket, 2, '.', ','), - 'lastMonthMarket' => number_format($lastMonthTaxesMarket, 2, '.', ','), + 'lastMonthMarket' => number_format($lastTaxesMarket, 2, '.', ','), ]; return view('structures.taxes')->with('totalTaxes', $totalTaxes);