Powered by M@jics - a SULIS Product | +254 20 387 2607 | sulis@sulis.co.ke
{{ $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) Company Logo @else
@if(!empty($company->CompanyLogo)) Logo not found: {{ 'logo/' . $company->CompanyLogo }} @else Default logo not found at: public/images/watermarklogo.png @endif
@endif
Customer Statement as at {{ strtoupper($statementDate) }}   | Account No: {{ $customer->AccountNo }}   | Name: {{ $customer->CustomerName }}   | @if(isset($customer->meter)) Meter No: {{ $customer->meter->MeterNo }}   | @endif Unit No: {{ $customer->unit->UnitIdentity ?? 'N/A' }}
@forelse($statementLines as $line) @empty @endforelse {{-- Current Balance row removed as requested --}}
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