@extends('layouts.back-end.app') @section('title', \App\CPU\translate('Withdraw Request')) @push('css_or_js') @endpush @section('content')

{{\App\CPU\translate('withdraw')}}

{{ \App\CPU\translate('Withdraw Request Table')}} {{ $withdraw_req->total() }}
@foreach($withdraw_req as $k=>$wr) @endforeach
{{\App\CPU\translate('SL')}} {{\App\CPU\translate('amount')}} {{ \App\CPU\translate('Name') }} {{\App\CPU\translate('request_time')}} {{\App\CPU\translate('status')}} {{\App\CPU\translate('Action')}}
{{$withdraw_req->firstItem()+$k}} {{\App\CPU\BackEndHelper::set_symbol(\App\CPU\BackEndHelper::usd_to_currency($wr['amount']))}} @if (isset($wr->seller)) {{ $wr->seller->f_name . ' ' . $wr->seller->l_name }} @else {{\App\CPU\translate('not_found')}} @endif {{$wr->created_at}} @if($wr->approved==0) @elseif($wr->approved==1) @else @endif
@if (isset($wr->seller)) @else {{\App\CPU\translate('action_disabled')}} @endif
@if(count($withdraw_req)==0)
Image Description

{{\App\CPU\translate('No_data_to_show')}}

@endif
{{$withdraw_req->links()}}
@endsection @push('script_2') @endpush