@extends('padrao') @section('content')

@yield('tipo') NF-e

@if (isset($faturamento)) @switch($faturamento->status) @case(0) Aberta @break @case(1) Encerrada @break @endswitch @else Aberta @endif
{{ csrf_field() }}
Arquivo
TOTALIZADORES DA NOTA FISCAL DE ENTRADA
ITENS DA NOTA FISCAL
@if (isset($itens_faturamento)) @foreach ($itens_faturamento as $item_faturamento) @endforeach @endif
# Cod. Forn Cod. Int Descrição CFOP Qtd. Fat Conversão Valor Un Desconto Total
{{$item_faturamento->id_produto}} {{$item_faturamento->descricao_longa}} {{$item_faturamento->ean}} {{$item_faturamento->unidade}} {{$item_faturamento->cfop}} {{$item_faturamento->csosn}} {{Str::formatBRCurrency2( $item_faturamento->valor_venda)}} {{$item_faturamento->quantidade}} {{Str::formatBRCurrency2( $item_faturamento->valor_desconto)}} {{Str::formatBRCurrency2( $item_faturamento->valor_total)}}
# Cod. Forn Cod. Int Descrição CFOP Qtd. Fat Conversão Valor Un Desconto Total

Sub-total: R$ 0,00

Desconto : R$ 0,00


Total : R$ 0,00



@yield('botoes')
@endsection @section('js') @endsection