@extends('layout.app') @section('content')
ID | 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|
---|---|---|---|---|---|---|---|---|---|
{{ $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
|