{{-- Historial de Gestiones --}} @if($solicitud->gestiones && $solicitud->gestiones->count())
Historial de Gestiones
@foreach($solicitud->gestiones->sortBy('fecha_gestion') as $gestion)
{{ $gestion->fecha_formateada }}
{{ $gestion->descripcion_gestion ?? 'Sin descripción' }}
@endforeach
@endif