@extends('admin.layout') @section('content')

{{ translate('Withdraw request history') }}

@if (Session::get('tenant_subscribtion_data')['sellers']['belongs_to_subscribtion'] == true && Session::get('tenant_controle_modules')['sellers'] == 1)
@if (count($seller_withdraw_requests)) . @foreach ($seller_withdraw_requests as $key => $seller_withdraw_request) @if (\App\Seller::find($seller_withdraw_request->seller_id) != null && \App\Seller::find($seller_withdraw_request->seller_id)->user != null) @endif @endforeach
# {{ translate('Seller') }} {{ translate('Date') }} {{ translate('Amount') }} {{ translate('Status') }} {{ translate('Message') }} {{ translate('Options') }}
{{ $key + 1 + ($seller_withdraw_requests->currentPage() - 1) * $seller_withdraw_requests->perPage() }} @if (\App\Seller::find($seller_withdraw_request->seller_id) != null) {{ \App\Seller::find($seller_withdraw_request->seller_id)->user->name }} ({{ \App\Seller::find($seller_withdraw_request->seller_id)->company_name }}) @endif {{ date('d-m-Y', strtotime($seller_withdraw_request->created_at)) }} {{ single_price($seller_withdraw_request->amount) }} {{ currency_sympol()['symbol'] }} @if ($seller_withdraw_request->status == 1) {{ translate('Sent') }} @else {{ translate('Pending') }} @endif {{ $seller_withdraw_request->message }} @if ($seller_withdraw_request->status == 0) @else {{ translate('Sent') }} @endif
@else

{{ translate('There is nothing you are looking for') }}

@endif
{{ $seller_withdraw_requests->links() }}
@else

{{ translate('You need to upgrade to use this feature.') }}

{{ translate('Please Upgrade to use this feature.') }}


{{ translate('Upgrade now') }}
@endif
@endsection