@extends('layouts.default') @section('header-links') @include('accounts.accounting.header') @endsection @section('title', trans_choice('general.reconciliations', 2)) @section('new_button')
{{ 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:'' }} | {{ Date::parse($item->started_at)->format($date_format) }} - {{ Date::parse($item->ended_at)->format($date_format) }} | @money($item->closing_balance, $item->account->currency_code, true) | @if ($item->reconciled) {{ trans('reconciliations.reconciled') }} @else {{ trans('reconciliations.unreconciled') }} @endif | create |