@extends($active_theme) @section('title') {{__('user.Seller withdraw')}} @endsection @section('frontend-content')
@include('user.inc.profile_header')
payout

{{__('user.Current Balance')}}

@if (session()->get('currency_position') == 'right') {{ $current_balance * session()->get('currency_rate') }}{{ session()->get('currency_icon') }} @else {{ session()->get('currency_icon') }}{{ $current_balance * session()->get('currency_rate') }} @endif

{{__('user.Make withdraw')}}
payout

{{__('user.Total Earning')}}

@if (session()->get('currency_position') == 'right') {{ $total_balance * session()->get('currency_rate') }}{{ session()->get('currency_icon') }} @else {{ session()->get('currency_icon') }}{{ $total_balance * session()->get('currency_rate') }} @endif

payout

{{__('user.Total Withdraw')}}

@if (session()->get('currency_position') == 'right') {{ $total_withdraw * session()->get('currency_rate') }}{{ session()->get('currency_icon') }} @else {{ session()->get('currency_icon') }}{{ $total_withdraw * session()->get('currency_rate') }} @endif

{{__('user.My Withdraw')}}

@foreach ($withdraws as $index=>$withdraw) @if ($withdraw->status==1) @else @endif @endforeach
{{__('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 {{__('user.Success')}}{{__('user.Pending')}}
@endsection @push('frontend_js') @endpush