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

Arquivos XML NFe Importados


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

{!!Form::close()!!} @php $cont = 0; @endphp
@foreach($data as $item) @if(file_exists(public_path("xml_entrada/").$item->chave_importada.".xml")) @php $cont++; @endphp @endif @endforeach @if(sizeof($data) > 0) @endif
Fornecedor Número Chave Valor
{{ $item->fornecedor ? $item->fornecedor->info : '--' }} {{ $item->numero }} {{ $item->chave_importada }} {{ __moeda($item->total) }}
Total {{ __moeda($data->sum('total')) }}
@if(sizeof($data) > 0)

Total de registros: {{ $cont }}


@if($escritorio != null && $escritorio->email)
@endif
@else

Filtre por período para buscar os arquivos

@endif
@endsection