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

View File

@@ -10,7 +10,6 @@
<table class="table table-striped"> <table class="table table-striped">
<thead> <thead>
<th>Month</th> <th>Month</th>
<th>Structure</th>
<th>Industry Taxes</th> <th>Industry Taxes</th>
</thead> </thead>
<tbody> <tbody>