@extends('layouts.app', ['title' => 'Arquivos XML NFe Entrada']) @section('content')

Arquivos XML NFe Entrada


{!!Form::open()->fill(request()->all()) ->get() !!}
{!!Form::date('start_date', 'Data inicial') !!}
{!!Form::date('end_date', 'Data final') !!}

{!!Form::close()!!}
@foreach($data as $item) @if(file_exists(public_path("xml_nfe/").$item->chave.".xml")) @endif @endforeach @if(sizeof($data) > 0) @endif
Fornecedor Número Chave Valor
{{ $item->fornecedor ? $item->fornecedor->info : '--' }} {{ $item->numero }} {{ $item->chave }} {{ __moeda($item->total) }}
Total {{ __moeda($data->sum('total')) }}
@if(sizeof($data) > 0)
@if($escritorio != null && $escritorio->email)
@endif
@else

Filtre por período para buscar os arquivos

@endif
@endsection