@extends('layouts.base') @section('title', $title) @section('content')

{{ $title }}

@forelse($products as $p) @include('partials.product-card', ['p' => $p]) @empty

No hay productos.

@endforelse @endsection