Labour Timesheet Report

List of Timesheet for {{ $project->project_title }}
Company Address Telephone Fax E-mail
{{ $project->company->company_name }} {!! $project->company->address_line1 ? $project->company->address_line1.'
' : '' !!} {!! $project->company->address_line2 ? $project->company->address_line2.'
' : '' !!}
{{ $project->company->phone }} {{ $project->company->fax }} {{ $project->company->email }}
@php $all_total_hourss =0; $total = 0; $total_h = 0; $total_p = 0; $total_hp = 0; $gtotal_cost = 0; $gall_total_cost = 0; $gtotal_estimate = 0; $gtotal_profit = 0; $gtotal_loss = 0; @endphp @if($labourTimesheets->isNotEmpty()) @foreach($labourTimesheets as $labourTimesheet) @php $total_estimate = 0; $total_cost = 0; $all_total_cost = 0; $all_total_hours = 0; $total_profit = 0; $total_loss = 0; $tm = 0; $profit=0; $loss=0; $gtotal_estimate = ($gtotal_estimate + $total_estimate); $gtotal_profit = ($gtotal_profit + $total_profit); $gtotal_loss = ($gtotal_loss + $total_loss); $gall_total_cost = ($gall_total_cost + $all_total_cost); @endphp @endforeach @endif
View Sub Code Activity Code Activity Allocated/Hr Total spent/hr Remaining/hr Total cost Estimate Profit Loss
Total Cost : £{{ number_format($gall_total_cost,2) }} Estimate : £{{ number_format($gtotal_estimate,2) }} Profit : £{{ number_format($gtotal_profit,2) }} Loss : £{{ number_format($gtotal_loss,2) }}