fixed order info

This commit is contained in:
Edward Yang 2022-08-22 17:28:34 +08:00
parent b1393a2720
commit bf76f1758a
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@
</td>
@if ($loop->first)
<td rowspan="{{ $loop->count }}">{{ currency_format($order->total) }}</td>
<td rowspan="{{ $loop->count }}">{{ $order->status }}</td>
<td rowspan="{{ $loop->count }}">{{ __("common.order.{$order->status}") }}</td>
<td rowspan="{{ $loop->count }}" class="text-end">
<a href="{{ shop_route('account.order.show', ['number' => $order->number]) }}" class="btn btn-outline-secondary btn-sm">{{ __('shop/account.order.check') }}</a>
</td>

View File

@ -61,7 +61,7 @@
<div class="left"><img src="{{ $product->image }}" class="img-fluid"></div>
<div class="right">
<div class="name">{{ $product->name }} x {{ $product->quantity }}</div>
<div class="price">{{ $product->price }}</div>
<div class="price">{{ currency_format($product->price) }}</div>
</div>
</div>
@if ($order->status == 'completed')