You are able to view all bills through this table.
Patient Name | Status | Created | Updated |
---|---|---|---|
Bill ID: {{ $bill->id }} | {{-- @isset($patient->billing->status)--}} @if($bill->status === 'AMOUNT DUE') Incomplete @elseif($bill->status === 'OUTSTANDING') Outstanding @elseif($bill->status === 'INVOICE SENT') Invoice Sent @elseif($bill->status === 'PAID') Paid @endif {{-- @endisset--}} | {{ date('m/d/Y', strtotime($bill->created_at)) }} | {{ $bill->updated_at->diffForHumans() }} |