@extends('layouts.default') @section('header-links') @include('accounts.accounting.header') @endsection @section('title', trans_choice('general.reconciliations', 2)) @section('new_button') add{{ trans_choice('general.reconciliations', 1) }} @endsection @section('content')
@foreach($reconciliations as $item) @endforeach
{{ trans('general.created_date') }} {{ trans_choice('general.accounts', 1) }} {{ trans('general.period') }} {{ trans('reconciliations.closing_balance') }} {{ trans_choice('general.statuses', 1) }} {{ trans('general.actions') }}
{{ Date::parse($item->created_at)->format($date_format) }} {{ isset($item->account->name_number)?$item->account->name_number:'' }} @money($item->closing_balance, $item->account->currency_code, true) create
{{-- --}}
@endsection