Skip to content

Commit

Permalink
fix update
Browse files Browse the repository at this point in the history
  • Loading branch information
xxl4 committed Jul 15, 2024
1 parent 9812c75 commit 5642c79
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,11 @@ class="text-[14px] text-blue-600 transition-all hover:underline"
</tr>
</thead>
<tbody>
<?php
if($order->sku_items->isEmpty()){
$order->sku_items = $order->items;
}
?>
@foreach ($order->sku_items as $item)
<tr>
<td>
Expand Down Expand Up @@ -261,6 +266,7 @@ class="" height="200px"
<td>{{ core()->formatBasePrice($item->base_total + $item->base_tax_amount - $item->base_discount_amount) }}</td>
</tr>
@endforeach

</tbody>
</table>
</div>
Expand Down

0 comments on commit 5642c79

Please sign in to comment.