@extends('accounts.layouts.cheque') @section('title', trans_choice('general.cheques', 1) . ': ' . $cheque->cheque_number) @section('content')
{{ trans('cheques.cheque_number') }}: | {{ $cheque->cheque_number }} |
---|---|
{{ trans('cheques.paid_date') }}: | {{ Date::parse($cheque->paid_at)->format($date_format) }} |
{{ trans('cheques.payment_due') }}: | {{ Date::parse($cheque->due_at)->format($date_format) }} |
{{ trans_choice('accounting.accountdetails', 1) }} | {{ trans_choice('general.description', 1) }} | {{ trans('bills.price') }} | {{ trans('bills.total') }} |
---|---|---|---|
{{ $item->name }} | {{ isset($item->description)?$item->description:'-' }} | @money($item->price, $cheque->currency_code, true) | @money($item->total, $cheque->currency_code, true) |
{{ trans_choice('general.notes', 2) }}:
{{ $cheque->notes }}
@endif{{ trans($total['name']) }}: | @money($total->amount, $cheque->currency_code, true) |
---|---|
{{ trans('invoices.paid') }}: | - @money($cheque->paid, $cheque->currency_code, true) |
{{ trans($total['name']) }}: | @money($total->amount - $cheque->paid, $cheque->currency_code, true) |