@extends('layouts.app') @section('content')
{{-- Navegación --}}
Volver al listado
Expediente Digital #{{ $postulante->id }} | Registrado el {{ $postulante->created_at->format('d/m/Y H:i') }}
{{-- COLUMNA IZQUIERDA: DATOS DEL POSTULANTE --}}
Datos Personales
Seudónimo
{{ $postulante->seudonimo }}
Nombre y Apellido
{{ $postulante->nombres }} {{ $postulante->apellidos }}
DNI / Documento
{{ $postulante->dni ?? 'No informado' }}
Correo Electrónico
{{ $postulante->email }}

Estado de Participación
@if($postulante->categoria)
CONCURSO: {{ strtoupper($postulante->categoria) }}
@endif @if($postulante->participa_historica)
PARTICIPA EN HISTÓRICAS
@endif
@if($postulante->archivo_pdf_path)
Documentación Adjunta
Ver DNI / DDJJ (PDF)
@endif
{{-- COLUMNA DERECHA: GALERÍA POR TIPOS --}}
{{-- SECCIÓN: FOTOS PARA CONCURSO --}} @php $fotosConcurso = $postulante->fotos->whereIn('tipo', [1, 2]); @endphp @if($fotosConcurso->count() > 0)

Obras en Concurso

@foreach($fotosConcurso as $index => $foto)
OBRA #{{ $index + 1 }}
Título / Título de Obra

{{ $foto->titulo ?? 'Sin título' }}

Memoria Descriptiva

{{ $foto->detalle ?? 'Sin descripción.' }}

@endforeach @endif {{-- SECCIÓN: FOTOS HISTÓRICAS --}} @php $fotosHistoricas = $postulante->fotos->where('tipo', 3); @endphp @if($fotosHistoricas->count() > 0)

Archivo Histórico

@foreach($fotosHistoricas as $foto)
Referencia Histórica

{{ $foto->titulo ?? 'Sin título' }}

{{ Str::limit($foto->detalle, 100) }}

@endforeach
@endif @if($postulante->fotos->count() == 0)

Este postulante no ha cargado imágenes aún.

@endif
@endsection