@include('includes/header_start') @include('billers/elements/header_end')
{{--

Order # 12345

--}}
{{-- logo--}} logo

Total: {{ "$".$bill->amount_billed }}


Payee Details:
{{ $bill->payee_name }}
{{ $bill->payee_address1 }}
{{ $bill->payee_city }}
{{ $bill->payee_state }}
{{ $bill->payee_zipcode }}
{{ $bill->payee_tel }}
Payment Method:
Bank Account Name
{{ $bill->bank_account_name }}
Bank Account Number
{{ $bill->bank_account_number }}
Bill Created:
{{ date('jS M Y', strtotime($bill->created_at)) }}

Bill Items

@if($bill->items !== NULL) @foreach($billItems as $item) @foreach($item->codes as $code) @endforeach @endforeach @else you have no outstanding bills @endif
{{ $code->category }}

Category

{{ $code->cpt_code }}

Code

{{ $code->cpt_description }}

Description

Physician Comments

Form Physician Comments
General Comments {!! $bill->general['physician_comments'] !!}
Cardiac Comments {!! $bill->cardiac['physician_comments'] !!}
Endocrine Comments {!! $bill->endocrine['physician_comments'] !!}
Gastrointestinal Comments {!! $bill->gastrointestinal['physician_comments'] !!}
Miscellaneous Comments {!! $bill->misc['physician_comments'] !!}
Neurological Comments {!! $bill->neurological['physician_comments'] !!}
Pulmonary Comments {!! $bill->pulmonary['physician_comments'] !!}
Renal Comments {!! $bill->renal['physician_comments'] !!}
Total

{{ "$".$bill->amount_billed }}

@include('includes/footer_start') @include('includes/footer_end')