@extends('admin.table_layouts') @section('content')
@can('admin.goods.create') {{ trans('common.add') }} @endcan @foreach ($goodsList as $goods) {{ $goods->id }} {{ $goods->name }} @if ($goods->type === 1) {{ trans('admin.goods.type.package') }} @elseif($goods->type === 2) {{ trans('admin.goods.type.plan') }} @else {{ trans('admin.goods.type.top_up') }} @endif color) class="text-white" @endif> @if ($goods->logo) logo @elseif($goods->color) {{ trans('common.none') }} @endif {{ $goods->traffic_label }} {{ $goods->price_tag }} {{ $goods->sort }} {{ $goods->use_count . ' / ' . $goods->total_count }} @if ($goods->is_hot) 🔥 @endif {{ $goods->limit_num ?: trans('common.unlimited') }} @if ($goods->status) {{ trans('admin.goods.status.yes') }} @else {{ trans('admin.goods.status.no') }} @endif @canany(['admin.goods.edit', 'admin.goods.destroy'])
@can('admin.goods.edit') @endcan @can('admin.goods.destroy') @endcan
@endcanany @endforeach
@endsection