@extends('layouts.admin') @section('content')

Available balance: {{$user->balance}}

@if($available_withdraw == true)
@csrf
@elseif(isset($available_withdraw_for_admin))
@csrf

Allow us to cut the balance 500/- from you account by clicking this button:

@else

Your account is not eligible for withdrawal

@if(isset($not_available_for_withdraw_msg))

Note: {{$not_available_for_withdraw_msg}}

@endif @endif
@foreach($withdrawals as $withdraw) @if($withdraw->user) @endif @endforeach
{{__('Transaction ID')}} {{__('Payment Method')}} {{__('Note')}} {{__('Request Date')}} {{__('Amount')}}
{{$withdraw->transection_id}} {{$withdraw->payment_method}} {{$withdraw->note}} {{$withdraw->created_at->format(get_option('app_date_format'))}} @if(get_currency_placement() == 'after') {{$withdraw->amount}} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{$withdraw->amount}} @endif
{{$withdrawals->links()}}
@endsection @push('style') @endpush @push('script') @endpush