@extends('layouts.app') @section('title', 'Diagnoses') @section('content')

Diagnoses

Create
@foreach ($diagnoses as $d) @endforeach
# Diagnosed at Patient Doctor ICD
{{ $d->id }} {{ $d->diagnosed_at }} {{ $d->patient->user->name ?? '-' }} {{ $d->doctor->user->name ?? '-' }} {{ $d->icdCode->code ?? '' }} - {{ $d->icdCode->title ?? '' }} Open
{{ $diagnoses->links() }}
@endsection