{{$weekSummary['totalStandardHours']}}
{{$weekSummary['totalStandardMinutes']}}
{{$weekSummary['totalOvertime15Hours']}}
{{$weekSummary['totalOvertime15Minutes']}}
{{$weekSummary['totalStandardHoursSalary']}}
{{$weekSummary['totalOvertime15Salary']}}
{{$weekSummary['totalCallOutHours']}}
{{$weekSummary['totalCallOutSalary']}}
{{$weekSummary['totalOtherPlus']}}
{{$weekSummary['totalOtherMinus']}}
{{$weekSummary['totalSalary']}}
{{$weekSummary['totalTax']}}
{{$weekSummary['userHourlyRate']}}
{{$weekSummary['totalNet']}}
@foreach($timeSheets as $timeSheet)
@foreach($timeSheet['timeSections'] as $timeSection) @if($timeSection['type']=='standard')
{{ucfirst($timeSection['type'])}}:
{{date('H:i:s',strtotime($timeSection['start']))}} - {{date('H:i:s',strtotime($timeSection['end']))}}
{{$timeSection['hours']}} hours, {{$timeSection['minutes']}} minutes
@endif @endforeach @foreach($timeSheet['timeSections'] as $timeSection) @if($timeSection['type']=='overtime')
{{ucfirst($timeSection['type'])}}:
{{date('H:i:s',strtotime($timeSection['start']))}} - {{date('H:i:s',strtotime($timeSection['end']))}}
{{$timeSection['hours']}} hours, {{$timeSection['minutes']}} minutes
@endif @endforeach @foreach($timeSheet['timeSections'] as $timeSection) @if($timeSection['type']=='travel')
{{ucfirst($timeSection['type'])}}:
{{date('H:i:s',strtotime($timeSection['start']))}} - {{date('H:i:s',strtotime($timeSection['end']))}}
{{$timeSection['hours']}} hours, {{$timeSection['minutes']}} minutes
@endif @endforeach

IWS
Engineer

Add

@endforeach