@extends('layouts.app') @section('title', 'Consulta de Alumno por DNI') @section('content')

Consulta de Alumno por DNI

{{-- FORMULARIO --}}
@csrf
@error('dni')
{{ $message }}
@enderror
{{-- RESULTADO DE CONSULTA --}} @isset($alumno)
{{-- ALUMNO ENCONTRADO --}} {{-- RESULTADOS DE TÍTULOS --}}
Títulos / Certificados:
@if($titulos->count())
    @foreach($titulos as $titulo)
  • RD: {{ $titulo->rd ?? 'N/A' }}
    Fecha de Emisión: {{ $titulo->fecha ? $titulo->fecha->format('d/m/Y') : 'N/A' }}
    Especialidad: {{ $titulo->espec ?? 'N/A' }}
    Modalidad: {{ $titulo->mod ?? 'N/A' }}
    Libro/Página: {{ $titulo->libro ?? 'N/A' }} / {{ $titulo->pagina ?? 'N/A' }}
    CEPRO: {{ $titulo->cepro->nom_cepro ?? 'N/A' }}
  • @endforeach
@else @endif
@endisset
@endsection