|
{{ $company->CompanyName ?? 'Company Name' }}
{{ $company->Address1 ?? 'Address Line 1' }}
@if(!empty($company->Address2))
{{ $company->Address2 }}
@endif
P.O. Box {{ $company->PostalCode ?? '00000' }} {{ $company->City ?? 'Nairobi' }}, {{ $company->Country ?? 'Kenya' }}
@if(!empty($company->Phone)) Tel: {{ $company->Phone }} @endif
@if(!empty($company->Phone) && !empty($company->Email)), @endif
@if(!empty($company->Email)) Email: {{ $company->Email }} @endif
@if(!empty($company->VATNo))
VAT No: {{ $company->VATNo }}
@endif
THE WATERMARK BUSINESS PARK
|
@php
$logoPath = !empty($company->CompanyLogo)
? public_path('logo/' . $company->CompanyLogo)
: public_path('images/watermarklogo.png');
$logoExists = file_exists($logoPath);
@endphp
@if($logoExists)
@if(!empty($company->CompanyLogo))
Logo not found: {{ 'logo/' . $company->CompanyLogo }}
@else
Default logo not found at: public/images/watermarklogo.png
@endif
@endif
|
| Period | Bill Date | Previous Reading | Current Reading | Consumption (m³) | Balance B/F | Payments | Bill Amount | Balance C/F |
|---|---|---|---|---|---|---|---|---|
| {{ $line['period'] }} | {{ \Carbon\Carbon::parse($line['bill_date'])->format('d-M-Y') }} | {{ $line['prev_reading'] }} | {{ $line['curr_reading']}} | {{ $line['consumption']}} | {{ $line['balance_bf'] }} | {{ $line['payments'] }} | {{ $line['bill_amount'] }} | {{ $line['balance_cf'] }} |
| No statement data available | ||||||||