Hello, {{ $invoice->patient->first_name .' '.$invoice->patient->last_name }}
|
Doctor Details: |
Invoice Date&Time: |
Name: {{ @$invoice->doctor->user->first_name .' '. @$invoice->doctor->user->last_name}} |
{{ $invoice->created_at }} |
Contact: {{ @$invoice->doctor->user->mobile }} |
Appointment Date&Time: |
Email: {{ @$invoice->doctor->user->email }} |
{{ $invoice->appointment->appointment_date}} |
|
{{ $invoice->appointment->timeSlot->from .' to '.$invoice->appointment->timeSlot->to }} |
|
Bellow you can find your invoice
|
Title
|
Amount
|
@php
$discount_amount = 0;
@endphp
@if($invoice->invoice_detail)
@php
$sub_total = 0;
@endphp
@foreach ($invoice->invoice_detail as $key=> $item)
{{$key+1 }}.
{{ $item->title }}
|
${{ $item->amount }}
|
@endforeach
@php
$sub_total += $item->amount;
@endphp
@endif
{{ __("Sub Total") }}
|
${{ $item->amount }}
|
{{ __("Tax (5%)") }}
|
${{ ($sub_total * 5) / 100 }}
|
Total
|
${{ $sub_total + ($sub_total * 5) / 100 }}
|
|
Payment Method: {{ $invoice->payment_mode }}
|
Payment Status: {{ $invoice->payment_status }}
|
@if ($invoice->transaction != Null)
Order Id: {{ $invoice->transaction->order_id }}
Transaction No: {{ $invoice->transaction->transaction_no }}
Payment Method: {{ $invoice->transaction->payment_method }}
|
@endif
Thank you
|
{{ AppSetting('title'); }} Support Team
|
@php echo Config::get('app.footer_copy_rights') @endphp
|