@extends('layouts.shop') @section('content')

{{ $currentCat && $currentCat->section ? $currentCat->section->title : 'Danh mục sản phẩm' }}


@forelse($products as $product)
@if($product->images->isNotEmpty())
{{ $product->name }} @if($watermarkUrl)
watermark watermark watermark watermark
@endif
@endif

{{ $product->name }}

@empty

Không tìm thấy sản phẩm nào

@endforelse
@endsection