Resumen de Seguimientos de la Meta: "{{ $meta->nombre }}"

@if ($actividades->isEmpty())
No hay actividades registradas.
@else
@foreach ($actividades as $actividad) @if ($actividad->seguimientos->count() > 1) @endif @endforeach
Actividad Ăšltimo Estado
{{ $actividad->nombre_actividad }} @php $ultimo = $actividad->seguimientos->last(); @endphp @if ($ultimo) @php $colorClass = match ($ultimo->estado) { 'pendiente' => 'bg-yellow-100 text-yellow-800', 'en progreso' => 'bg-blue-100 text-blue-800', 'finalizado' => 'bg-green-100 text-green-800', default => 'bg-gray-100 text-gray-800', }; @endphp {{ ucfirst($ultimo->estado) }} ({{ \Carbon\Carbon::parse($ultimo->periodo_consultar)->format('d-m-Y') }}) @if ($actividad->seguimientos->count() > 1) @endif @else Sin seguimiento @endif
    @foreach ($actividad->seguimientos->slice(0, -1)->reverse() as $seguimiento) @php $colorClass = match ($seguimiento->estado) { 'pendiente' => 'bg-yellow-100 text-yellow-800', 'en progreso' => 'bg-blue-100 text-blue-800', 'finalizado' => 'bg-green-100 text-green-800', default => 'bg-gray-100 text-gray-800', }; @endphp
  • {{ \Carbon\Carbon::parse($seguimiento->periodo_consultar)->format('d-m-Y') }} | {{ ucfirst($seguimiento->estado) }} @if ($seguimiento->observaciones) | {{ $seguimiento->observaciones }} @endif
  • @endforeach
@endif