@extends('layouts.app') @section('title', 'BWSI') @section('body')

Customer Mother Account

@if($cust->cust_fname)

{{ strtoupper($cust->cust_fname) }}

@else

{{ strtoupper($cust->cust_bname) }} {!! $cust->contact_person ? "CP: " . strtoupper($cust->contact_person) : "" !!}

@endif

{{ $cust->cust_fname ? $cust->birthday : 'N/A' }}

{{ $cust->landline_number ? $cust->landline_number : '-' }}

{{ $cust->mobile_number ? $cust->mobile_number : '-' }}

{{ strtoupper($cust->address) }}

{{ $cust->email_address ? $cust->email_address : '-' }}

@foreach($accts as $ac) @endforeach
Account No. Class Service Address Book Sequence Meter No. Status
{{ $ac->acct_class }} - {{ $ac->acct_subclass }} {{ strtoupper($ac->address) }} {{ $ac->book_code }} ({{ $ac->book_desc }}) {{ $ac->sequence }} {{ $ac->meter_no }}
@endsection @section('scripts') @endsection