芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/www/resources/views/Prescribe/user/find_doctor.blade.php
@extends('layouts.user_header') @section('title', 'Joruri Doctor | Appointment') @section('content')
@include('layouts.header_menu')
Appointment Details
Doctor Name
Regi Number
Patient Name
Mobile
Action
@foreach($patient as $patient)
{{$patient->customer->customer_name}}
{{$patient->regi_number}}
{{$patient->patient_name}}
{{$patient->patient_mobile}}
@if($patient->appoint_status == 1)
Pending
@else
Prescribed
@foreach($setting as $settings) @if($patient->doctor_id == $settings->doctor_id)
@endif @endforeach @endif
@endforeach
Find doctors as your disease
Select Specialist
@foreach($specialist as $specialist)
{{$specialist->specialist}}
@endforeach
Search
Online Doctor List
@foreach($doctor_list as $doctor)
{{$doctor->name}}
{{$doctor->doctor_type}}
{{$doctor->designation}}
{{$doctor->specialist}}
{{$doctor->posting_place}}
{{$doctor->ch_address}}
Appointment
@endforeach
@endsection