setup corp tax ratio for structure tax helper modified all view functions for new directory layout
28 lines
747 B
PHP
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 |