{{ Form::label('patient_id', __('messages.patient_diagnosis_test.patient').':', ['class' => 'pb-2 fs-5 text-gray-600']) }}
{{$patientDiagnosisTest->patient->user->full_name}}
{{ Form::label('doctor_id', __('messages.patient_diagnosis_test.doctor').':', ['class' => 'pb-2 fs-5 text-gray-600']) }}
{{$patientDiagnosisTest->doctor->user->full_name}}
{{ Form::label('category_id',__('messages.patient_diagnosis_test.diagnosis_category').':', ['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:'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() }}