@extends('front::layouts.master') @section('title', 'Home - ' . ($settings['site-name'] ?? 'E-commerce Website')) @section('description', $settings['short_des'] ?? 'Modern e-commerce website with advanced features') @section('content')
@if(isset($products) && $products->count() > 0) @foreach($products->take(8) as $product)
{{ $product->title }} @if($product->discount > 0) {{ $product->discount }}% OFF @endif

{{ $product->title }}

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

{{ number_format($product->price, 2) }} {{ config('app.currency', '$') }} Add to Cart
@endforeach @else

No products available

Check back later for new products!

@endif

Featured Products

Coming soon - featured products will be displayed here!

Best Sellers

Coming soon - best selling products will be displayed here!

Why Choose Us?

{{ $settings['short_des'] ?? 'We provide the best shopping experience with quality products and excellent service.' }}

Free Shipping

Free shipping on orders over $50. Fast and reliable delivery to your doorstep.

Secure Payment

Your payment information is safe and secure with our encrypted payment system.

Easy Returns

30-day return policy. Easy returns and exchanges for your peace of mind.

24/7 Support

Round-the-clock customer support to help you with any questions or concerns.

@endsection @push('scripts') @endpush