@extends('vendor-dashboard.layouts.app') @section('contents')
{{ config('settings.site_currency') }} {{ $currentBalance }}
Current Balance
{{ config('settings.site_currency') }} {{ $pendingBalance }}
Pending Balance
{{ config('settings.site_currency') }} {{ $totalWithdraw }}
Total Withdraw

All Withdraw Requests

@forelse($withdrawRequests as $withdrawRequest) @empty @endforelse
No. Amount Payment Method Details Status
{{ $loop->iteration }} {{ config('settings.site_currency') }} {{ $withdrawRequest->amount }} {{ $withdrawRequest->payment_method }} @if ($withdrawRequest->status == 'pending') Pending @elseif($withdrawRequest->status == 'paid') Paid @else Rejected @endif {{ date('Y-m-d', strtotime($withdrawRequest->created_at)) }} @if ($withdrawRequest->status == 'pending') @endif
No Withdraw Requests
@endsection