@extends('layouts.app') @section('content') @include('admin.topmenu') @include('admin.sidebar')

Process Withdrawal Request

Back
@if ($withdrawal->status != 'Completed')

Send Funds to {{ $user->first_name }} {{ $user->last_name }} using the details below

@else

Payment Completed

@endif
  • Type:    {{ $withdrawal->type }}
  • Amount:    ${{ number_format($withdrawal->amount, 2) }} ({{ $withdrawal->symbol }})
  • Fee:    ${{ number_format($withdrawal->fee ?? 0, 2) }}
  • Total Deducted:    ${{ number_format($withdrawal->amount + ($withdrawal->fee ?? 0), 2) }}
  • Status:    @if ($withdrawal->status == 'Completed') {{ $withdrawal->status }} @elseif ($withdrawal->status == 'Rejected') {{ $withdrawal->status }} @else {{ $withdrawal->status }} @endif
  • Reference:    {{ $withdrawal->ref }}
  • Date:    {{ \Carbon\Carbon::parse($withdrawal->created_at)->toDayDateTimeString() }}
@if ($withdrawal->payment_mode == 'Bank Transfer')
Bank Account Details
@else
{{ $withdrawal->symbol }} Wallet Address
@endif
@if ($withdrawal->status != 'Completed')
@csrf
Action
Subject
Enter Reasons for rejecting this withdrawal request
@endif
@endsection