@extends('layout.app') @section('content')
Total Manager: {{ $resellersCount }}
@can('reseller-recharge') @endcan| ID | Manager Name | @canany(['reseller_type', 'specific_management_services']) | Reseller Type | @endcanAddress | Contact No | Balance | @if (globalPermission('commission_from_manager_pop') && checkSettings('vat_deduct_from_payment_for_commission_calculation') === 'enable')VAT % | Commission % | @endif @if (checkSettings('reseller-recharge-paid-option') == 'enable')Total Due | @endif @can('manager-remark-view')Remark | @endcan @if (checkSettings('manager_status') == 'enable')Status | @endif @can('manager_unique_code')Unique Code | @endcan|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $r->id }} | {{ $r->name }} | @cannot('specific_management_services') @if (checkSettings('reseller-online-recharge') == 'enable') @if ($r->enable_online_recharge) Online Recharge @endif @endif @endcannot | @canany(['reseller_type', 'specific_management_services']){{ $r->reseller_type }} | @endcan{{ $r->address }} | {{ $r->contact }} | {{ $r->balance[0]['amount'] ?? 0 }} | @if (globalPermission('commission_from_manager_pop') && checkSettings('vat_deduct_from_payment_for_commission_calculation') === 'enable'){{ $r->vat ?? 0 }}% | {{ $r->commission_percentage ?? 0 }}% | @endif @if (checkSettings('reseller-recharge-paid-option') == 'enable')@foreach ($due as $d) @if ($d->reseller_id == $r->id) {{ $d->tamount - $d->tpaid }} @endif @endforeach {{-- {{ $r->paid->amount }} --}} | @endif @can('manager-remark-view'){{ $r->remark ?? '' }} | @endcan @if (checkSettings('manager_status') == 'enable'){{ $r->status == 'active' ? 'Active' : 'Inactive' }} | @endif @can('manager_unique_code'){{ $r->manager_unique_code ?? '' }} | @endcan
|