Semana {{ $currentWeekNumber }}

Progreso de la meta

{{ $completedGoals }}
{{ $totalGoals }}
{{ number_format($progress, 2) }}%
@foreach ($weeklyGoals as $goal) @php // Progreso de cada meta individualmente $goalProgress = $goal->total_goals > 0 ? ($goal->completed_goals / $goal->total_goals) * 100 : 0; @endphp @endforeach
Metas Descripción Total Completadas Progreso
{{ $goal->title }} {{ $goal->description }} {{ $goal->total_goals }}
{{ $goal->completed_goals }}
Progreso total: {{ $goal->completed_goals }} / {{ $goal->total_goals }}
{{ number_format($goalProgress, 2) }}%