{{ __('admin.wallet_transactions') }}

@if($transactions->count() > 0)
@foreach($transactions as $transaction) @endforeach
{{ __('admin.type') }} {{ __('admin.amount') }} {{ __('admin.date') }}
@if($transaction->operation == 'deposit') {{ __('admin.deposit') }} @else {{ __('admin.withdraw') }} @endif {{ $transaction->amount }} {{ __('site.currency') }} {{ $transaction->created_at->format('Y-m-d H:i') }}
@if($transactions->hasPages())
{{ $transactions->links('pagination::bootstrap-4') }}
@endif @else

{{ __('admin.no_transactions_found') }}

@endif