Holiday assigned: {{ $user->holiday_assign }}
Holiday maximum: {{ $user->holiday_max }}
Holiday increment: @if ($user->holiday_increasement == 1) Yes @else No @endif
Recieve Statutory Holidays @if ($user->receive_statutory_holidays == 1) Yes @else No @endif
Holiday renewal month @php $month = $user->holiday_renewal_month; $months = [ 1 => 'January', 2 => 'February', 3 => 'March', 4 => 'April', 5 => 'May', 6 => 'June', 7 => 'July', 8 => 'August', 9 => 'September', 10 => 'October', 11 => 'November', 12 => 'December', ]; @endphp {{ $months[$month] }}