@extends('layouts.master-layouts') @section('title') {{ __('Receptionist Profile') }} @endsection @section('content')
{{ $receptionist->title }}
{{ $receptionist->last_login }}
{{ __('Full Name:') }} | {{ $receptionist->first_name }} {{ $receptionist->last_name }} |
---|---|
{{ __('Contact:') }} | {{ $receptionist->mobile }} |
{{ __('Email:') }} | {{ $receptionist->email }} |
@if(count($doctor_user) > 0)
@foreach ($doctor_user as $key => $show)
{{ $show->first_name . ' ' . $show->last_name }}
@endforeach
@else
No Assigned Doctors @endif |
{{ __('Appointments') }}
{{ __('Pending Bills') }}
{{ __('Total Bill') }}
{{ __('Sr. No') }} | {{ __('Doctor Name') }} | {{ __('Patient Name') }} | {{ __('Date') }} | {{ __('Time') }} |
---|---|---|---|---|
{{ $loop->index + 1 + $per_page * ($currentpage - 1) }} | {{ @$item->doctor->user->first_name . ' ' . @$item->doctor->user->last_name }} | {{ $item->patient->first_name . ' ' . $item->patient->last_name }} | {{ $item->appointment_date }} | {{ $item->timeSlot->from . ' ' . $item->timeSlot->to }} |