@extends('admin.layout') @section('title', 'Kullanıcı Bakiyesi') @section('content')
| Tarih / Saat | İşlem | Açıklama | Önceki | Tutar | Sonraki | İşlemi Yapan |
|---|---|---|---|---|---|---|
| {{ $transaction->created_at?->format('d.m.Y H:i') }} | {{ $typeLabels[$transaction->type] ?? ucfirst($transaction->type) }} | {{ $transaction->description ?: '—' }} | {{ number_format((float)$transaction->balance_before, 2, ',', '.') }} ₺ | {{ (float)$transaction->amount >= 0 ? '+' : '' }}{{ number_format((float)$transaction->amount, 2, ',', '.') }} ₺ | {{ number_format((float)$transaction->balance_after, 2, ',', '.') }} ₺ | {{ $transaction->creator?->name ?: 'Sistem' }} |
| Henüz bakiye işlemi bulunmuyor. | ||||||