close #465 Fixed: For Invoice and Bill Status Problem Language Type
This commit is contained in:
@@ -52,7 +52,7 @@
|
||||
<td class="text-right amount-space">@money($item->amount, $item->currency_code, true)</td>
|
||||
<td>{{ Date::parse($item->billed_at)->format($date_format) }}</td>
|
||||
<td>{{ Date::parse($item->due_at)->format($date_format) }}</td>
|
||||
<td><span class="label {{ $item->status->label }}">{{ $item->status->name }}</span></td>
|
||||
<td><span class="label {{ $item->status->label }}">{{ trans('bills.status.' . $item->status->code) }}</span></td>
|
||||
<td class="text-center">
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" data-toggle-position="left" aria-expanded="false">
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
<div class="bill">
|
||||
<div id="badge">
|
||||
<div class="arrow-up"></div>
|
||||
<div class="label {{ $bill->status->label }}">{{ $bill->status->name }}</div>
|
||||
<div class="label {{ $bill->status->label }}">{{ trans('bills.status.' . $bill->status->code) }}</div>
|
||||
<div class="arrow-right"></div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user