@include('layouts.client_assign_manager')
My Data
@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.deposit_report')
@if(count($depositlists) > 0)
@foreach($depositlists as $depositlist)
|
|
Deposit
|
{{ ucfirst($depositlist->paymentmethod) }}
|
{{ $depositlist->mt5id }}
|
{{ $depositlist->comment }}
|
@if($depositlist->status == "1")
Approved
@elseif($depositlist->status == "2")
Rejected
@elseif($depositlist->status == "0")
Pending
@endif
|
${{$depositlist->amount}} |
@endforeach
@if(count($depositlists) > 0)
@endif
@else
@endif