@extends('layouts.admin') @section('page-title', 'Withdrawal Details') @section('content')
Requested on {{ $withdrawal->created_at->format('M d, Y \a\t g:i A') }}
{{ $withdrawal->user->name }}
{{ $withdrawal->user->email }}
@if($withdrawal->user->phone){{ $withdrawal->user->phone }}
@endif{{ ucfirst(str_replace('_', ' ', $withdrawal->payment_method)) }}
@if($withdrawal->payment_details) @foreach($withdrawal->payment_details as $key => $value){{ ucfirst(str_replace('_', ' ', $key)) }}: {{ $value }}
@endforeach @endif${{ number_format($withdrawal->amount, 2) }}
{{ $withdrawal->notes }}
{{ $withdrawal->processor?->name ?? 'Unknown' }}
{{ $withdrawal->processed_at->format('M d, Y \a\t g:i A') }}