@extends('frontend.layouts.app') @section('title', 'Home Page') @section('content')

Curated for You.

Discover our exclusive collection of premium products.

Explore Now

Our Best Sellers

@foreach ($products as $product)
{{-- Product Image --}} {{ $product->name }}

{{ $product->name }}

{{-- Product Description --}}

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

{{-- Product Price --}}
₹{{ number_format($product->price, 2) }}
View Details
@endforeach
@endsection