@extends('layouts/layout') @section('content')

Withdrawal (ID: {{ $withdrawal->id }})

@csrf @method('PUT')
@if ($withdrawal->status == \App\Models\Withdrawal::STATUS_PENDING) @else @endif
@if (!empty($withdrawal->proof_of_transaction))
@else
Proof of transaction not found.
@endif
@if ($withdrawal->status == \App\Models\Withdrawal::STATUS_PENDING)
@endif
@endsection