@extends('layouts.base') @section('content')
@foreach($levelList as $list) @endforeach
等级权重 等级名称 升级条件 操作
{{ $list->level }} {{ $list->level_name }} @if(empty($shopSet['level_type'])) @if($list->order_money > 0) 订单金额满{{ $list->order_money }}元 @else 不自动升级 @endif @endif @if($shopSet['level_type'] == 1) @if($list->order_count > 0) 订单数量满{{ $list->order_count }}个 @else 不自动升级 @endif @endif @if($shopSet['level_type'] == 2) @if($list->goods_id) 购买商品[ID:{{ $list->goods_id }}]{{ $list->goods->title }}升级 @else 不自动升级 @endif @endif
{!! $pager !!}
@endsection