@if($error_msg)
{{ $error_msg }}
@elseif($success_msg)
{{ $success_msg }}
@else
@endif
@php($pay_type = [1 => '微信支付', 2 => '余额支付', 3 => '积分支付', 4 => '货到付款'])
@if($order)
- 订单编号:{{ $order->order_num }}
- 客户姓名:{{ $order->name }}
- 客户电话:{{ substr_replace($order->tel, '****', 3, 4) }}
- 客户地址:{{ $order->address }}
- 订单备注:{{ $order->note }}
- 付款金额:{{ $order->money }}
- 订单金额:{{ $order->total_money }}(不含配送费)
- 支付方式:{{ $pay_type[$order->pay_type] ?? '' }}
- 下单时间:{{ date('Y-m-d H:i:s', $order->created_at) }}
- 付款时间:{{ $order->pay_time ? date('Y-m-d H:i:s', $order->pay_time) : '' }}
@endif