@extends('layouts.app') @section('title','Lab Billings') @section('pages')
Patient

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

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

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

Doctor

{!! $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'] : '' !!}

@if(!empty($refferal_lab))
Center

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

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

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

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

@endif @if(!empty($collection_agent))
Agent

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

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

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

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

@endif
@csrf
Billing Details

Additional Options

@foreach($special_cases as $key => $value)
id ? 'checked' : '' !!}>
@endforeach
@endsection @section('js') @endsection