@extends('layouts.user.base') @section('page-title') Withdraw @endsection @php $user = auth()->user()->load('wallets','active_kyc'); $wallets = $user->wallets; $settings = active_system_setting(); @endphp @section('content')
@foreach ($withdrawals as $withdrawal) @endforeach
Amount Wallet Wallet Address Date Status

{{ formatMoney($withdrawal->amount) }}

{{ $withdrawal->user_wallet->cryptocurrency }}

{{ $withdrawal->user_wallet->address }}

{{ formatDateTime($withdrawal->created_at) }}

{{ $withdrawal->status_data()->message }}
@endsection