@extends('layouts.admin') @section('page-title', 'Withdrawals') @section('content')
@forelse($withdrawals as $w) @empty @endforelse
VendorAmountMethodDetailsStatusDateActions
{{ $w->vendor->name }} ${{ number_format($w->amount, 2) }} {{ ucfirst(str_replace('_', ' ', $w->payment_method)) }} {{ json_decode($w->payment_details)->details ?? '-' }} {{ ucfirst($w->status) }} {{ $w->created_at->format('M d, Y') }} @if($w->status === 'pending')
@csrf
@csrf
@endif
No withdrawals
@endsection