Files
w4rpservices/resources/views/structures/industrytaxes.blade.php
2019-01-05 19:19:21 -06:00

31 lines
952 B
PHP

@extends('layouts.b4')
@section('content')
<div class="container">
<div class="card">
<div class="card-header">
Structure Industry Taxes
</div>
<div class="card-body">
<table class="table table-striped">
<thead>
<th>Month</th>
<th>Structure</th>
<th>Industry Taxes</th>
</thead>
<tbody>
<?php var_dump($totalTaxes); ?>
@for($i = 0; $i < $months; $i++)
<tr>
<td>{{ $totalTaxes[$i]['MonthStart'] }}</td>
<td>{{ $totalTaxes[$i]['Structure'] }}</td>
<td>{{ $totalTaxes[$i]['IndustryTaxes'] }}</td>
</tr>
@endfor
</tbody>
</table>
</div>
</div>
</div>
@endsection