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

View all bills

You are able to add and manage patients through this page.

@foreach($bills as $bill) @endforeach
Patient Name Status Total Amount Amount Due Created Updated
{{ $bill->patient['first_name'] }} {{ $bill->patient['last_name'] }} @if($bill->status === 'AMOUNT DUE') Incomplete @elseif($bill->status === 'OUTSTANDING') Outstanding @elseif($bill->status === 'INVOICE SENT') Invoice Sent @elseif($bill->status === 'PAID') Paid @endif ${{ $bill->amount_billed }} ${{ $bill->balance_due }} {{ date('m/d/Y', strtotime($bill->created_at)) }} {{ $bill->updated_at->diffForHumans() }}

CPT Codes

Manage your CPT codes from here

@foreach($cptCodes as $code) @endforeach
Category CPT Code Description Updated Action
{{ ucfirst($code->category) }} {{ $code->cpt_code }} {{ $code->cpt_description }} {{ $code->updated_at->diffForHumans() }}
@include('includes/footer_start') {{-- --}} @include('includes/footer_end')