Appointment
Session Data:
- Selected Doctor ID : {{ session('doctor_id') }}
- Doctor Name: {{ session('doctor_name') }}
- Doctor Position: {{ session('doctor_position') }}
- Test Names: {{ session('selected_test_names') }}
- Test Type: {{ session('test_type') }}
- Test Price:
@foreach (session('selected_test_price') as $testId => $testPrice)
Test ID: {{ $testId }} - Price: {{ $testPrice }}
@endforeach
Doctor Profile
Name: {{ $doctor->name }}
Specialization: {{ $doctor->position }}
@elseNo doctor profile available to display. Please select a doctor to proceed.
@endif