芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/www/resources/views/Prescribe/assistant/add_appointment.blade.php
@extends('layouts.app') @section('title', 'Joruri Doctor | Manage Appointment') @section('content')
@include('layouts.header_menu')
@csrf
Doctor Appointment Number
New Patient
Old Patient
Patient Information
Select Gender
Male
Female
Child
Pre Test Data
</textarea>
Appointment
Results for "Appointment Patients"
Patient ID
Name
Mobile
New/Old
Free/Paid
Date
Action
@foreach($appointment as $results)
{{$results->unique_patient_id}}
{{$results->patient_name}}
{{$results->patient_mobile}}
{{$results->patient_type}}
@if(isset($setting[7]->name) == 'visit_fee' && $setting[7]->status == '1')
@csrf @method('put')
@else
{{$results->visit_fee}}
@endif
{{$results->visit_date}}
@if($results->appoint_status == 1)
@else
Prescribed
@if(isset($setting[5]->name) == 'prescription' && $setting[5]->status == '1')
@endif @endif
@endforeach
Total: {{ $appointment->pluck('visit_fee')->sum() }}/-
@endsection