@extends('front.inner-layout.app') @section('content')

My Invoice

@include('front.inner-layout.header')

{{ ucwords( $invoice->clientD['name']. ' ' .$invoice->clientD['last_name'] ) }} {{ $invoice->clientD['address'] }} {{ $invoice->clientD['address2'] }} {{ $invoice->clientD['suburb_state_postcode'] }} {{ $invoice->clientD['country'] }}

{{ $invoice->clientD['phone'] }}

@if(isset($cc) && $cc->expiry_date)

Conssesion card holder expiry {{ \Carbon\Carbon::parse($cc->expiry_date)->format('d/m/y')}}

@endif @if($display == 1 && isset($phf) && isset($chf))

{{$phf->healthcodes->name ?? ""}} : {{$phf->provider_number ?? ""}}

@endif @if(isset($claim_details) && $claim_details->bill_to == 1 && $claim_details->display_claim_details == 1) @if($claim_details->claim_number !='')

{{$claim_details->claim_number}}

@endif
@endif
Invoice number
Date
Location
@if(sizeof($Locations) == 1) @foreach($Locations as $location) @endforeach @else @foreach($Locations as $location) @if($invoice->location == $location->id) @endif @endforeach @endif
@if(count($providerNumber) >=1)
Provider Number
@endif

@if($item) @foreach($item as $tid) @endforeach @endif @if($product) @foreach($product as $prod) @endforeach @endif
Item Code Cost Qty Total
{{ $tid->appointment_type->code }} {{ number_format($tid->app_cost ,2) }} {{$tid->item_qty ?? '-'}} {{ number_format($tid->app_cost,2) }}
{{$prod->product_iteams->product_code}} {{number_format($prod->product_cost,2)}} {{$prod->deduct_quantity}} {{number_format(($prod->deduct_quantity * $prod->product_cost) , 2)}}
Add a Service Add a Product

Total

Credit applied

Online payment


Current balance

Process Payment


Save
@endsection @section('css') @endsection @section('js') @endsection