Files
w4rpservices/resources/views/structures/taxes.blade.php
2018-12-07 22:26:18 -06:00

62 lines
2.0 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>Reprocessing Tax</th>
<th>Market Tax</th>
</thead>
<tbody>
<tr>
<td>This Month</td>
<td>{{ $totalTaxes['thisMonthReprocessing'] }}</td>
<td>{{ $totalTaxes['thisMonthMarket'] }}
</tr>
<tr>
<td>Last Month</td>
<td>{{ $totalTaxes['lastMonthReprocessing'] }}</td>
<td>{{ $totalTaxes['lastMonthMarket'] }}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<br>
<div class="container">
<div class="card">
<div class="card-header">
Structure Taxes without Fuel Cost Reduction
</div>
<div class="card-body">
<table class="table table-striped">
<thead>
<th>Month</th>
<th>Reprocessing Generation</th>
<th>Market Generation</th>
</thead>
<tbody>
<tr>
<td>This Month So Far</td>
<td>{{ $totalTaxes['thisMoRepGeneration'] }}</td>
<td>{{ $totalTaxes['thisMoMarketGeneration'] }}</td>
</tr>
<tr>
<td>Last Month</td>
<td>{{ $totalTaxes['lastMoRepGeneration'] }}</td>
<td>{{ $totalTaxes['lastMoMarketGeneration'] }}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
@endsection