{{ Form::label('case_id', __('messages.case.case_id') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $patientCase->case_id }}
{{ Form::label('patient_name', __('messages.case.patient') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $patientCase->patient->patientUser->full_name }}
{{ Form::label('phone', __('messages.case.phone') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ !empty($patientCase->phone) ? $patientCase->phone : __('messages.common.n/a') }}
{{ Form::label('doctor_name', __('messages.case.doctor') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $patientCase->doctor->doctorUser->full_name }}
{{ Form::label('date', __('messages.case.case_date') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ \Carbon\Carbon::parse($patientCase->date)->format('jS M,Y g:i A') }}
{{ Form::label('status', __('messages.common.status') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }}

{{ $patientCase->status === 1 ? __('messages.common.active') : __('messages.common.de_active') }}

{{ Form::label('fee', __('messages.case.fee') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ checkNumberFormat($patientCase->fee, strtoupper(getCurrentCurrency())) }} {{-- {{ getCurrencySymbol() }} {{ number_format($patientCase->fee,2) }} --}}
{{ Form::label('created_at', __('messages.common.created_on') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $patientCase->created_at->diffForHumans() }}
{{ Form::label('updated_at', __('messages.common.last_updated') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $patientCase->updated_at->diffForHumans() }}
{{ Form::label('description', __('messages.case.description') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {!! !empty($patientCase->description) ? nl2br(e($patientCase->description)) : __('messages.common.n/a') !!}