@extends('layouts.layout-2') @section('content')
| ID | Datum | Aktion | TX-ID | Referenz | Modus | Fehlercode | Fehlermeldung | |
|---|---|---|---|---|---|---|---|---|
| {{ $tx->id }} | {{ $tx->created_at->format('d.m.Y H:i') }} | @php $actionColor = match($tx->txaction) { 'paid' => 'success', 'failed' => 'danger', 'appointed' => 'info', 'pending' => 'warning', default => 'secondary', }; @endphp {{ $tx->txaction ?? '—' }} | {{ $tx->txid ?? '—' }} |
@if($tx->shopping_payment)
{{ $tx->shopping_payment->reference }}
@else
—
@endif
|
@if($tx->mode) {{ $tx->mode }} @endif | @if($tx->errorcode) {{ $tx->errorcode }} @endif | @if($tx->transmitted_data) @endif | |
{{ json_encode($tx->transmitted_data, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
|
||||||||
| Keine Transaktionen gefunden. | ||||||||