@extends('layouts.admin') @section('title', 'Escrow Transactions') @push('styles') @endpush @section('content')
@forelse(($transactions ?? []) as $tx) @empty @endforelse
ID Title Buyer Seller Amount Fee Status Created Action
#{{ $tx->id }} {{ Str::limit($tx->title ?? '', 30) }} {{ $tx->buyer->name ?? 'N/A' }} {{ $tx->seller->name ?? 'N/A' }} ₦{{ number_format($tx->amount ?? 0, 2) }} ₦{{ number_format($tx->fee ?? 0, 2) }} {{ ucfirst($tx->status ?? 'pending') }} {{ $tx->created_at?->format('M d, Y') }}
No transactions found.
@include('partials.table-pagination', ['paginator' => $transactions, 'label' => 'transactions'])
@endsection