{{-- resources/views/admin/deposits/index.blade.php --}} @php /** @var \Illuminate\Pagination\LengthAwarePaginator $deposits */ @endphp

Deposits / Holds

@forelse($deposits as $d) @empty @endforelse
ID PI Status Amount Currency Booking Customer Updated
{{ $d->id }} {{ $d->stripe_payment_intent_id ?? $d->stripe_payment_intent }} {{ $d->status }} {{ number_format(($d->amount ?? 0)/100, 2) }} {{ strtoupper($d->currency ?? 'nzd') }} {{ $d->booking?->id }} {{ $d->customer?->email }} {{ $d->updated_at }}
No results
{{ $deposits->links() }}