@php $i = 0; @endphp @foreach ($wallets as $wallet) @endforeach
{{ __('levels.id') }} {{ __('parcel.source') }} {{ __('levels.date') }} {{ __('parcel.transaction_id') }} {{ __('parcel.payment_method') }} {{ __('parcel.amount') }} {{ __('parcel.status') }}
{{ ++$i }} {{ $wallet->source }} {{ dateFormat($wallet->created_at) }} {{ @$wallet->transaction_id }} {{ __('WalletPaymentMethod.' . $wallet->payment_method) }} @if ($wallet->type == App\Enums\Wallet\WalletType::INCOME) + {{ settings()->currency }}{{ @$wallet->amount }} @elseif($wallet->type == App\Enums\Wallet\WalletType::EXPENSE) - {{ settings()->currency }}{{ @$wallet->amount }} @endif @if ($wallet->type == App\Enums\Wallet\WalletType::INCOME) {!! @$wallet->my_status !!} @endif
{{ $wallets->links() }}

{!! __('Showing') !!} {{ $wallets->firstItem() }} {!! __('to') !!} {{ $wallets->lastItem() }} {!! __('of') !!} {{ $wallets->total() }} {!! __('results') !!}