From 14eaa4063ed4ae923d834f89600bdb63288af34d Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Wed, 27 Feb 2019 22:36:15 -0600 Subject: [PATCH] taxes controller --- app/Http/Controllers/TaxesController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Http/Controllers/TaxesController.php b/app/Http/Controllers/TaxesController.php index 0b2135e52..c4819ebe5 100644 --- a/app/Http/Controllers/TaxesController.php +++ b/app/Http/Controllers/TaxesController.php @@ -60,10 +60,10 @@ class TaxesController extends Controller } //Return the view with the compact variable list - return view('/taxes/admin/displaystreams')->with('pi', $pi) - ->with('industry', $industry) - ->with('reprocessing', $reprocessing) - ->with('office', $office); + return view('/taxes/admin/displaystreams')->with('pis', $pis) + ->with('industrys', $industrys) + ->with('reprocessings', $reprocessings) + ->with('offices', $offices); } }