@extends('layouts.app', ['is_employee' => true]) @section('title', 'Contact') @section('content')

Documentos electronicos de nominas enviados al empleado - {{$employee_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 ID Empresa XML PDF Enviar
{!! $document->type_document->name !!} {!! $document->date_issue !!} {!! $document->prefix !!} {!! $document->consecutive !!} {!! $document->identification_number !!}
@endif
@endsection