Patient Test Report
Patient Name:
{{ $tests->first()->patient->patient_name }}
Age:
{{ $tests->first()->patient->age }}
Phone:
{{ $tests->first()->patient->phone }}
Visit ID:
{{ $visitId }}
Test Name
Price
Discount
Total
@foreach ($tests as $test)
{{ $test->healthTest->test_name }}
₹{{ $test->price }}
₹{{ $test->discount }}
₹{{ $test->price - $test->discount }}
@endforeach