{{-- Historial de Gestiones --}} @if($solicitud->gestiones && $solicitud->gestiones->count())
Historial de Gestiones
@foreach($solicitud->gestiones->sortBy('fecha_gestion') as $gestion)
{{ \Carbon\Carbon::parse($gestion->fecha_gestion)->format('d/m/Y H:i') }}
{{ $gestion->descripcion_gestion ?? 'Sin descripción' }}
@endforeach
@endif