View all bills

You are able to view all bills through this table.

@foreach($bills as $bill) @endforeach
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() }}