{{ __('Incidencias (Issues)') }}
@if(empty($issues))

{{ __('No hay incidencias en el rango seleccionado.') }}

@else
@foreach($issues as $issue) @php $priorityColor = match($issue['priority']) { 'critical' => 'text-red-600', 'high' => 'text-orange-600', 'medium' => 'text-amber-600', 'low' => 'text-gray-600', default => 'text-gray-600', }; $statusColor = match($issue['status']) { 'open' => 'badge-error', 'in_review' => 'badge-warning', 'closed' => 'badge-success', default => 'badge-ghost', }; @endphp @endforeach
ID Título Elemento Fase Prioridad Estado Reportado por Asignado a Creado Cerrado Días abierto Tareas
{{ $issue['id'] }} {{ $issue['title'] }} {{ $issue['feature'] }} {{ $issue['phase'] }} {{ $issue['priority_label'] }} {{ $issue['status_label'] }} {{ $issue['reporter'] }} {{ $issue['assignee'] }} {{ $issue['created_at'] }} {{ $issue['closed_at'] ?? '—' }} {{ $issue['days_open'] }} {{ $issue['tasks_completed'] }} / {{ $issue['tasks_total'] }}
@endif