@extends('manager.layout.master') @section('body')

吉祥物信息

{{$list->total() ?? count($list)}}
添加吉祥物
@foreach($list as $key=>$vo) @endforeach
图片 名称 分类 状态 价格 库存/销量 推荐 排序 操作
{{$vo->title}}
{{$vo->mascotType->title ?? '-'}}
@if($vo->status == 1) {{$vo->status_text}} @else {{$vo->status_text}} @endif {{$vo->price}} {{$vo->inventory}} / {{$vo->sales_volume}}
@if($vo->is_index == 1) APP首页 @else APP未推 @endif @if($vo->is_mascot == 1) 吉祥首页 @else 吉祥未推 @endif
{{$vo->sort}}
@if($vo->status == 2) 上架 @else 下架 @endif 编辑 删除
@include('manager.include.pageBtn') @stop