@if (Route::is('admin.dashboard') && ($checkCredentials = checkCredentials()))
@foreach ($checkCredentials as $checkCredential)
@if ($checkCredential->status)
@endif
@endforeach
@endif
@if ($setting->is_queable == 'active' && Cache::get('corn_working') !== 'working')
@endif
@endif
{{ __('New Appointment') }}
{{ $new_appointment_qty ?? 0 }}
{{ __('Pending Orders') }}
{{ $pending_orders_qty ?? 0 }}
{{ __('Successful Appointment') }}
{{ $success_appointment_qty ?? 0 }}
{{ __('Total Client') }}
{{ $client_qty ?? 0 }}
{{ __('Total Lawyer') }}
{{ $lawyer_qty ?? 0 }}
{{ __('Earnings') }} ({{ __('Monthly') }})
{{ currency($monthlyEarning) }}
{{ __('Earnings') }} ({{ __('Total') }})
{{ currency($totalEarning) }}
{{ __('Total Subscriber') }}
{{ $subscriber_qty ?? 0 }}
{{ __('Pending Orders') }}
{{ __('Lawyer Payment In') }} {{ date('F, Y') }}
| {{ __('SN') }} | {{ __('Name') }} | {{ __('Email') }} | {{ __('Phone') }} | {{ __('Amount') }} |
|---|---|---|---|---|
| {{ ++$index }} | {{ $payment?->lawyer?->name }} | {{ $payment?->lawyer?->email }} | {{ $payment?->lawyer?->phone }} | {{ currency($payment?->total_payment_fee) }} |
{{ $payment_histories->onEachSide(0)->links() }}
@endif