@extends('layout.index') @section('content')
订单列表
@foreach($order as $k=>$v) @endforeach
订单ID 订单号 快递单号 订单金额 下单时间 状态 操作
{{$v['id']}} {{$v['order_num']}} 顺丰:121212121212 {{$v['total']}} {{$v['created_at']}} {{showOrderState($v['status'])}} 查看详情 @if($v['status'] == 2) 点击发货 @elseif($v['status'] == 3) 查看物流 @endif
{!!$order->appends($request)->render()!!}
@endsection @section('myjs') @endsection