- Proyecto
- {{ $task->project->name }}
@if($task->phase)
- Fase
- {{ $task->phase->name }}
@endif
@if($task->parent_task_id)
@endif
- Creada por
- {{ $task->creator->name }}
- Fecha creación
- {{ $task->created_at->format('d/m/Y H:i') }}
@if($task->due_date)
- Vence
-
{{ $task->due_date->format('d/m/Y') }}
@if($task->is_overdue) (Vencida) @endif
@if($task->is_due_today) (Hoy) @endif
@endif
@if($task->start_date)
- Inicio
- {{ $task->start_date->format('d/m/Y') }}
@endif
@if($task->completed_at)
- Completada
- {{ $task->completed_at->format('d/m/Y H:i') }}
- Completada por
- {{ $task->completer->name ?? '—' }}
@endif
@if($task->estimated_hours || $task->actual_hours)
- Horas
-
{{ $task->estimated_hours ? $task->estimated_hours . 'h estimadas' : '' }}
@if($task->estimated_hours && $task->actual_hours) / @endif
{{ $task->actual_hours ? $task->actual_hours . 'h reales' : '' }}
@endif