@extends('admin.layouts.main') @php $page_name = 'Wallet Transaction'; @endphp @section('content')

Coins Transactions - {{ $user->name }}

Reset
@forelse ($transactions as $transaction) @empty @endforelse
User Amount Type Note Date
{{ $transaction->user->name ?? '-' }} ₹{{ $transaction->amount }} {{ ucfirst($transaction->type) }} {{ $transaction->description }} {{ $transaction->created_at->format('d M Y, h:i A') }}
No transactions found.
{{ $transactions->appends(request()->query())->links() }}
@endsection