{{ $session?->consultant?->name }} @include('components.breadCrumb.show',['path' => route('sessions.index'),'section' => __('Consultations'),'title' => __('Consultation order No. ').$session->id])

{{-- --}}
{{ __("Customer") }} {{ $session?->customer?->name }}
{{ __("Consultant") }} {{ $session?->consultant?->name }}
{{ __("Status") }}
{{ __($session->status) }}
{{ __("Date") }} {{ $session->datetime?->format('Y-m-d h:i A') }}
{{ __("Started at") }} {{ $session->started_at?->format('Y-m-d h:i A') }}
{{ __("Finished at") }} {{ $session->finished_at?->format('Y-m-d h:i A') }}
{{ __("Price per consultation") }} {{ $session?->price_per_consultation }}
{{ __("Duration") }} {{ $session?->duration }}
{{ __("Total") }} {{ $session?->total }}
{{ __("Payment status") }}
{{ __($session->payment_status) }}
{{ __("Customer feedback") }} {{ $session?->customer_feedback }}
{{ __("Meeting link") }} {{ $session?->meeting_link }}
{{ __("Consultant notes") }} {{ $session?->consultant_notes }}
{{ __("Customer rate(out of 5)") }} {{ $session?->rate }}
{{ __("Reject reason") }} {{ $session?->reject_reason }}
{{ __("Created at") }} {{ $session->created_at?->format('Y-m-d h:i A') }}
{{ __('Action') }}
@csrf @method('DELETE')