sigd/resources/views/modules/reports/worksheet/tables/4D1e.blade.php

48 lines
2.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<div class="table-responsive" style="overflow-x: auto;">
<table class="table table-bordered table-striped" style="min-width: 1095px;">
<thead class="table-info text-white text-center">
<tr>
<th></th>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
<th>E</th>
<th>F</th>
</tr>
<tr>
<th>Tahun</th>
<th>Nitrogen di effluen<br>(N<sub>EFFLUENT</sub>)<br>(kg N / year)</th>
<th>Faktor emisi<br>(kg N<sub>2</sub>O-N / kg N)</th>
<th>Faktor konversi dari kg N<sub>2</sub>O-N ke kg N<sub>2</sub>O<br>44 / 28</th>
<th>Emisi dari IPAL (default = nol)<br>(kg N<sub>2</sub>O-N / year)</th>
<th>Total emisi N<sub>2</sub>O<br>(kg N<sub>2</sub>O-N / year)</th>
<th>Total emisi N<sub>2</sub>O<br>(Gg N<sub>2</sub>O-N / year)</th>
</tr>
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th>E = A x B x C D</th>
<th></th>
</tr>
</thead>
<tbody>
@foreach ($emisiData as $data)
<tr class="text-right">
<td class="text-left"></td>
<td>{{ $isExport ? $data->n_effluent : getFormattedValue($data->n_effluent, 2) }}</td>
<td>{{ $isExport ? $data->ef : getFormattedValue($data->ef) }}</td>
<td>{{ $isExport ? $data->ef_conversion_factor : getFormattedValue($data->ef_conversion_factor) }}</td>
<td>{{ $isExport ? $data->ef_ipal_emission : getFormattedValue($data->ef_ipal_emission) }}</td>
<td>{{ $isExport ? $data->n2o_kg : getFormattedValue($data->n2o_kg, 2) }}</td>
<td>{{ $isExport ? $data->n2o_gg : getFormattedValue($data->n2o_gg, 2) }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>