@extends('adminlte::page') @section('title', 'Withdrawal Request Details') @section('content_header')

Withdrawal Request Details

@stop @section('content')

Request #{{ $withdrawal->id }}

User Information
Name: {{ $withdrawal->user->name }}
Email: {{ $withdrawal->user->email }}
Username: {{ $withdrawal->user->username ?? '-' }}
Withdrawal Details
@if($withdrawal->processed_at) @endif @if($withdrawal->processor) @endif
Amount: Rp {{ number_format($withdrawal->amount, 2) }}
Status: {{ ucfirst($withdrawal->status) }}
Payment Method: {{ $withdrawal->payment_method }}
Created At: {{ $withdrawal->created_at->format('Y-m-d H:i:s') }}
Processed At: {{ $withdrawal->processed_at->format('Y-m-d H:i:s') }}
Processed By: {{ $withdrawal->processor->name }}
Payment Details
{{ json_encode($withdrawal->payment_details, JSON_PRETTY_PRINT) }}
@if($withdrawal->admin_notes)
Admin Notes
{{ $withdrawal->admin_notes }}
@endif @if($withdrawal->status == 'pending')
Actions
@csrf
@elseif($withdrawal->status == 'approved')
Actions
@csrf
@endif
@stop