{{ $info['cliniccenter']['address'] ?? '--' }}
{{ $info['cliniccenter']['email'] ?? '--' }}
{{ __('messages.payment_status') }} @if($info['appointmenttransaction']['payment_status'] == 1) {{ __('messages.paid') }} @else {{ __('messages.unpaid') }} @endif
{{ __('messages.patient_name') }} | {{ __('messages.patient_gender') }} | {{ __('messages.patient_dob') }} | |
---|---|---|---|
{{ $info['user']['first_name'] .''.$info['user']['last_name'] ?? '--' }} | {{ $info['user']['gender'] ?? '--' }} | @if($info['user']['date_of_birth'] !== null){{ date($dateformate, strtotime($info['user']['date_of_birth'])) ?? '--' }} | @else- | @endif
{{ __('messages.sr_no') }} | {{ __('messages.item_name') }} | {{ __('messages.price') }} | {{ __('service.inclusive_tax') }} | {{ __('messages.total') }} | ||
---|---|---|---|---|---|---|
{{ $index }} | @if($billingItem['discount_value'] != 0) @if ($billingItem['discount_type'] === 'percentage'){{ $billingItem['clinicservice']['name'] ?? '--' }} ({{ $billingItem['discount_value'] ?? '--' }}%) | @else{{ $billingItem['clinicservice']['name'] ?? '--' }} ({{ Currency::format($billingItem['discount_value']) ?? '--' }}) | @endif @else{{ $billingItem['clinicservice']['name'] ?? '--' }} | @endif{{ Currency::format($billingItem['service_amount']) ?? '--' }} | {{ Currency::format($billingItem['inclusive_tax_amount']) ?? '--' }} | {{ Currency::format($billingItem['total_amount']) ?? '--' }} |
{{ __('messages.no_record_found') }} |
{{ __('messages.sr_no') }} | {{ __('messages.tax_name') }} |
{{ __('messages.charges') }}
|
|||||
---|---|---|---|---|---|---|---|
{{ $index }} | @if($taxPercentage['type'] == 'fixed') {{ $taxTitle }} ({{ Currency::format($taxPercentage['value']) ?? '--' }}) @else {{ $taxTitle }} ({{ $taxPercentage['value'] ?? '--' }}%) @endif | @if($taxPercentage['type'] == 'fixed') @php $totalTax += $taxPercentage['value']; @endphp {{ Currency::format($taxPercentage['value']) ?? '--' }} @else @php $tax_amount = $sub_total * $taxPercentage['value'] / 100; $totalTax += $tax_amount; @endphp {{ Currency::format($tax_amount) ?? '--' }} @endif |
{{ __('messages.charges') }}
|
|||||||
---|---|---|---|---|---|---|---|
{{ __('messages.total') }} | {{ Currency::format($service_total_amount) }} | ||||||
{{ __('messages.discount') }} ( @if($transaction['final_discount_type'] === 'percentage') {{ $transaction['final_discount_value'] ?? '--' }}% @else {{ Currency::format($transaction['final_discount_value']) ?? '--' }} @endif ) | {{ Currency::format($discount_amount) ?? '--' }} | ||||||
{{ __('messages.sub_total') }} | {{ Currency::format($sub_total) }} | ||||||
{{ __('messages.total_tax') }} | {{ Currency::format($totalTax) }} | ||||||
{{ __('messages.grand_total') }} | {{ Currency::format($amount_due) ?? '--' }} | ||||||
{{ __('service.advance_payment_amount') }}({{ $info['advance_payment_amount'] }}%) | {{ Currency::format($info['advance_paid_amount']) ?? '--' }} | ||||||
{{ __('service.remaining_amount') }} {{ __('messages.paid') }} | {{ Currency::format($remaining_payable_amount) }} |