@extends('layouts.app') @section('title','IPD Billings') @section('pages')
@csrf
Billing Details
{{--

--}}
Patient

{!! $patients['name'] ?? '' !!}

{!! isset($patients['gender']) && $patients['gender'] != '' ? ' ' . $patients['gender'] : '' !!}{!! isset($patients['date_of_birth']) && $patients['date_of_birth'] != '' ? ', ' . age($patients['date_of_birth']) . ' Years' : '' !!}

{!! isset($patients['phone_no']) && $patients['phone_no'] != '' ? ' ' . $patients['phone_no'] : '' !!}

Doctor
@if(!empty($doctors))

{!! $doctors['name'] ?? '' !!}

{!! isset($doctors['phone_no']) && $doctors['phone_no'] != '' ? ' ' . $doctors['phone_no'] : '' !!}

{!! isset($doctors['gender']) && $doctors['gender'] != '' ? ' ' . $doctors['gender'] : '' !!}{!! isset($doctors['date_of_birth']) && $doctors['date_of_birth'] != '' ? ', ' . $doctors['date_of_birth'] : '' !!}

@else

Self

@endif
{{--
--}}
{{--
@if(isset($accounting_group) && count($accounting_group) > 0) @foreach($accounting_group as $key => $list) @endforeach @else @endif @if($discount_group) @endif @if($round_off) @endif
Transaction Mode Transaction Reference Amount
{{$list->name ?? ''}}
No Data Found
{{$discount_group->name ?? ''}}
{{$round_off->name ?? ''}}
--}} {{--
--}} {{--
--}}
Additional Details

{{--
Transactions
--}}
@endsection @section('js') @endsection