@extends('admin.public.base') @section('body_class') style="margin: 0 auto;width: 96%;padding: 30px 0px;" @endsection @section('content') @if(check_auth('admin/lottery_order_product/add')) @endif
重置
@foreach ($list as $a) @endforeach
范围ID 商品编码 商品名称 所属活动 状态 修改时间 操作
{{$a['id']}} {{$a['product_code']}} {{$a['product_name']}} {{$a['lottery_name']}} {{$a['status']?'停用':'启用'}} {{date('Y/m/d H:i:s',$a['update_time'])}} @if(check_auth('admin/lottery_order_product/edit')) 编辑 @endif @if(check_auth('admin/lottery_order_product/set_status')) @if($a['status']) 启用 @else 停用 @endif @endif
{{$list->render()}}
总计 {{$list->total()}} 个商品
@endsection