@extends('layout.index') @section('content')
订单列表
@foreach($order as $k=>$v) @if($v['courier_number']=='') @else @endif @endforeach
订单ID 订单号 快递单号 订单金额 下单时间 状态 操作
{{$v['id']}} {{$v['order_num']}}暂无单号{{$v['courier_number']}}{{$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