@extends('layouts.app') @section('header')
| Billing Id | Patient Name | Admission Code | Bill Total | Advance Payment | Discount | Tax | Grand total | Payment | Balance | Due | Mode | Type | Created At | Action | |||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $bill->billnumber }} | @if(empty($bill->patient_name)){{ $bill->patient->firstname.' '.$bill->patient->lastname }} | {{ $bill->admission->admission_code }} | @else{{ $bill->patient_name }} | @endif | {{ $bill->billing_total }} | {{ $bill->advance_payment }} | {{ $bill->discount_amount }} | {{ $bill->tax_amount }} | {{ $bill->grand_total }} | {{ $bill->payment }} | {{ $bill->balance_to_pay }} | {{ $bill->closing_due }} | {{ \FormHelper::getPaymentText($bill->mode) }} | @if($bill->type == 1)In-Patient | @elseOut-Patient | @endif{{ $bill->created_at->format('d-m-Y') }} | Show edit Delete |