@extends('layout.master') @section('content')

Patient Dashboard

Logout

Medical Reports

@if($reports->isEmpty()) @else
@foreach($reports as $report) @endforeach
Patient Phone Age Report Date Actions
{{ $report->user->name }} {{ $report->phone_number }} {{ $report->age }} {{ $report->created_at->format('M d, Y h:i A') }} View
@endif
@endsection