@extends('layouts.app') @section('content') {{-- HEADER DA CATEGORIA --}} Início {{ $category->name }} {{ $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 {{-- IMAGE --}} @if($onPromo) Promo @endif @if(!$product->is_available) Esgotado @endif {{-- BODY --}} {{ $product->name }} {{ $product->brand }} {{ $product->model }} {{-- PREÇO --}} @if($onPromo) {{ number_format($oldPrice,2,',','.') }} Kz @endif {{ number_format($finalPrice,2,',','.') }} Kz @empty Nenhum produto disponível nesta categoria. @endforelse @endsection {{-- STYLE --}}
{{ $category->description }}
Nenhum produto disponível nesta categoria.