| {{$wage->user->name}} |
{{$wage->countryBranch->branch_name}} |
{{$wage->work_date}} |
@if($wage->is_leave)
Leave on this day |
@else
{{$wage->time_total}} |
{{$wage->rate_per_hour}} {{$wage->currency->currency}} |
@php($tt = explode(':', $wage->time_total))
@php($total_time = $tt[0] + ($tt[1]/60))
@php($in = strtotime($wage->time_out) - strtotime($wage->time_in))
{{number_format(round($total_time * $wage->rate_per_hour), 2)}} {{$wage->currency->currency}} |
{{$wage->time_ot}} |
{{$wage->ot_rate_per_hour}} |
@if($wage->time_ot)
@php($otTime = explode(':', $wage->time_ot))
@php($ot = $otTime[0] + ($otTime[1]/60))
@else
@php($ot = 0)
@endif
{{number_format(round($ot * $wage->ot_rate_per_hour), 2)}} {{$wage->currency->currency}} |
@endif
@endforeach
@endif