@extends('lawyer.master_layout')
@section('title')
{{ __('Consultation') }}
@endsection
@section('admin-content')
{{-- Breadcrumb --}}
| {{ __('Name') }} |
{{ ucwords($appointment?->user?->name) }} |
| {{ __('Email') }} |
{{ $appointment?->user?->email }} |
| {{ __('Age') }} |
{{ $appointment?->user?->details?->age }} |
| {{ __('Gender') }} |
{{ $appointment?->user?->details?->gender }} |
| {{ __('Old Appointment History') }} |
{{ __('History Here') }}
|
@if ($appointment?->user?->disabilities)
| {{ __('Disabilities') }} |
{{ $appointment?->user?->disabilities }} |
@endif
| {{ __('Date') }} |
{{ formattedDate($appointment?->date) }} |
| {{ __('Schedule') }} |
{{ strtoupper($appointment?->schedule?->start_time) . '-' . strtoupper($appointment?->schedule?->end_time) }}
|
| {{ __('Fee') }} |
{{ specific_currency_with_icon($appointment?->payable_currency, $appointment->appointment_fee) }}
|
| {{ __('Consulted') }} |
@if ($appointment?->already_treated == 1)
{{ __('Yes') }}
@else
{{ __('No') }}
@endif
|
@endsection