@extends('admin.public.base') @section('body_class') style="margin: 0 auto;width: 96%;padding: 30px 0px;" @endsection @section('content')
@if (!empty($order['pay_id'])) @endif
订单ID 订单状态 订单描述
{{$order['order_id']}} @if ( isset($order['order_status_id']) ) @switch ($order['order_status_id']) @case(config('default_order_status')) 待支付 @break @case(config('paid_order_status')) 已支付 @break @default 未知 @endswitch @endif {{$order['order_subject']?? ''}}
下单地区 下单系统 下单终端
{{$order['buyer_area'] ?? '未知'}} {{$order['buyer_system'] ?? '未知'}} {{$order['buyer_client'] ?? '未知'}}
支付类型--支付ID 支付时间 实际支付
{{$order['payment_code'] ?? ''}} -- {{$order['pay_id'] ?? ''}} {{date('Y-m-d H:i:s',$order['pay_time'])}} {{$order['pay_fee'] ?? ''}}
@if ( !empty($order['orders_dial'][0]) ) @foreach ($order['orders_dial'] as $a) @endforeach @endif
表盘ID 购买数量 购买单价
ID:{{$a['dial_id']}} {{$a['buy_num']}}件 {{$a['buy_price']}}元
@endsection