@extends('layouts.app') @section('title', 'ANC Clients') @section('content') {{-- Top Actions --}}
{{-- Filter pills --}}| Patient | MRN | Phone | GA | EDD | Days | Risk | Visits | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $r->patient->full_name ?? '' }} | {{ $r->patient->mrn ?? '' }} | {{ $r->patient->phone ?? '' }} | {{ $r->gestational_age ?? '-' }}wks | {{ $r->edd?->format('d M Y') ?? '-' }} | {{ $r->edd ? ($r->edd->isPast() ? (int) abs($r->edd->diffInDays(now())).' overdue' : (int) $r->edd->diffInDays(now()).' days') : '-' }} | {{ ucfirst($r->risk_status ?? 'normal') }} | {{ $r->visits_count ?? 0 }} | View |
| No results. | ||||||||