and this is another page called products.blade.php
@foreach ($product->relatedProducts->take(3) as $item)
<div class="col-lg-4 col-md-6 text-center">
<div class="single-product-item">
<div class="product-image">
<a href="{{ route('product.show', $item->id) }}"><img src="{{ asset($item->imgpath) }}" alt=""></a>
</div>
<h3>{{ $item->name }}</h3>
<p class="product-price"> {{ $item->price }}$ </p>
<a href="{{ route('cart') }}" class="cart-btn"><i class="fas fa-shopping-cart"></i> Add to Cart</a>
</div>
</div>
@endforeach
</div>
</div>
</div>
<!-- end more products -->```