@extends('backend.layouts.app') @section('content')
Awards
@foreach ($appointments as $appointment) @endforeach
ID Patient Doctor Test Appointment Time Appointment Date Payment Status Status Note Test Type Test Result
{{ $appointment->id }} {{ $appointment->patient->first_name }} {{ $appointment->patient->middle_initial }}. {{ $appointment->patient->last_name }} Dr. {{ $appointment->doctor->name }} {{ $appointment->test_names }} {{ $appointment->appointment_time }} {{ $appointment->appointment_date }} {{ $appointment->payment_status }} {{ $appointment->status }} {{ $appointment->note }} {{ $appointment->test_type }} {!! $appointment->test_result !!} @if ($appointment->file_path_document || $appointment->file_path_selfie) @else No Image Uploaded @endif
@endsection @section('js') @endsection