@extends('layouts.print')
@section('title')
طباعة روشتة {{$report->patient->name}}
@endsection
@section('content')
@foreach($report->follow_up_details as $detail)
@if($detail->disease)
- {{ $detail->disease->name }}
@endif
@endforeach
{{ $report->drugs }}
@foreach($report->follow_up_details as $detail)
@if($detail->allergenic)
- {{ $detail->allergenic->name }}
@endif
@endforeach
{{ $report->body_temperature }}
{{ $report->suggested_note }}
{{$report->doctor->name}}
@endsection