InfyCare

Doctor Name: {{ $datas->doctor->user->full_name }}
Doctor Email: {{ $datas->doctor->user->email }}
Services: {{ $datas->services->name }}
Patient Name: {{ $datas->patient->user->full_name }}
Patient Email: {{ $datas->patient->user->email }}
Payment Method: {{ \App\Models\Appointment::PAYMENT_METHOD[$datas->payment_method] }}
Payment Status: {{ \App\Models\Appointment::PAYMENT_TYPE[$datas->payment_type] }}
Appointment Date:
{{\Carbon\Carbon::parse($datas->date)->isoFormat('MMM DD, YYYY')}}
Appointment Time:
{{ $datas->from_time }} {{ $datas->from_time_type }} To {{ $datas->to_time }} {{ $datas->to_time_type }}

Invoice Amount In Words

{{ getAmountToWord($datas->payable_amount) }}

Amount:
Charge: {{ getCurrencyIcon() . $datas->services->charges }}
Extra Charge: {{ getCurrencyIcon() . $datas->payable_amount - $datas->services->charges }}
Payable Amount: {{ getCurrencyFormat(getCurrencyCode(), $datas->payable_amount) }}
@if ($datas->description)

Description:

{!! nl2br($datas->description) !!}

@endif