@extends('deposits.base') @section('action-content')

Deposits for: {{ $client->surname }} {{ $client->first_name }}

@foreach($deposits as $d) @endforeach
# Amount Method Reference Date
{{ $loop->iteration }} GHS {{ number_format($d->amount, 2) }} {{ ucfirst($d->payment_method) }} {{ $d->reference_no }} {{ $d->created_at->format('d M Y') }}
@endsection