@extends('admin.base') @section('title', 'Транзакции - Панель управления') @section('content')
ID | Пользователь | Тип | Сумма | Валюта | Дата | Описание | Действия |
---|---|---|---|---|---|---|---|
{{ $transaction->id }} | {{ $transaction->user->name ?? 'Не найден' }} (ID: {{ $transaction->user_id }}) | {{ $types[$transaction->type] ?? $transaction->type }} | {{ number_format($transaction->amount, 2) }} | RUB | {{ $transaction->created_at->format('d.m.Y H:i') }} | {{ $transaction->description }} |
Транзакции не найдены.
@endif