@extends('layouts.master-layouts') @section('title') {{ __('Receptionist Profile') }} @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('title') Profile @endslot @slot('li_1') Dashboard @endslot @slot('li_2') Profile @endslot @endcomponent
{{ __('Receptionist Information') }}
{{ $receptionist->fisrt_name }}
{{ $receptionist->first_name }} {{ $receptionist->last_name }}

{{ $receptionist->title }}

{{ __('Last Login:') }}

{{ $receptionist->last_login }}

{{ __('Personal Information') }}

{{ __('Full Name:') }} {{ $receptionist->first_name }} {{ $receptionist->last_name }}
{{ __('Contact:') }} {{ $receptionist->mobile }}
{{ __('Email:') }} {{ $receptionist->email }}

{{ __('Assign Doctor Information') }}

@if(count($doctor_user) > 0) @foreach ($doctor_user as $key => $show) {{ $show->first_name . ' ' . $show->last_name }} @endforeach @else

No Assigned Doctors

@endif

{{ __('Appointments') }}

{{ number_format($data['total_appointment']) }}

{{ __('Pending Bills') }}

{{ number_format($data['pending_bill']) }}

{{ __('Total Bill') }}

${{ number_format($data['revenue'], 2) }}

@if (session()->has('page_limit')) @php $per_page = session()->get('page_limit'); @endphp @else @php $per_page = Config::get('app.page_limit'); @endphp @endif @php $currentpage = $appointments->currentPage(); @endphp @foreach ($appointments as $item) @endforeach
{{ __('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 }}
Showing {{ $appointments->firstItem() }} to {{ $appointments->lastItem() }} of {{ $appointments->total() }} entries
{{ $appointments->links() }}
@if (session()->has('page_limit')) @php $per_page = session()->get('page_limit'); @endphp @else @php $per_page = Config::get('app.page_limit'); @endphp @endif @php $currentpage = $invoices->currentPage(); @endphp @foreach ($invoices as $item) @endforeach
{{ __('Sr. No') }} {{ __('Date') }} {{ __('Patient name') }} {{ __('Status') }} {{ __('Option') }}
{{ $loop->index + 1 + $per_page * ($currentpage - 1) }} {{ date('d-m-Y', strtotime($item->created_at)) }} {{ $item->user->first_name . ' ' . $item->user->last_name }} {{ $item->payment_status }}
Showing {{ $invoices->firstItem() }} to {{ $invoices->lastItem() }} of {{ $invoices->total() }} entries
{{ $invoices->links() }}
@endsection @section('script') @endsection