@extends('layouts.admin') @section('title', trans_choice('general.reconciliations', 2)) @permission('create-banking-reconciliations') @section('new_button')
@endsection @endpermission @section('content')@sortablelink('created_at', trans('general.create_date')) | @sortablelink('account_id', trans_choice('general.accounts', 1)) | @sortablelink('closing_balance', trans('reconciliations.closing_balance')) | {{ trans('general.actions') }} | ||
---|---|---|---|---|---|
{{ Date::parse($item->created_at)->format($date_format) }} | {{ $item->account->name }} | {{ 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 |
|