| Elemento | +Estado | +Progreso | +Responsable | +
|---|---|---|---|
| {{ $feature->name ?? 'Sin nombre' }} | ++ + {{ match($feature->status) { + 'planned' => 'Planificado', + 'started' => 'Iniciado', + 'in_progress' => 'En progreso', + 'completed' => 'Completado', + 'verified' => 'Verificado', + default => ($feature->status ?? 'N/A'), + } }} + + | +
+
+
+
+
+
+ {{ $feature->progress ?? 0 }}%
+ |
+ {{ $feature->responsible ?? ($feature->responsibleUser?->name ?? '—') }} | +
Rango de fechas: {{ $filters->date_from ? $filters->date_from->format('d/m/Y') : 'Sin fecha desde' }} — {{ $filters->date_to ? $filters->date_to->format('d/m/Y') : 'Sin fecha hasta' }}
+Secciones: {{ implode(', ', collect($filters->entity_types)->map(fn ($k) => ucfirst(str_replace('_', ' ', $k)))->toArray()) }}
+Incluir fotos: {{ $filters->include_photos ? 'Sí' : 'No' }}
+Incluir gráficos: {{ $filters->include_charts ? 'Sí' : 'No' }}
+