@extends('layout.app') @section('content')
Total Inactive Manager: {{ $resellersCount }}
@can('reseller-recharge') @endcanID | Manager Name | @canany(['reseller_type', 'specific_management_services']) | Reseller Type | @endcanAddress | Contact No | Balance | @if (checkSettings('reseller-recharge-paid-option') == 'enable')Total Due | @endif @hasrole('Admin')Remark | @endhasrole @if (checkSettings('manager_status') == 'enable')Status | @endif|
---|---|---|---|---|---|---|---|---|---|---|
{{ $r->id }} | {{ $r->name }} | @cannot('specific_management_services') @if (checkSettings('reseller-online-recharge') == 'enable') Online Recharge @endif @endcannot | @canany(['reseller_type', 'specific_management_services']){{ $r->reseller_type }} | @endcan{{ $r->address }} | {{ $r->contact }} | {{ $r->balance[0]['amount'] ?? 0 }} | @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 @hasallroles('Admin'){{ $r->remark ?? '' }} | @endhasallroles @if (checkSettings('manager_status') == 'enable'){{ $r->status == 'active' ? 'Active' : 'Inactive' }} | @endif
|