@extends('admin.layouts.app') @section('content')
@csrf
@error('amount') {{$message}} @enderror
@error('comming_from') {{$message}} @enderror
@error('type') {{$message}} @enderror
@foreach ($wallet_transactions as $key=>$wallet_transaction) @endforeach
# Amount Comming from Type Date
{{ ($key+1) + ($wallet_transactions->currentPage() - 1)*$wallet_transactions->perPage() }} ₹ {{ $wallet_transaction->amount }} {{ ucwords(str_replace('_',' ',$wallet_transaction->comming_from)) }} {{ ucfirst($wallet_transaction->type) }} {{ $wallet_transaction->created_at }}

Showing {{ ($wallet_transactions->currentpage() - 1) * $wallet_transactions->perpage() + 1 }} to {{ ($wallet_transactions->currentpage() - 1) * $wallet_transactions->perpage() + $wallet_transactions->count() }} of {{ $wallet_transactions->total() }} Wallet Transactions

{!! $wallet_transactions->links() !!}
@endsection