arcadiasuite/plus/resources/views/exports/relatorio_estoque.blade.php

28 lines
923 B
PHP

<table>
<thead>
<tr>
<th style="width: 300px">PRODUTO</th>
<th style="width: 200px">CATEGORIA</th>
<th style="width: 120px">VALOR DE COMPRA</th>
<th style="width: 120px">VALOR DE VENDA</th>
<th style="width: 120px">QUANTIDADE</th>
<th style="width: 120px">ESTOQUE MÍNIMO</th>
<th style="width: 200px">DATA DE CADASTRO</th>
</tr>
</thead>
<tbody>
@foreach($data as $key => $item)
<tr>
<td>{{ $item['produto'] }}</td>
<td>{{ $item['categoria'] }}</td>
<td>{{ __moeda($item['valor_compra']) }}</td>
<td>{{ __moeda($item['valor_venda']) }}</td>
<td>{{ $item['quantidade'] }}</td>
<td>{{ $item['estoque_minimo'] }}</td>
<td>{{ $item['data_cadastro'] }}</td>
</tr>
@endforeach
</tbody>
</table>