@extends('layout.master') @section('body-class', 'page-account-order-info') @section('content')
{{-- {{ dd($order) }} --}}
订单详情
订单号 下单日期 状态 订单金额
{{ $order->number }} {{ $order->created_at }} {{ $order->status }} {{ $order->total }}
订购商品
@foreach ($order->orderProducts as $product)
{{ $product->name }} x {{ $product->quantity }}
{{ $product->price }}
@endforeach
物流状态
订单状态
@endsection