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

Wallet Transactions {{ isset($user->name) ? "- $user->name" : '' }}

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