@extends('layouts.app') @section('title') Show Reconcilations @stop @section('breadcrumb') @stop @section('content')

Transactions

{{csrf_field()}}
@foreach($entries as $e) @if($e->voucher_type == \App\GeneralJournalEntry::CRV) @elseif($e->voucher_type == \App\GeneralJournalEntry::BRV) @elseif($e->voucher_type == \App\GeneralJournalEntry::CPV) @elseif($e->voucher_type == \App\GeneralJournalEntry::BPV) @elseif($e->voucher_type == \App\GeneralJournalEntry::JV) @else @endif @if($e->is_cleared) @else @endif @endforeach
# Date Voucher # Description Name Deposit WithDraw Clear
{{$count++}} {{date('d-m-Y',strtotime($e->date))}}CRV-{{$e->voucher_no}}BRV-{{$e->voucher_no}}CPV-{{$e->voucher_no}}BPV-{{$e->voucher_no}}JV-{{$e->voucher_no}}{{$e->memo}} {{$e->controlAccount ? $e->controlAccount->name : ''}} {{$e->amount > 0 ? number_format($e->amount) : ''}} {{$e->amount < 0 ? number_format(abs($e->amount)) : ''}}
Total Balance : {{number_format($totalAmount)}}

Uncleared Transaction : {{number_format($uncleared)}}

Difference : {{number_format($totalAmount - $uncleared)}}

@stop @section('js') @stop