@extends('layouts.app') @section('title', 'Contact') @section('content')
@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 NĂºmero XML PDF AttachedDocument ZipAtt Enviar
{!! $document->type_document->name !!} {!! $document->date_issue !!} {!! $document->prefix !!} {!! $document->number !!}
@csrf
@csrf
@csrf
@csrf
@csrf
@csrf
@endif
@endsection