芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/www/resources/views/Prescribe/doctor/manage_prescription.blade.php
@extends('layouts.app') @section('title', 'Joruri Doctor | Manage Prescription') @section('content')
@include('layouts.header_menu')
Go!
Results for "Patients Prescription"
Patient ID.
Name
Sex
Mobile
Old/New
Fee
Visit Date
Action
@foreach ($patient as $result)
{{$result->unique_patient_id}}
{{$result->patient_name}}
{{$result->patient_sex}}
{{$result->patient_mobile}}
{{$result->patient_type}} / @if ($result->visit_fee > 0)
Paid
@else
Free
@endif
@if ($result->visit_fee > 0)
{{$result->visit_fee}}
@else
Free
@endif
{{$result->visit_date}}
@if(isset($permission))
@endif @if($result->assistant_id == NULL)
@csrf @method('put')
Send to Assistant
@endif
@endforeach
Total: {{ $patient->pluck('visit_fee')->sum() }}/-
@endsection