industry taxes testing

This commit is contained in:
2019-01-05 23:00:59 -06:00
parent 63eeddf7f7
commit a5d1313bbf
2 changed files with 1 additions and 3 deletions

View File

@@ -32,7 +32,6 @@ class StructureController extends Controller
public function displayIndustryTaxes() {
$this->middleware('role:Admin');
$corpId = 98287666;
$months = 3;
$taxes = array();
@@ -48,7 +47,7 @@ class StructureController extends Controller
->sum('amount');
$taxes[] = ['date' => $date['start'], 'tax' => $tax];
}
dd($taxes);
return view('structures.industrytaxes')->with('taxes', $taxes);
}