@extends('layouts.app') @section('title','Card Transactions') @section('content')
Back to Card
@forelse($transactions as $txn) @empty @endforelse
Date Merchant Category Amount NC Debited Status
{{ $txn->created_at->format('d M Y, H:i') }} {{ $txn->merchant_name ?? '—' }} {{ $txn->merchant_category ?? '—' }} {{ $txn->isCompleted() ? '-' : '' }}₦{{ number_format($txn->amount_naira) }} {{ $txn->coins_debited }} NC {{ ucfirst($txn->status) }}
No card transactions yet.
{{ $transactions->links() }}
@endsection