Files
w4rpservices/resources/views/structures/taxes.blade.php
2018-12-11 20:01:44 -06:00

39 lines
1.4 KiB
PHP

@extends('layouts.b4')
@section('content')
<div class="container">
<div class="card">
<div class="card-header">
Structure Taxes
</div>
<div class="card-body">
<table class="table table-striped">
<thead>
<th>Month</th>
<th>Market Tax</th>
<th>Market Revenue</th>
<th>Refinery Tax</th>
<th>Refinery Revenue</th>
</thead>
<tbody>
<tr>
<td>This Month</td>
<td>{{ $totalTaxes['thisMonthMarket'] }}</td>
<td>{{ $totalTaxes['thisMonthRevMarket'] }}</td>
<td>{{ $totalTaxes['thisMonthRefinery'] }}</td>
<td>{{ $totalTaxes['thisMonthRevRefinery'] }}</td>
</tr>
<tr>
<td>Last Month</td>
<td>{{ $totalTaxes['lastMonthMarket'] }}</td>
<td>{{ $totalTaxes['lastMonthRevMarket'] }}</td>
<td>{{ $totalTaxes['lastMonthRefinery'] }}</td>
<td>{{ $totalTaxes['lastMonthRevRefinery'] }}</td>
</tr>
</tr>
</tbody>
</table>
</div>
</div>
</div>
@endsection