| Item | Código | Categoria | Stock Total | Valor Unitário | Valor Total |
|---|---|---|---|---|---|
| {{ $item->nome }} | {{ $item->codigo }} | {{ $item->categoria->nome ?? 'N/A' }} | {{ number_format($item->quantidadeTotal(), 0, ',', '.') }} | {{ number_format($item->custo_atual, 2, ',', '.') }} Kz | {{ number_format($item->quantidadeTotal() * $item->custo_atual, 2, ',', '.') }} Kz |
| Item | Quantidade | Status |
|---|---|---|
| {{ $item['nome'] }} | {{ number_format($item['quantidade'], 0, ',', '.') }} | @if($item['quantidade'] == 0) Sem Stock @elseif($item['quantidade'] <= $item['ponto_reposicao']) Baixo @else Normal @endif |
Total de Itens: {{ number_format($relatorio['totais']['total_itens'] ?? 0, 0, ',', '.') }}
Quantidade Total: {{ number_format($relatorio['totais']['quantidade_total'] ?? 0, 0, ',', '.') }}
@if(isset($relatorio['totais']['valor_total']))Valor Total em Stock: {{ number_format($relatorio['totais']['valor_total'], 2, ',', '.') }} Kz
@endif