@extends('admin.layouts') @section('css') @endsection @section('content')

商品列表

@can('admin.goods.create') @endcan
重 置
@foreach($goodsList as $goods) @endforeach
# 名称 类型 图片 内含流量 售价 排序 热销 限购数 状态 操作
{{$goods->id}} {{$goods->name}} @if($goods->type === 1) 流量包 @elseif($goods->type === 2) 套餐 @else 充值 @endif @if($goods->logo) logo @endif {{$goods->traffic_label}} {{$goods->price}}元 {{$goods->sort}} @if($goods->is_hot) @else @endif {{$goods->limit_num}} @if($goods->status) 上架 @else 下架 @endif @canany(['admin.goods.edit', 'admin.goods.destroy'])
@can('admin.goods.edit') @endcan @can('admin.goods.destroy') @endcan
@endcanany
@endsection @section('javascript') @endsection