@extends('layouts.admin-modern') @section('title', 'Détails transaction') @section('content')
Transaction #{{ $transaction->id }}
| Référence | {{ $transaction->reference ?? '—' }} |
|---|---|
| Utilisateur | {{ $transaction->user_name ?? ($transaction->user_email ?? '—') }} |
| Montant | {{ number_format($transaction->amount ?? 0, 2, ',', ' ') }} € |
| Type | {{ ucfirst($transaction->type ?? '—') }} |
| Statut | {{ ucfirst($transaction->status ?? '—') }} |
| Date | {{ \Carbon\Carbon::parse($transaction->created_at)->format('d/m/Y H:i') }} |
| Date | Détail |
|---|---|
| {{ $log->created_at }} | {{ $log->message ?? json_encode($log) }} |
| Aucun log disponible. | |