@extends('layouts.app') @section('title', 'Consultations') @section('content')
| Patient | Visit # | Type | Status | Actions |
|---|---|---|---|---|
| {{ $v->patient->full_name ?? 'N/A' }} | {{ $v->visit_number }} | {{ $v->visit_type }} | {{ ucfirst(str_replace('_',' ',$v->status)) }} | {{ $v->consultation ? 'Continue' : 'Start' }} |
| No patients. | ||||