@extends('layouts.app') @section('content') {{-- HEADER DA CATEGORIA --}}

{{ $category->name }}

@if($category->description)

{{ $category->description }}

@endif
{{-- LISTAGEM --}}
{{ $products->count() }} produtos encontrados
@forelse($products as $product) @php $image = $product->images->first(); $now = now(); $onPromo = $product->promo_price && $product->promo_start && $product->promo_end && $now->between($product->promo_start, $product->promo_end); $oldPrice = $product->price; $finalPrice = $onPromo ? $product->promo_price : $product->price; @endphp @empty

Nenhum produto disponível nesta categoria.

@endforelse
@endsection {{-- STYLE --}}