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

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

@foreach ($list as $li) @if(count($li->chartofhistory) > 0) @foreach($li->chartofhistory as $l) @endforeach @endif @endforeach
DATE TRANSACTION TYPE CLR AMOUNT
- {{ ucwords($li->name) }}
{{ Date::parse($l->created_at)->format($date_format) }} {{ __('Check') }} @money($l->amount, 'USD', true)
@include('accounts.reports.standard.filter') @include('includes.datepicker') @endsection