@extends('admin.layouts.app') @section('contents')

All Withdraw Requests

@forelse($withdrawRequests as $withdrawRequest) @empty @endforelse
No. Store Amount Payment Method Details Status
{{ $loop->iteration }} {{ $withdrawRequest->store->name }} {{ 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)) }}
No Withdraw Requests
@endsection