@extends('layouts.app') @section('title', 'Contact') @section('content')

Documentos enviados al adquiriente - {{$customer_idnumber}}.

@if ($documents->isEmpty())
No hay documentos para mostrar.
@else @foreach($documents as $document) @php $allow_public_downloads = env("ALLOW_PUBLIC_DOWNLOAD", true) @endphp @if($allow_public_downloads) @else @endif @endforeach
Tipo Documento Fecha Prefijo Numero XML PDF AttachedDocument ZipAtt Enviar
{!! $document->type_document->name !!} {!! $document->date_issue !!} {!! $document->prefix !!} {!! $document->number !!}
@endif
@endsection