@php $i = 0; @endphp @foreach ($wallets as $wallet) @if (hasPermission('wallet_request_approve') || hasPermission('wallet_request_reject') || hasPermission('wallet_request_delete')) @endif @endforeach
{{ __('levels.id') }} {{ __('parcel.merchant') }} {{ __('levels.date') }} {{ __('parcel.transaction_id') }} {{ __('parcel.payment_method') }} {{ __('parcel.amount') }} {{ __('parcel.status') }} {{ __('levels.actions') }}
{{ ++$i }}
user

{{ @$wallet->merchant->business_name }}

{{ @$wallet->merchant->user->mobile }}

{{ @$wallet->merchant->address }}

{{ 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 (App\Enums\Wallet\WalletType::EXPENSE != $wallet->type) {!! @$wallet->my_status !!} @endif
{{ $wallets->links() }}

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