@extends('layouts.portal') @section('title', 'Transactions') @section('content')
Wallet Transactions
@forelse($transactions as $t) @empty @endforelse
Reference Type Amount Balance After Description Date
{{ $t->reference_no }} {{ ucfirst($t->type) }} ₹{{ number_format($t->amount, 2) }} ₹{{ number_format($t->balance_after, 2) }} {{ $t->description }} {{ $t->created_at->format('d M Y h:i A') }}
Koi transaction nahi hai.
@endsection