@extends('layouts.app') @php $viewMode = request('view', 'grid'); $pricingOptions = [ '' => '全部收费类型', 'free' => '免费', 'paid' => '付费', 'subscription' => '订阅', 'trial' => '试用', ]; @endphp @section('content')
网格 列表
@if($products->total() > $moreThreshold)
该分类内容较多 查看更多
@endif @if($viewMode === 'list')
@forelse($products as $product)
{{ $product->name }}
{{ $product->summary }}
@empty
暂无产品
@endforelse
@else
@forelse($products as $product) @include('partials.product-card', ['product' => $product]) @empty
暂无产品
@endforelse
@endif @endsection