@foreach ($latest_orders as $order)
|
|
{{ $order->created_at }}
订单号:{{ $order->number }}
|
@foreach ($order->orderProducts as $product)
{{ $product->name }}
{{ $product->quantity }}
|
@if ($loop->first)
{{ $order->total }} |
{{ $order->status }} |
查看
|
@endif
@endforeach
@endforeach