COST SHEET REFERENCE: |
{{ $cost_sheet->cost_sheet_ref }} |
LABOUR SUPPLY COMPANY (LSC): |
{{ $cost_sheet->gang->gang_name }} |
COST SHEET DATE: |
{{ Carbon\Carbon::parse($cost_sheet->cost_sheet_date)->format('jS M Y') }} |
TAKE-OVER CENTRE |
{{ $cost_sheet->port->name }} |
SEASON |
{{ $cost_sheet->season->name }} |
TOTAL WAGES: |
GH¢ {{ number_format($cost_sheet->total_labour_cost, 2) }} |
@if ($cost_sheet->milk_cost > 0 && $cost_sheet->soda_cost > 0)
MILK & SODA: |
GH¢ {{ number_format($cost_sheet->milk_cost + $cost_sheet->soda_cost, 2) }} |
@endif
LABOUR SERVICE CHARGE (i): |
GH¢ {{ number_format($cost_sheet->labour_services_charge, 2) }} |
NHIL (ii): |
GH¢ {{ number_format($cost_sheet->nhil_levy, 2) }} |
GETFund Levy (iii): |
GH¢ {{ number_format($cost_sheet->getfund_levy, 2) }} |
COVID-19 Levy (iv): |
GH¢ {{ number_format($cost_sheet->covid_levy, 2) }} |
(v) TOTAL LEVIES (i+ii+iii+iv): |
GH¢ {{ number_format($cost_sheet->total_levy, 2) }} |
(vi) VAT(15% * v): |
GH¢ {{ number_format($cost_sheet->vat, 2) }} |
TOTAL TAX INCLUSIVE VALUE (v+vi): |
GH¢ {{ number_format($cost_sheet->vat_and_levies, 2) }} |
@php
use App\User;
$amt_chargeable = $cost_sheet->total_gang_wages + $cost_sheet->nhil_levy + $cost_sheet->getfund_levy + $cost_sheet->covid_levy + $cost_sheet->vat;
if ($cost_sheet->milk_cost == 0 && $cost_sheet->soda_cost == 0) {
$stc_figure = $amt_chargeable;
} else {
$stc_figure = $amt_chargeable + ($cost_sheet->milk_cost + $cost_sheet->soda_cost);
}
@endphp
TOTAL COST: |
GH¢ {{ number_format($stc_figure, 2) }} |
|
|
Prepared By: |
{{ strtoupper(User::find($cost_sheet->wpo_arrival_user)?->username) }} |
Verified By: |
{{ strtoupper(User::find($cost_sheet->wpo_arrival_supervisor)?->username) }} |
Vetted By: |
{{ strtoupper(User::find($cost_sheet->toc_audit_user)?->username) }} |
Validated By: |
{{ strtoupper(User::find($cost_sheet->toc_audit_supervisor)?->username) }} |
Certified By: |
{{ strtoupper(User::find($cost_sheet->toc_audit_authorizer)?->username) }} |