@extends('backend.layouts.app') @section('title') {{ __($module_title) }} @endsection @section('content')

{{ __('appointment.encounter_detail') }}

{{ __('appointment.about_clinic') }}

  • avatar
    {{ optional($data->clinic)->name ?? '--' }}

    {{ optional($data->clinic)->email ?? '--' }}

    Dr. {{ optional($data->doctor)->full_name ?? '--' }}
    {{ $data->description }}
  • {{ __('appointment.about_patient') }}

    avatar
    {{ optional($data->user)->full_name ?? default_user_name() }}

    {{ optional($data->user)->email ?? '--' }}

    {{ __('appointment.encounter_date') }}:

    {{ formatDate($data->encounter_date) ?? '--' }}

    {{ __('appointment.address') }}:

    {{ $data->user->address ?? '' }} {{ $data->user->cities->name ?? '' }} {{ $data->user->countries->name ?? '' }} {{ $data->user->pincode ?? '' }}
  • {{ __('appointment.status') }}:

    @if ($data->status == 1) {{ __('appointment.open') }} @else {{ __('appointment.close') }} @endif
@if ($data['status'] == 1)
{{ __('appointment.select_encounter_templates') }}
@endif

{{ __('appointment.other_detail') }}

@include('appointment::backend.patient_encounter.component.prescription', ['data' => $data]) @include('appointment::backend.patient_encounter.component.medical_report', ['data' => $data]) @include('appointment::backend.patient_encounter.component.billing_details', ['data' => $data])
@endsection @push('after-scripts') @endpush