@extends('admin.public.base') @section('body_class') style="margin: 0 auto;width: 96%;padding: 30px 0px;" @endsection @section('content')
重置
@foreach ($list as $a) @endforeach
产品编码 产品名称 规格 产品价格 剩余库存 产品销量 产品库存 产品状态 服务城市 排序 限购数量 修改时间 操作
{{$a['product_code']}} {{$a['name']}} {{$a['spec']}} {{$a['market_price']}} ¥{{$a['price']}} {{$a['stock']}} {{$a['sales_total']}} {{$a['stock_total']}} {{$a['status']?'已下架':'已上架'}} {{$a['city_name']}} @if(check_auth('admin/product/set_sort')) @else {{$a['sort']}} @endif {{$a['quota']}} {{date('Y/m/d H:i:s',$a['update_time'])}} @if(check_auth('admin/product/edit')) 编辑 @endif @if(check_auth('admin/product/copy')) 复制 @endif @if(check_auth('admin/product/set_status')) @if ($a['status']) 上架 @else 下架 @endif @endif @if(check_auth('admin/product/get_poster')) 海报 @endif
{{$list->render()}}
总计 {{$list->total()}} 个产品
@endsection @section('javascript') @endsection