@vite(['resources/css/app.css', 'resources/js/app.js'])

Documentación del Cliente

{{ trim(($cliente->persona?->nombre ?? '') . ' ' . ($cliente->persona?->apellido ?? '')) !== '' ? trim(($cliente->persona?->nombre ?? '') . ' ' . ($cliente->persona?->apellido ?? '')) : 'Cliente' }} · DNI: {{ $cliente->dni }}

Volver
@if (session('success')) @endif @if ($errors->any()) @endif

Agregar documentación

@csrf
Podés subir PDF, imágenes, Word, Excel o TXT. Máximo 5 MB por archivo.

Documentación actual

@if($documentos->isEmpty())
Este cliente aún no tiene documentación cargada.
@else
@foreach($documentos as $documento) @endforeach
Archivo Tipo Tamaño Fecha Acciones
{{ $documento->nombre_visible ?? $documento->nombre }}
{{ $documento->nombre }}
{{ strtoupper((string) $documento->extension) }} {{ number_format(((int) $documento->tamanio_bytes) / 1024, 1, ',', '.') }} KB {{ $documento->created_at ? $documento->created_at->format('d/m/Y H:i') : '-' }}
@if($documento->archivo_existe) Ver Descargar @else Archivo no encontrado @endif
@csrf
@endif
@include('partials.reportar-falla-boton')