@props(['id' => '', 'yearlyTotals' => []]) {{-- confirmation --}}
Year {{ $yearData['year'] }}
@if (floor((int) filter_var($yearData['total_hours'], FILTER_SANITIZE_NUMBER_INT) / 60) > 0) {{ floor((int) filter_var($yearData['total_hours'], FILTER_SANITIZE_NUMBER_INT) / 60) }} hrs @endif {{ round((int) filter_var($yearData['total_hours'], FILTER_SANITIZE_NUMBER_INT) % 60) }} @if (round((int) filter_var($yearData['total_hours'], FILTER_SANITIZE_NUMBER_INT) % 60) <= 1) min @else min @endif
{{ $monthData['month_name'] }} @php $totalMinutes = (int) filter_var( $monthData['total_hours'], FILTER_SANITIZE_NUMBER_INT, ); $hours = floor($totalMinutes / 60); $minutes = $totalMinutes % 60; @endphp @if ($hours > 0) {{ $hours }} hrs @elseif ($hours == 1) {{ $hours }} hr @endif {{ $minutes }} @if ($minutes <= 1) min @else mins @endif |