fixed order info
This commit is contained in:
parent
b1393a2720
commit
bf76f1758a
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in New Issue