@if(session()->has('message'))
{{ session('message') }}
@endif

Progreso de fase: {{ $phase->name }}

{{ $phase->project->name ?? '' }}

{{ $phase->progress_percent }}%

0%25%50%75%100%
{{ $progress }}%
@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
← Volver