@php $inCompletedTotal = $total - $completedTotal; $circumference = 72 * 2 * pi(); $completedProgressWidth = 100 * ( $completedTotal / ($total == 0 ? 1 : $total) ); $inCompletedProgressWidth = 100 * ( $inCompletedTotal / ($total == 0 ? 1 : $total) ); @endphp
{{((int)$completedProgressWidth).'%'}}
{{ __('title.total_goals') }}

{{ $total }}

{{ __('forms.lbl_completed') }}

{{ $completedTotal }}

{{ __('forms.lbl_not_completed') }}

{{ $inCompletedTotal }}