@extends('layouts.client.layout') @section('title') {{ __('Appointment History') }} @endsection @section('client-content')
@include('client.profile.sidebar')
{{ $contactInfo?->address }}
{{ $setting?->prescription_phone }}

{{ $appointment?->lawyer?->name }}

{{ $appointment?->lawyer?->designations }}

{{ __('Client Name') }}: {{ $appointment?->user?->name }} {{ __('Age') }}: {{ $appointment?->user?->details?->age }} {{ __('Years') }} {{ __('Date') }}: {{ formattedDate($appointment?->date) }}

{{ __('Subject') }}: {{ $appointment?->subject }}

{!! clean($appointment?->description) !!}

@if (count($appointment?->documents))

{{ __('Important Documents') }}

    @foreach ($appointment?->documents as $document)
  1. {{ $document?->path }}
  2. @endforeach
@endif
@endsection @push('css') @endpush