@extends('layouts.sidebar') @section('title', 'billings') @section('content') @if (in_array('Billing Checking' || 'Client Interface', $privileges))
{{ $client->client->agency->name }}
{{ $client->client->agency->address }}
Tel: {{ $client->client->agency->contact_phone }}
Client Name: {{ $client->department_name }}
Address: {{ $client->client->address }}
@if ($hasBillingRecords)Billing Ref. #: {{ $hasBillingRecords->id }}
@endifPeriod Covered: {{ \Carbon\Carbon::parse($batchCode->pay_period_start)->format('F d, Y') }} - {{ \Carbon\Carbon::parse($batchCode->pay_period_end)->format('F d, Y') }}
Employee Name | Days | Rate | Amount | @foreach ($uniqueHeaders['others'] ?? [] as $header){{ $header }} | @endforeach @foreach ($uniqueHeaders['deductions'] ?? [] as $header){{ $header }} | @endforeach @foreach ($uniqueHeaders['benefits'] ?? [] as $header){{ $header }} | @endforeachGrand Total | |
---|---|---|---|---|---|---|---|---|
|
{{ $payroll->employee->first_name }} {{ substr($payroll->employee->middle_name, 0, 1) }}. {{ $payroll->employee->last_name }} | {{ $days }} @php // Initialize $total_days if it hasn't been defined earlier if (!isset($total_days)) { $total_days = 0; } $servicegrandtotal = 0; $vatgrandtotal = 0; // Add the value of $days to $total_days $total_days += $days; if ($latestCharge->special_rate_service != null) { $servicegrandtotal += $latestCharge->special_rate_service * $days; } if ($latestCharge->special_rate_vat != null) { $vatgrandtotal += $latestCharge->special_rate_vat * $days; } @endphp | {{ $valuerate }} | {{ $earnings }} | @foreach ($uniqueHeaders['others'] ?? [] as $header) @php $amount = '-'; // Find the benefit with the given header type $others = $payroll->othersForPayroll->firstWhere('name', $header); if ($others) { // Determine the amount based on conditions if (is_null($others->amount_adj) || empty($value)) { $amount = $others->amount ?? '-'; } elseif ($value == 1) { $amount = $others->amount_adj ?? '-'; } // If code_id is NOT NULL, match with chargeGroups if (!is_null($others->code_id)) { foreach ($chargeGroups as $groupcharge) { if ($others->code_id == $groupcharge->group_code_id) { $serviceamount += $others->amount_adj ?? ($others->amount ?? 0); } } foreach ($chargeGroups2 as $chargeGroup123) { if ($others->code_id == $chargeGroup123->group_code_id) { $vatamountcharges += $others->amount_adj ?? ($others->amount ?? 0); } } } } @endphp{{ is_numeric($amount) ? number_format($amount, 2) : $amount }} | @endforeach @foreach ($uniqueHeaders['deductions'] ?? [] as $header) @php $amount = $payroll->trxConstantDeductions->firstWhere( fn($earning) => optional( App\Models\TrxCode::find( $earning->trxConstant->group_code_id, ), )->description === $header, )?->E_Amount ?? '-'; @endphp{{ is_numeric($amount) ? number_format($amount, 2) : $amount }} | @endforeach @foreach ($uniqueHeaders['benefits'] ?? [] as $header) @php // Default value is '-' $amount = '-'; // Find the benefit with the given header type $benefit = $payroll->benefits->firstWhere('type', $header); // Check if the benefit exists if ($benefit) { // If 'er_adjustment' is null or $value is null or 0, use 'employer_share' if ( $benefit->er_adjustment === null || $value == null || $value == 0 ) { $amount = $benefit->employer_share ?? '-'; } elseif ($value == 1) { // If $value is 1, use 'er_adjustment' $amount = $benefit->er_adjustment ?? '-'; } } @endphp{{ is_numeric($amount) ? number_format($amount, 2) : $amount }} | @endforeach{{ number_format($rowTotal, 2) }} |
Total | {{ $total_days }} | @foreach ($uniqueHeaders['others'] ?? [] as $header) | {{ is_numeric($totals['others'][$header]) ? number_format($totals['others'][$header], 2) : '-' }} | @endforeach @foreach ($uniqueHeaders['deductions'] ?? [] as $header){{ is_numeric($totals['deductions'][$header]) ? number_format($totals['deductions'][$header], 2) : '-' }} | @endforeach @foreach ($uniqueHeaders['benefits'] ?? [] as $header){{ is_numeric($totals['benefits'][$header]) ? number_format($totals['benefits'][$header], 2) : '-' }} | @endforeach{{ number_format($totals['grand_total'], 2) }} |
Grand vat: {{ number_format($totals['grand_total_vat'] + $ear2 + $vatamountcharges, 2) }}
Grand service: {{ number_format($totals['grand_total_service'] + $ear1 + $serviceamount, 2) }}
@php $tatalservice = $totals['grand_total_service'] + $ear1 + $serviceamount; $totalvat = $totals['grand_total_vat'] + $ear2 + $vatamountcharges; @endphp @php if ($latestCharge->special_rate_service != null) { if ($latestCharge->service_charge_type == 'percentage') { $service_charge = $servicegrandtotal * ($latestCharge->service_charge / 100); $subtotal = $service_charge + $totals['grand_total']; } elseif ($latestCharge->service_charge_type == 'amount') { $service_charge = $servicegrandtotal * $latestCharge->charge_amount; $subtotal = $service_charge + $totals['grand_total']; } elseif ($latestCharge->s_computation_for_all == '1') { $service_charge = $totals['grand_total'] * $latestCharge->charge_amount; $subtotal = $service_charge + $totals['grand_total']; } } if ($latestCharge->special_rate_service == null && $latestCharge->s_camputation_for_all == 1) { if ($latestCharge->service_charge_type == 'percentage') { $service_charge = $totals['grand_total'] * ($latestCharge->service_charge / 100); $subtotal = $service_charge + $totals['grand_total']; } elseif ($latestCharge->service_charge_type == 'amount') { $service_charge = $totals['grand_total'] * $latestCharge->charge_amount; $subtotal = $service_charge + $totals['grand_total']; } elseif ($latestCharge->s_computation_for_all == '1') { $service_charge = $totals['grand_total'] * $latestCharge->charge_amount; $subtotal = $service_charge + $totals['grand_total']; } } if ($latestCharge->special_rate_service == null && $latestCharge->s_camputation_for_all != 1) { if ($latestCharge->service_charge_type == 'percentage') { $service_charge = $tatalservice * ($latestCharge->service_charge / 100); $subtotal = $service_charge + $totals['grand_total']; } elseif ($latestCharge->service_charge_type == 'amount') { $service_charge = $tatalservice * $latestCharge->charge_amount; $subtotal = $service_charge + $totals['grand_total']; } } //vatt if ($latestCharge->special_rate_vat != null) { $vat_charge = $vatgrandtotal * ($latestCharge->vat / 100); $subtotal1 = $vat_charge + $totals['grand_total']; } if ($latestCharge->special_rate_vat == null && $latestCharge->v_camputation_for_all == 1) { $vat_charge = $totals['grand_total'] * ($latestCharge->vat / 100); $subtotal1 = $vat_charge + $totals['grand_total']; } elseif ( $latestCharge->special_rate_vat == null && $latestCharge->v_camputation_for_all != 1 ) { $vat_charge = $totalvat * ($latestCharge->vat / 100); $subtotal1 = $vat_charge + $totals['grand_total']; } $vatplusservice = $vat_charge + $service_charge + $totals['grand_total']; @endphp @php if ($latestCharge->service_charge_type == 'percentage') { $holding = $totals['grand_total'] * ($latestCharge->withholding_tax / 100); $Amountbill = $vatplusservice - $holding; } else { $holding = $totals['grand_total'] * ($latestCharge->withholding_tax / 100); $Amountbill = $vatplusservice - $holding; } @endphp---------------------------------------
Note: {{ $hasBillingRecords->note }}
@endifPrepared by: {{ $hasBillingRecords->user->name }}
@endifThis billing is already finalized.
@else @endif