Progreso de fase: {{ $phase->name }}
{{ $phase->project->name ?? '' }}
{{ $phase->progress_percent }}%
@if($phase->progressUpdates->count() > 0)
Historial
@foreach($phase->progressUpdates()->latest()->take(10)->get() as $update)
{{ $update->progress_percent }}%
{{ $update->created_at->diffForHumans() }}
@if($update->comment)
{{ $update->comment }}
@endif
@endforeach
@endif