@extends('layout.app') @section('content')
Manager Name: {{ $reseller->name }}
Current Balance: {{ $reseller->balance[0]['amount'] ?? 0 }}
Manager Recharge History
Date | Recharge Amount | After Recharge Balance | @if (checkSettings('reseller-recharge-paid-option') == 'enable')Paid Amount | @endifRemarks | Recharge By | |
---|---|---|---|---|---|---|
{{ date('d-M-Y h:i:sa', strtotime($r->created_at)) }} | {{ $r->amount }} | {{ $r->after_recharge_balance }} | @if (checkSettings('reseller-recharge-paid-option') == 'enable'){{ $r->paid_amount }} | @endif{{ $r->remarks }} | {{ $r->user->name ?? '' }} | |
Total Recharge: | {{ $rechargeList->sum('amount') }} | @if (checkSettings('reseller-recharge-paid-option') == 'enable')Total Paid: | {{ $rechargeList->sum('paid_amount') }} | @endif