This commit is contained in:
2019-11-07 00:17:15 -06:00
parent 863c7080d3
commit 096378bdd3

View File

@@ -18,10 +18,12 @@
</thead>
<tbody>
@foreach($composition as $key => $value)
@if($value > 0)
<tr>
<td>{{ $key }}</td>
<td>{{ $value }}</td>
<td>{{ number_format($value, 0, ".", ",") }}</td>
</tr>
@endif
@endforeach
</tbody>
</table>