@extends('layouts.default') @section('title', trans('reports.standard.title.standardreports', ['type' => trans('reports.standard.depositdetail')])) @section('content')
{!! Form::open(['url'=>'/reports/standard/deposit-details']) !!} @include('accounts.reports.standard.date-filter-view') {!! Form::close() !!}

{{ trans('reports.standard.depositdetail') }}

DATE TRANSACTION TYPE NUM CUSTOMER VENDOR MEMO/DESCRIPTION CLR AMOUNT
@foreach($list as $bank) @php $chats = $bank->chartofhistory; @endphp @if(count($chats)>0)

@foreach ($chats as $item) @endforeach
{{ Carbon::parse($item->created_at)->format($date_format) }} Deposite {{ $item->number }} {{ $item->name }} {{ $item->description }} @money($item->amount, 'USD', true)
@endif @endforeach
@include('accounts.reports.standard.filter') @include('includes.datepicker') @endsection