Payment Overview
-
Net Total Gifts Purchased
CAD
@if($communityPayments)
${{number_format((float)$communityPayments->total_collected, 2, '.', '')}}
@else
$0.00
@endif
-
Total Requested Transfer
CAD
@if($communityPayments)
${{number_format((float)$communityPayments->cashout_request, 2, '.', '')}}
@else
$0.00
@endif
-
Pending Transfer
CAD
@if($communityPayments)
${{number_format((float)$communityPayments->cashout_request-$communityPayments->total_cashout, 2, '.', '')}}
@else
$0.00
@endif
-
Total Payout
CAD
@if($communityPayments)
${{number_format((float)$communityPayments->total_cashout, 2, '.', '')}}
@else
$0.00
@endif
-
Payment Gateway Fees On User Cashout Requests ({{$community->idhubs_commission}}%)
CAD
@if($communityPayments)
${{number_format((float)$communityPayments->idhubs_comissions, 2, '.', '')}}
@else
$0.00
@endif
-
Total Community Service Fees on Gift Sent (10%)
CAD
@if($communityPayments)
${{number_format((float)$communityPayments->community_balance, 2, '.', '')}}
@else
$0.00
@endif
- -------------------------
-
Total Cash Credited in the Platform
CAD
@if($communityPayments)
${{number_format((float)$communityPayments->topup_cash_credited, 2, '.', '')}}
@else
$0.00
@endif
-
Transfer Service Fees
CAD
@if($idhubs_comission)
${{number_format((float)$idhubs_comission, 2, '.', '')}}
@else
$0.00
@endif
-
Total Gift Amount
CAD
@if($community_payment)
${{number_format((float)$community_payment, 2, '.', '')}}
@else
$0.00
@endif