@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->title }}
{{ $accountant->last_login }}
{{ __('Full Name:') }} | {{ $accountant->first_name }} {{ $accountant->last_name }} |
---|---|
{{ __('Contact:') }} | {{ $accountant->mobile }} |
{{ __('Email:') }} | {{ $accountant->email }} |
{{ __('Total Invoices') }}
{{ __('Total Doctors') }}
{{ __('Sr. No') }} | {{ __('Doctor Name') }} | {{ __('Email') }} | {{ __('Mobile') }} |
---|---|---|---|
{{ $loop->index + 1 + $per_page * ($currentpage - 1) }} | {{ $doctor->first_name . ' ' . $doctor->last_name }} | {{ $doctor->email }} | {{ $doctor->mobile }} |