|
|
|
@ -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> |