@extends('layouts.app') @section('header')
@endsection @section('content') @php $address = []; @endphp
{!! \FormHelper::getAddress($address) !!}
GSTIN: {{ \Config::get('formdata.gst') }}
Billing Information
Billing Date: {{ date('d-m-Y', strtotime($bill['billdate'])) }}
Billing Id:      {{ $bill['billnumber'] }}
Patient Information :
Name: {{ $admission['patient_name'] }}
Code: {{ $admission['patient_code'] }}
Admission Code: {{ $admission['admission_code'] }}
Address: {{ $admission['patient_address'] }}
Payment Mode :{{ \FormHelper::getPaymentText($bill['mode']) }}
@foreach($billingList as $list) @endforeach
Service Name Quantity Rate Sub Total
{{ $list['service_name'] }} {{ $list['billing_quantity'] }} {{ $list['billing_rate'] }} {{ $list['sub_total'] }}
Tax Summary
Taxable Amount IGST CGST SGST Kerala Flood cess @1%
{{ number_format($bill['grand_total'] - $bill['tax_amount'],2) }} 0.0 {{ number_format($bill['tax_amount']/2,2) }} {{ number_format($bill['tax_amount']/2,2) }} 0.0
Bill total : {{ $bill['billing_total'] }}
Advance Payment : {{ $bill['advance_payment'] }}
Discount ( {{ $bill['discount_percent'] }}% ) : {{ $bill['discount_amount'] }}
Tax ( {{ $bill['tax_percent'] }}% ) : {{ $bill['tax_amount'] }}
Kerala Flood cess @1% 0.0
Rounded Off Amount : {{ $bill['round_off_amount'] }}

Payable Amount :

{{ $bill['grand_total'] }}
@if(!empty($advancePayment))
Advance Payment Information
@foreach($advancePayment as $payment) @endforeach
Receipt No. Amount Received On
{{ $payment->receipt }} {{ $payment->amount }} {{ date('d-m-Y h:i:s', strtotime($payment->created_at)) }}
@endif
Terms And Condition :

{{ \Config::get('formdata.billing_tc') }}

@endsection @section('scripts') @endsection