@extends('layouts.default') @section('title', trans_choice('general.cheques', 1) . ': ' . $cheque->cheque_number) @section('new_button') view_list{{ trans_choice('general.cheques', 2) . 'List'}} editEdit add {{ trans_choice('general.cheques', 2) }} @endsection @section('content')
{{ trans('cheques.cheque_number') }}: | {{ $cheque->cheque_number }} |
---|---|
{{ trans('cheques.paid_date') }}: | {{ Date::parse($cheque->paid_at)->format($date_format) }} |
{{ trans_choice('accounting.accountdetails', 1) }} | {{ trans_choice('general.description', 1) }} | {{ trans('bills.price') }} | {{ trans('bills.total') }} |
---|---|---|---|
{{ $item->name }} | {{ $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->currency_code, true) |
{{ trans('general.date') }} | {{ trans_choice('general.statuses', 1) }} | {{ trans('general.description') }} |
---|---|---|
{{ Date::parse($cheque->created_at)->format($date_format) }} | {{ isset($cheque->status->name)?$cheque->status->name:''}} | {{ $cheque->description }} |
{{ trans('general.date') }} | {{ trans('general.amount') }} | {{ trans_choice('general.accounts', 1) }} |
---|---|---|
{{ Date::parse($payment->paid_at)->format($date_format) }} | @money($payment->amount, $payment->currency_code, true) | {{ isset($payment->account->name)?$payment->account->name:'' }} |