Outstanding Bills

@if($bills !== NULL) @foreach($bills as $bill) @if($bill->physician_id !== NULL) @elseif($bill->surgeon_id !== NULL) @endif @endforeach @else you have no outstanding bills @endif
{{ $bill->patient['first_name'] }} {{ $bill->patient['last_name'] }}

Patient Name

{{ $bill->physician['first_name'] }} {{ $bill->physician['last_name'] }}

Anesthesiologist Name

{{ $bill->surgeon['first_name'] }} {{ $bill->surgeon['last_name'] }}

Surgeon Name

@if($bill->status === 'INCOMPLETE' || $bill->status === 'AMOUNT DUE') {{ $bill->status }} @elseif($bill->status === 'OUTSTANDING') {{ $bill->status }} @elseif($bill->status === 'INVOICE SENT') {{ $bill->status }} @elseif($bill->status === 'PAID') {{ $bill->status }} @endif ${{ $bill->amount_billed }}

Total Amount

{{ $bill->created_at->format('m/d/Y') }}

Date Billed