@extends('relatorios.default') @section('content') @section('css') @endsection @if($local)

Local: {{ $local->info }}


@else

Local: {{ $empresa->info }}


@endif

Total de registros: {{ sizeof($data)}}


@php $soma = 0; @endphp @foreach($data as $key => $item) @php $soma += $item['sub_total']; @endphp @endforeach
NCM Produto Unidade Quantidade Custo unitário Custo total
{{ $item['ncm'] }} {{ $item['nome'] }} {{ $item['unidade'] }} {{ $item['quantidade'] ? $item['quantidade'] : '--' }} {{ __moeda($item['custo_unuitario']) }} {{ __moeda($item['sub_total']) }}
Soma {{ __moeda($soma) }}
@endsection