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

Prescriptions

Create
@foreach ($prescriptions as $p) @endforeach
# Issued Patient Doctor Status
{{ $p->id }} {{ $p->issued_at }} {{ $p->patient->user->name ?? '-' }} {{ $p->doctor->user->name ?? '-' }} {{ $p->status }} Open
{{ $prescriptions->links() }}
@endsection