{{-- resources/views/diler/wallet.blade.php --}} @extends('diler.layouts.app') @section('title', 'Wallet') @section('content')
| Date | Type | Amount | Balance After | Description |
|---|---|---|---|---|
| {{ $tx->created_at->format('d M Y h:i A') }} | {{ ucfirst($tx->type) }} | {{ $tx->type == 'credit' ? '+' : '-' }}৳{{ number_format($tx->amount, 2) }} | ৳{{ number_format($tx->balance_after, 2) }} | {{ $tx->description ?? '-' }} |