@extends($active_theme) @section('title')
{{__('user.Current Balance')}}
{{__('user.Total Earning')}}
{{__('user.Total Withdraw')}}
{{__('user.Number')}} | {{__('user.Method')}} | {{__('user.Total Amount')}} | {{__('user.Charge')}} | {{__('user.Withdraw Amount')}} | {{__('user.Status')}} | |
---|---|---|---|---|---|---|
{{ ++$index }} | {{ $withdraw->method }} | @if (session()->get('currency_position') == 'right') {{ $withdraw->total_amount * session()->get('currency_rate') }}{{ session()->get('currency_icon') }} @else {{ session()->get('currency_icon') }}{{ $withdraw->total_amount * session()->get('currency_rate') }} @endif | @if (session()->get('currency_position') == 'right') {{ ($withdraw->total_amount-$withdraw->withdraw_amount) * session()->get('currency_rate') }}{{ session()->get('currency_icon') }} @else {{ session()->get('currency_icon') }}{{ ($withdraw->total_amount-$withdraw->withdraw_amount) * session()->get('currency_rate') }} @endif | @if (session()->get('currency_position') == 'right') {{ html_decode($withdraw->withdraw_amount * session()->get('currency_rate')) }}{{ session()->get('currency_icon') }} @else {{ session()->get('currency_icon') }}{{ html_decode($withdraw->withdraw_amount * session()->get('currency_rate')) }} @endif | @if ($withdraw->status==1){{__('user.Success')}} | @else{{__('user.Pending')}} | @endif