@include('common.notify')
@if(!empty($deposits))
| Sr. No. |
Bank |
Deposit Total |
Notes |
Date |
Action |
@foreach($deposits as $index => $deposit)
| {{ $deposit->serial_no }} |
{{ $deposit->bank_type }} |
{{ currency().$deposit->deposit_total }} |
{{ $deposit->notes ?? '-' }} |
{{ date('d/m/Y',strtotime($deposit->created_at)) }} |
|
@endforeach
@endif
@endsection