@extends('layouts.app')
@section('title', 'وصفة ' . $prescription->prescription_number)
@section('content')
| # | الدواء | الجرعة | التكرار | المدة | تعليمات |
|---|---|---|---|---|---|
| {{ $i + 1 }} |
{{ $item->medication_name }}
@if($item->strength)
{{ $item->strength }}
@endif
|
{{ $item->dosage ?: '—' }} | {{ $item->frequency ?: '—' }} | {{ $item->duration ?: '—' }} | {{ $item->instructions ?: '—' }} |
{{ $prescription->notes }}
{{ $prescription->prescription_number }}