@include('layouts.client_assign_manager')
My Wallet
@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.wallet_history_report')
@if(count($wallethistorylists) > 0)
| @lang('translate.date') |
@lang('translate.id') |
@lang('translate.method') |
@lang('translate.to_deposit') |
@lang('translate.amount') |
@lang('translate.note') |
@foreach($wallethistorylists as $wallethistory)
| {{ date('M d Y',strtotime($wallethistory->created_at)) }} |
#{{ $wallethistory->id }} |
{{ $wallethistory->method }} |
{{ $wallethistory->todeposit }} |
{{ $wallethistory->amount }} |
{{ $wallethistory->note }} |
@endforeach
@if(count($wallethistorylists) > 0)
@endif
@else
@endif