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

View File

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