@extends('layouts.admin') @section('title', trans('general.title.new', ['type' => trans_choice('general.reconciliations', 1)])) @section('content')
{{ trans('general.date') }} | {{ trans('general.description') }} | {{ trans_choice('general.contacts', 1) }} | {{ trans('reconciliations.deposit') }} | {{ trans('reconciliations.withdrawal') }} | {{ trans('general.clear') }} | ||
---|---|---|---|---|---|---|---|
@date($item->paid_at) | {{ $item->description }} | {{ $item->contact->name }} | @if ($item->type == 'income')@money($item->amount, $item->currency_code, true) | N/A | @elseN/A | @money($item->amount, $item->currency_code, true) | @endif{{ Form::checkbox('transactions['. $item->id . '_'. $item->type . ']', $item->amount, $item->reconciled) }} |
{{ trans('reconciliations.closing_balance') }}: | @money(request('closing_balance', '0'), $account->currency_code, true) |
---|---|
{{ trans('reconciliations.cleared_amount') }}: | @money('0', $account->currency_code, true) |
{{ trans('general.difference') }}: | @money('0', $account->currency_code, true) |