Detalles de Institución

@if (session('error')) @endif
ID: {{ $institucion->id }}
Nombre: {{ $institucion->nombre }}
Tipo: {{ $institucion->tipo ?? 'N/A' }}
Nómina: {{ $institucion->nomina ?? 'N/A' }}
Planta: {{ $institucion->planta ? 'Sí' : 'No' }}
Acrónimo: {{ $institucion->acronimo ?? 'N/A' }}
Trabajadores: @if ($institucion->trabajadores->isEmpty())

No hay trabajadores asociados.

@else
    @foreach ($institucion->trabajadores as $trabajador)
  • {{ $trabajador->nombre ?? 'Trabajador #' . $trabajador->id }}
  • @endforeach
@endif