@extends('seller.layout') @section('content')
{{ single_price(Auth::user()->seller[0]->admin_to_pay) }} {{ currency_sympol()['symbol'] }} {{ __('SellerWithdrawRequest.Pending Balance') }}
{{ __('SellerWithdrawRequest.Send Withdraw Request') }}

{{ __('SellerWithdrawRequest.Withdraw Request history') }}
@if (count($seller_withdraw_requests)) @foreach ($seller_withdraw_requests as $key => $seller_withdraw_request) @endforeach
# {{ __('SellerWithdrawRequest.Date') }} {{ __('SellerWithdrawRequest.Amount') }} {{ __('SellerWithdrawRequest.Status') }} {{ __('SellerWithdrawRequest.Message') }}
{{ ($key+1) + ($seller_withdraw_requests->currentPage() - 1)*$seller_withdraw_requests->perPage() }} {{ 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) {{ __('SellerWithdrawRequest.SENT') }} @else {{ __('SellerWithdrawRequest.PENDING') }} @endif {{ $seller_withdraw_request->message }}
@else {{ __('General.No Data Avalible') }} @endif {{ $seller_withdraw_requests->links() }}
@endsection