调整订单状态显示字段,统一使用status_format
This commit is contained in:
parent
d2a68741d4
commit
271732fa2b
|
|
@ -40,7 +40,7 @@
|
||||||
<td>{{ $order->number }}</td>
|
<td>{{ $order->number }}</td>
|
||||||
<td>{{ $order->created_at }}</td>
|
<td>{{ $order->created_at }}</td>
|
||||||
<td>
|
<td>
|
||||||
{{ __("common.order.{$order->status}") }}
|
{{ $order->status_format }}
|
||||||
</td>
|
</td>
|
||||||
<td>{{ currency_format($order->total, $order->currency_code, $order->currency_value) }}</td>
|
<td>{{ currency_format($order->total, $order->currency_code, $order->currency_value) }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
@ -103,4 +103,4 @@
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
@endsection
|
@endsection
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue