@include('layouts.client_assign_manager')
@lang('translate.ib_withdraw')
@foreach (['danger', 'warning', 'success', 'info'] as $msg)
@if(Session::has('alert-' . $msg))
{{ ucfirst(($msg == 'danger') ? "Error" : $msg) }}! {{ Session::get('alert-' . $msg) }}
@endif
@endforeach
@lang('translate.ib_withdraw_report')
@if(count($ibwithdrawlists) > 0)
@foreach($ibwithdrawlists as $ibwithdraw)
|
|
IB Withdraw
|
{{ ucfirst($ibwithdraw->paymentmethod) }}
|
{{ $ibwithdraw->withdraw_to }}
|
{{ $ibwithdraw->comment }}
|
@if($ibwithdraw->status == "1")
Approved
@elseif($ibwithdraw->status == "2")
Rejected
@elseif($ibwithdraw->status == "0")
Pending
@endif
|
${{$ibwithdraw->amount}} |
@endforeach
@if(count($ibwithdrawlists) > 0)
@endif
@else
@endif