close #465 Fixed: For Invoice and Bill Status Problem Language Type

This commit is contained in:
cuneytsenturk
2018-08-30 12:17:18 +03:00
parent eb5023759c
commit 37f9fbe622
6 changed files with 10 additions and 6 deletions

View File

@@ -39,7 +39,7 @@
<td class="text-right">@money($item->amount, $item->currency_code, true)</td>
<td class="text-right">{{ Date::parse($item->invoiced_at)->format($date_format) }}</td>
<td class="text-right">{{ Date::parse($item->due_at)->format($date_format) }}</td>
<td class="text-center"><span class="label {{ $item->status->label }}">{{ $item->status->name }}</span></td>
<td class="text-center"><span class="label {{ $item->status->label }}">{{ trans('invoices.status.' . $item->status->code) }}</span></td>
</tr>
@endforeach
</tbody>