@extends('layouts.app') @section('content') {{-- Hero Section --}}

{{ __('home_title') }}

{{ __('home_description') }}

Hero Image
{{-- Features Section --}}
{{ __('Free Shipping') }}

{{ __('On orders over $100') }}

{{ __('Easy Returns') }}

{{ __('30 days return policy') }}

{{ __('Secure Payment') }}

{{ __('100% secure checkout') }}

{{ __('24/7 Support') }}

{{ __('Always here to help') }}

{{-- Categories Section --}}

{{ __('Shop by Category') }}

{{ __('Find what you need in our categories') }}

@forelse($categories as $category)
{{ $category->name }}
{{ $category->name }}

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

{{ __('View Products') }}
@empty
{{ __('No categories available') }}

{{ __('Categories will be displayed here once added') }}

@endforelse
{{-- Featured Products Section --}}

{{ __('Featured Products') }}

{{ __('Check out our top picks') }}

@forelse($featuredProducts as $product)
{{ $product->name }} {{-- Product Badge --}} @if($product->is_featured) {{ __('Featured') }} @endif {{-- Quick View Button --}}
{{ $product->name }}
@php $basePrice = $product->sale_price ?: $product->price; $vatAmount = $basePrice * ($product->tax_rate/100); $customerPrice = $basePrice + $vatAmount; @endphp @if( $product->sale_price > $product->regular_price) ﷼{{ number_format($product->price, 2) }}
﷼{{ number_format($customerPrice, 2) }} @else ﷼{{ number_format($product->price+$vatAmount, 2) }} @endif
{{--
--}} {{-- @for($i = 1; $i <= 5; $i++)--}} {{-- --}} {{-- @endfor--}} {{-- (4.0)--}} {{--
--}}
@empty
{{ __('No featured products available') }}

{{ __('Featured products will be displayed here') }}

@endforelse
@if($featuredProducts->isNotEmpty()) @endif
{{-- Newsletter Section --}}

{{ __('Stay Updated') }}

{{ __('Subscribe to our newsletter and get 10% off your first order') }}

@endsection @push('styles') @endpush @push('scripts') @endpush