芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/resources/views/Prescribe/manage_patient.blade.php
@extends('layouts.app') @section('title', 'Joruri Doctor | Manage Patients') @section('content')
@include('layouts.header_menu')
Results for "Patients Prescription"
Doctor Name
Name
Sex
Mobile
Old/New
Fee
Visit Date
Action
@foreach ($patient as $result)
{{$result->customer->customer_name}}
{{$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