@extends('layouts.app') @section('title', 'Daily Visits Report') @section('content')
Total Visits
{{ $visits->count() }}
| Time | Visit # | Patient | Type | Doctor | Dept | Status |
|---|---|---|---|---|---|---|
| {{ $v->check_in_at ? $v->check_in_at->format('H:i') : '-' }} | {{ $v->visit_number }} | {{ $v->patient->full_name ?? '' }} | {{ $v->visit_type }} | {{ $v->clinician->name ?? '-' }} | {{ $v->department->name ?? '-' }} | {{ ucfirst($v->status) }} |