@extends('layouts.app') @section('header')
@endsection @section('content')
@if(!empty($bills)) @foreach($bills as $bill) @if(empty($bill->patient_name)) @else @endif @if($bill->type == 1) @else @endif @endforeach @endif
Billing Id Patient Name Admission Code Bill Total Advance Payment Discount Tax Grand total Payment Balance Due Mode Type Created At Action
{{ $bill->billnumber }}{{ $bill->patient->firstname.' '.$bill->patient->lastname }} {{ $bill->admission->admission_code }}{{ $bill->patient_name }} {{ $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) }}In-PatientOut-Patient{{ $bill->created_at->format('d-m-Y') }} Show edit Delete
@endsection @section('scripts') @include('layouts.datatables', ['id' => 'dt-bill']) @endsection