@if ($actionMessage)
{{ $actionMessage }}
@endif
@forelse ($this->transactions as $transaction)
@if ($expandedId === $transaction->id)
Provider reference
{{ $transaction->provider_reference ?? '—' }}
Recipient
{{ $transaction->phone_or_meter }}
Network/DISCO
{{ $transaction->network_or_disco }}
@if ($transaction->response_payload)
{{ json_encode($transaction->response_payload, JSON_PRETTY_PRINT) }}
@endif @can('manage-transactions')
@if ($transaction->status === 'processing') @endif @if (! in_array($transaction->status, ['reversed', 'failed'])) @endif
@endcan
@endif
@empty

No transactions match these filters.

@endforelse
{{ $this->transactions->links() }}