Application No.
{{ $data->application_number }}
Customer Name
{{ $data->acct_bname ? strtoupper($data->acct_bname) : strtoupper($data->acct_fname) }}
Address
{{ strtoupper($data->complete_address) }}
Connection Type
{{ strtoupper($data->connection_type) }}
Job Order No.
{{ $data->jo_number }}
Account Class
{{ $data->acct_class }} - {{ $data->acct_subclass }}
GDeposit
{{ number_format($data->gdeposit,2,".",",") }}
Materials
{{ number_format($data->materials,2,".",",") }}
Services
{{ number_format($data->services,2,".",",") }}
Total Amount
{{ number_format($data->gdeposit + $data->materials + $data->services,2,".",",") }}
BILL OF MATERIALS @foreach($materials AS $m) @endforeach
Item Description UoM Unit Price Qty Total Price
{{ strtoupper($m['material_description']) }} {{ strtoupper($m['material_uom']) }} {{ number_format($m['unit_price'],2,".",",") }} {{ $m['quantity'] }} {{ number_format($m['total_price'],2,".",",") }}
SERVICES @foreach($services AS $s) @endforeach
Service Description Amount
{{ strtoupper($s['service_description']) }} {{ number_format($s['amount'],2,".",",") }}