芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/www/resources/views/Prescribe/doctor/manage_appointment.blade.php
@extends('layouts.app') @section('title', 'Doctor | Manage Appointment') @section('content')
@include('layouts.header_menu')
Go!
Results for "Appointment Patients"
Patient ID.
Name
Sex
Mobile
New/Old
Free/Paid
Appointment Date
Action
@foreach($appointment as $results)
{{$results->unique_patient_id}}
{{$results->patient_name}}
{{$results->patient_sex}}
{{$results->patient_mobile}}
{{$results->patient_type}}
{{$results->visit_fee}}
{{$results->visit_date}}
@if(Auth::user()->admin_role == 'assistant')
@else
@endif
{{$results->assistant->name}}
@endforeach
@stop