Files
w4rpservices/resources/views/structures/user/industrytaxes.blade.php
drkthunder02 d52a339637 re-ordered all of the view directories
setup corp tax ratio for structure tax helper
modified all view functions for new directory layout
2019-02-13 21:07:21 -06:00

28 lines
747 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>Industry Taxes</th>
</thead>
<tbody>
@foreach($taxes as $tax)
<tr>
<td>{{ $tax['date'] }}</td>
<td>{{ $tax['tax'] }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@endsection