From b5be111f412eba73b99cf5e7f0a62fd8962c8e52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=92=B2=E7=A1=95?= Date: Fri, 7 Apr 2023 02:03:23 +0000 Subject: [PATCH] !73 Optimize the breadcrumbs of the latest product plugin * Optimize the breadcrumbs of the latest product plugin --- .../Views/shop/latest_products.blade.php | 37 +++++++++---------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/plugins/LatestProducts/Views/shop/latest_products.blade.php b/plugins/LatestProducts/Views/shop/latest_products.blade.php index 5275a7c9..7cec3144 100644 --- a/plugins/LatestProducts/Views/shop/latest_products.blade.php +++ b/plugins/LatestProducts/Views/shop/latest_products.blade.php @@ -1,22 +1,21 @@ @extends('layout.master') - @section('content') -
- - -
- @foreach ($items as $product) -
@include('shared.product')
- @endforeach -
- - {{ $products->links('shared/pagination/bootstrap-4') }} - -
- + +
+
+ @foreach ($items as $product) +
@include('shared.product')
+ @endforeach +
+ {{ $products->links('shared/pagination/bootstrap-4') }} +
@endsection