27 lines
922 B
PHP
27 lines
922 B
PHP
@extends('layout.master')
|
|
@section('body-class', 'page-categories')
|
|
@section('title', $category->description->meta_title ?: system_setting('base.meta_title', 'BeikeShop开源好用的跨境电商系统 - BeikeShop官网') .' - '. $category->description->name)
|
|
@section('keywords', $category->description->meta_keywords ?: system_setting('base.meta_keyword'))
|
|
@section('description', $category->description->meta_description ?: system_setting('base.meta_description'))
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
|
|
<x-shop-breadcrumb type="category" :value="$category" />
|
|
|
|
<div class="row">
|
|
@if (count($products_format))
|
|
@foreach ($products_format as $product)
|
|
<div class="col-6 col-md-3">@include('shared.product')</div>
|
|
@endforeach
|
|
@else
|
|
<x-shop-no-data />
|
|
@endif
|
|
</div>
|
|
|
|
{{ $products->links('shared/pagination/bootstrap-4') }}
|
|
|
|
</div>
|
|
|
|
@endsection
|