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