@extends('web.layouts.base') @section('add_css') @endsection @section('content')

个人中心

@include('web.layouts.user_menu')
@if(count($order)>0) @foreach($order as $k=>$v)
订单号:{{ $v->order_sn }}
订单名称
{{ $v->name }}
订单金额
{{ $v->order_money }}
购买日期
{{ $v->order_at }}
订单状态
{{ config('adconfig.order_status')[$v->status] }}
备注
{{ $v->mark }}
@endforeach @else
无记录
@endif
@endsection @section('foot_js') @endsection