@extends('layouts.app') @section('title', __('accounting::lang.bank_reconciliation')) @section('content') @include('accounting::layouts.nav')

@lang('accounting::lang.bank_reconciliation')

@csrf
{!! Form::select('accounting_account_id', $accounts, null, ['class'=>'form-control','placeholder'=>__('accounting::lang.bank_account'),'required']) !!}
@foreach($reconciliations as $rec) @endforeach
#@lang('accounting::lang.statement_date')@lang('accounting::lang.statement_balance')@lang('accounting::lang.book_balance')@lang('sale.status')@lang('messages.action')
{{ $rec->id }} {{ $rec->statement_date }} @format_currency($rec->statement_balance) @format_currency($rec->book_balance) {{ $rec->status }} @lang('messages.view')
{{ $reconciliations->links() }}
@endsection