@include('includes/header_start') @include('patients/elements/header_end')

@if($bill->physician !== NULL) {{ $bill->physician['first_name'] }} {{ $bill->physician['last_name'] }} @else {{ $bill->surgeon['first_name'] }} {{ $bill->surgeon['last_name'] }} @endif

{{-- Card image cap--}}

@if($bill->status == 'AMOUNT DUE') This bill still has funds outstanding @elseif($bill->status == 'PARTIAL PAYMENT') This bill has been partially paid @elseif($bill->status == 'FULLY PAID') This bill is now fully paid @endif

  • Outstanding: {{ "$".$bill->amount_billed }}
  • Bank Account Name:
    {{ $bill->bank_account_name }}
  • Bank Account Number:
    {{ $bill->bank_account_number }}
  • Created: {{ date('m/d/Y', strtotime($bill->created_at)) }}
  • Updated: {{ $bill->updated_at->diffForHumans() }}

Complete Details

{{-- Card image cap--}}
@include('patients.billing.elements.form')
@if($bill->physician !== NULL) {{ $bill->physician['first_name'] }} {{ $bill->physician['last_name'] }} @else {{ $bill->surgeon['first_name'] }} {{ $bill->surgeon['last_name'] }} @endif {{ $bill->call['call_description'] }}
@include('includes/footer_start') @include('includes/footer_end')