@extends('layouts.master-layouts') @section('title') {{ __('Accountant 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
{{ __('Accountant Information') }}
{{ $accountant->fisrt_name }}
{{ $accountant->first_name }} {{ $accountant->last_name }}

{{ $accountant->title }}

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

{{ $accountant->last_login }}

{{ __('Personal Information') }}

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

{{ __('Total Invoices') }}

{{ $invoices->total() }}

{{ __('Total Doctors') }}

{{ $doctors->total() }}

@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 = $doctors->currentPage(); @endphp @foreach ($doctors as $doctor) @endforeach
{{ __('Sr. No') }} {{ __('Doctor Name') }} {{ __('Email') }} {{ __('Mobile') }}
{{ $loop->index + 1 + $per_page * ($currentpage - 1) }} {{ $doctor->first_name . ' ' . $doctor->last_name }} {{ $doctor->email }} {{ $doctor->mobile }}
Showing {{ $doctors->firstItem() }} to {{ $doctors->lastItem() }} of {{ $doctors->total() }} entries
{{ $doctors->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