订单管理 / Order
@foreach ($orders as $order)
@foreach ($order->buttons as $button)
{!! $button !!}
@if (! $loop->last)
@endif @endforeach
@endforeach
订单编号:{{ $order->no }}
成交时间:{{ $order->created_at }}
@foreach ($order->details as $detail)
-
{{ $detail->price }}
-
×{{ $detail->number }}
{{ $order->amount }}
{{ $order->status_text }}
@endif @endforeach