Current Balance is : {{ Auth::guard('user')->user()->balance }} USD
@if(Session::has('success'))
Success : {{ Session::get('success') }}
@endif
@if(Session::has('error'))
Warning : {{ Session::get('error') }}
@endif
@if(count($errors) > 0)
Error:
@foreach($errors->all() as $error)
- {!! $error !!}
@endforeach
@endif
{!! Form::open(['route'=>'withdraw-request']) !!}
Withdraw Method
{!! Form::close() !!}
Date |
Balance |
Status |
@foreach($withdraw as $w)
{{ date('d-F-Y',strtotime($w->created_at)) }} |
{{ $w->balance }} USD |
@if($w->status == 0)
Pending
@elseif($w->status == 1)
Success
@else
Refunded
@endif
|
@endforeach