{{ Form::label('patient_id', __('messages.patients') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $patientDiagnosisTest->patient->patientUser->full_name }}
{{ Form::label('doctor_id', __('messages.doctors') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $patientDiagnosisTest->doctor->doctorUser->full_name }}
{{ Form::label('category_id', __('messages.diagnosis_category.diagnosis_categories') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $patientDiagnosisTest->category->name }}
{{ Form::label('report_number', __('messages.patient_diagnosis_test.report_number') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $patientDiagnosisTest->report_number }}
@if (isset($patientDiagnosisTests)) @foreach ($patientDiagnosisTests as $patientDiagnosisTest)
{{ Form::label($patientDiagnosisTest->property_name, str_replace('_', ' ', Str::title($patientDiagnosisTest->property_name)) . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ !empty($patientDiagnosisTest->property_value) ? $patientDiagnosisTest->property_value : __('messages.common.n/a') }}
@endforeach @endif
{{ Form::label('created_at', __('messages.common.created_on') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $patientDiagnosisTest->created_at->diffForHumans() }}
{{ Form::label('updated_at', __('messages.common.last_updated') . ':', ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $patientDiagnosisTest->updated_at->diffForHumans() }}