Browse Source

Add invoice notes attribute and adjust column width

pull/50/head
Nafies Luthfi 7 years ago
parent
commit
e24703bef8
  1. 3
      resources/views/invoices/partials/detail.blade.php

3
resources/views/invoices/partials/detail.blade.php

@ -1,6 +1,6 @@
<table class="table">
<tbody>
<tr><th>{{ trans('invoice.number') }}</th><td class="text-primary strong">{{ $invoice->number }}</td></tr>
<tr><th class="col-md-4">{{ trans('invoice.number') }}</th><td class="text-primary strong">{{ $invoice->number }}</td></tr>
<tr><th>{{ trans('invoice.date') }}</th><td>{{ $invoice->date }}</td></tr>
<tr><th>{{ trans('invoice.due_date') }}</th><td>{{ $invoice->due_date }}</td></tr>
<tr><th>{{ trans('invoice.project') }}</th><td>{{ $invoice->project->nameLink() }}</td></tr>
@ -8,5 +8,6 @@
<tr><th>{{ trans('invoice.items_count') }}</th><td>{{ $invoice->items_count }}</td></tr>
<tr><th>{{ trans('invoice.creator') }}</th><td>{{ $invoice->creator->name }}</td></tr>
<tr><th>{{ trans('invoice.amount') }}</th><td class="text-right lead">{{ format_money($invoice->amount) }}</td></tr>
<tr><th>{{ trans('invoice.notes') }}</th><td>{{ $invoice->notes }}</td></tr>
</tbody>
</table>
Loading…
Cancel
Save