@extends('layouts.app') @section('style') @endsection @section('content')
Billings
CLLIENT

{{ $contract->first_name . ' ' . $contract->last_name }}

START

{{ $billing->start_date }}

END

{{ $billing->end_date }}

DATE CREATED

{{ $billingRecord->created_at }}

@foreach ($billingPersonnels as $billingPersonnel) @endforeach
Work Days Over Time Total
WD Amount RD Amount SH Amount RH Amount DH Amount SH-RD Amount RH-RD Amount DH-RD Amount Total Days Total Amount WD Amount RD Amount SH Amount RH Amount DH Amount SH-RD Amount RH-RD Amount DH-RD Amount Total Hours Total Amount Agency Fee Employer Share W/H Tax VAT
Personnel Post ({{ number_format($billingRecord->wd_rate, 2)}}) ({{ number_format($billingRecord->rd_rate, 2)}}) ({{ number_format($billingRecord->sh_rate, 2)}}) ({{ number_format($billingRecord->rh_rate, 2)}}) ({{ number_format($billingRecord->dh_rate, 2)}}) ({{ number_format($billingRecord->shrd_rate, 2)}}) ({{ number_format($billingRecord->rhrd_rate, 2)}}) ({{ number_format($billingRecord->dhrd_rate, 2)}}) ({{ number_format($billingRecord->ot_wd_rate, 2)}}) ({{ number_format($billingRecord->ot_rd_rate, 2)}}) ({{ number_format($billingRecord->ot_sh_rate, 2)}}) ({{ number_format($billingRecord->regularRateOt, 2)}}) ({{ number_format($billingRecord->ot_dh_rate, 2)}}) ({{ number_format($billingRecord->ot_shrd_rate, 2)}}) ({{ number_format($billingRecord->ot_rhrd_rate, 2)}}) ({{ number_format($billingRecord->ot_dhrd_rate, 2)}})
{{ $billingPersonnel->last_name . ', ' . $billingPersonnel->first_name }} {{ $billingPersonnel->branch_name }} {{ $billingPersonnel->wd }} {{ number_format($billingPersonnel->wd_amount, 2) }} {{ $billingPersonnel->rd }} {{ number_format($billingPersonnel->rd_amount, 2) }} {{ $billingPersonnel->sh }} {{ number_format($billingPersonnel->sh_amount, 2) }} {{ $billingPersonnel->rh }} {{ number_format($billingPersonnel->rh_amount, 2) }} {{ $billingPersonnel->dh }} {{ number_format($billingPersonnel->dh_amount, 2) }} {{ $billingPersonnel->shrd }} {{ number_format($billingPersonnel->shrd_amount, 2) }} {{ $billingPersonnel->rhrd }} {{ number_format($billingPersonnel->rhrd_amount, 2) }} {{ $billingPersonnel->dhrd }} {{ number_format($billingPersonnel->dhrd_amount, 2) }} {{ $billingPersonnel->total_work_days }} {{ number_format($billingPersonnel->total_work_days_amount, 2) }} {{ $billingPersonnel->ot_wd }} {{ number_format($billingPersonnel->ot_wd_amount, 2) }} {{ $billingPersonnel->ot_rd }} {{ number_format($billingPersonnel->ot_rd_amount, 2) }} {{ $billingPersonnel->ot_sh }} {{ number_format($billingPersonnel->ot_sh_amount, 2) }} {{ $billingPersonnel->ot_rh }} {{ number_format($billingPersonnel->ot_rh_amount, 2) }} {{ $billingPersonnel->ot_dh }} {{ number_format($billingPersonnel->ot_dh_amount, 2) }} {{ $billingPersonnel->ot_shrd }} {{ number_format($billingPersonnel->ot_shrd_amount, 2) }} {{ $billingPersonnel->ot_rhrd }} {{ number_format($billingPersonnel->ot_rhrd_amount, 2) }} {{ $billingPersonnel->ot_dhrd }} {{ number_format($billingPersonnel->ot_dhrd_amount, 2) }} {{ $billingPersonnel->total_ot_hours }} {{ number_format($billingPersonnel->total_ot_amount, 2) }} {{ number_format($billingPersonnel->agency_fee, 2) }} {{ number_format($billingPersonnel->employee_share, 2) }} {{ number_format($billingPersonnel->withholding_tax, 2) }} {{ number_format($billingPersonnel->vat, 2) }} ₱{{ number_format($billingPersonnel->total, 2) }}
Total ₱{{ number_format($billingRecord->grand_total, 2)}}
@endsection