@extends('layouts.app') @section('title', 'Escrow Dashboard') @push('styles') @endpush @section('content') {{-- Welcome Banner --}}
{{-- Stats Grid --}}| ID | Title | Counterparty | Amount | Status | Date | Action |
|---|---|---|---|---|---|---|
| ESC-{{ str_pad($txn->id, 5, '0', STR_PAD_LEFT) }} | {{ Str::limit($txn->title, 30) }} | {{ $txn->getCounterparty(auth()->id())?->name ?? 'N/A' }} | {{ $currency ?? '₦' }}{{ number_format($txn->amount, 2) }} | {{ ucfirst($txn->status) }} | {{ $txn->created_at->format('M d, Y') }} | View |
No transactions yet. Create your first escrow!
Create Escrow