{{-- resources/views/partials/products.blade.php --}}
@forelse ($products as $product)
{{ $product->name }}

{{ $product->name }}

{{ Str::limit($product->description, 40) }}

@if ($product->brand)

{{ $product->brand->name }}

@endif
Rp {{ number_format($product->price, 0, ',', '.') }}
@empty

No products found

Try adjusting your search terms or filters.

@endforelse
{{-- Pagination --}} @if ($products->hasPages())
@endif