@extends('layouts.shop') @push('schema_markup') @php $homeSchema = \App\Models\SeoSetting::where('page_name', 'home')->value('schema_markup'); @endphp @if($homeSchema) {!! $homeSchema !!} @endif @endpush @section('content')
@forelse($sliders as $index => $slider)
{{ $slider->alt_text ?? 'Slider Image' }}
@if($slider->link) @endif
@if($slider->link) Shop Now @endif
@empty Hero

Summer Collection

Discover the latest trends in fashion and lifestyle. Elevate your everyday look with our curated selection.

Shop Now
@endforelse @if($sliders->count() > 1)
@foreach($sliders as $index => $slider) @endforeach
@endif

Premium Quality

Sourced from the finest organic farms, ensuring 100% purity and potency in every herb.

Fast Shipping

Quick and reliable delivery to bring fresh organic goodness straight to your doorstep.

Secure Payment

Safe and encrypted transactions for a worry-free shopping experience.

@if(isset($bestSellers) && $bestSellers->count() > 0)
Customer Favorites

Best Sellers of the Month

Discover our most loved products selected by customers like you.

@foreach($bestSellers as $product)
Top Seller
@csrf

{{ $product->name }}

₹{{ number_format($product->sp, 2) }}

@if($product->mrp > $product->sp)

₹{{ number_format($product->mrp, 2) }}

@endif
@endforeach
@endif
Expert Guidance

Book a Video Consultation

Get personalized advice from our experts in the comfort of your home

Schedule Your Session

@if(session('success'))
{{ session('success') }}
@endif
@csrf
No products found.

What You'll Get

  • One-on-one personalized consultation with certified experts
  • Customized product recommendations based on your needs
  • Detailed usage guidelines and lifestyle tips
  • Follow-up support via email for 7 days
  • 30-minute dedicated session via video call

Terms & Conditions

  • Consultations are available Monday to Saturday, 9 AM to 6 PM
  • Please book at least 24 hours in advance
  • Cancellations must be made 12 hours before the scheduled time
  • A stable internet connection and video-enabled device are required
  • Consultation link will be sent via email 1 hour before the session
  • This is for informational purposes only and not a substitute for medical advice

Need Help?

Have questions about booking? Contact our support team at hairnicheindia@gmail.com or call 97811 34384

Browse Collections

@foreach($categories as $category)
@if($category->image_url) {{ $category->name }} @else
@endif

{{ $category->name }}

@endforeach
@if(isset($settings->instagram_feed_url) && $settings->instagram_feed_url)
Follow Us on Instagram

Our Social Feed

{!! $settings->instagram_feed_url !!}
@endif
@forelse($categories as $category)
Discover

{{ $category->name }}

@foreach($category->children as $subcategory) @if($subcategory->subProducts->count() > 0)

{{ $subcategory->name }} Featured Collection

View All
@foreach($subcategory->subProducts as $product)
@csrf

{{ $product->name }}

₹{{ number_format($product->sp, 2) }}

@if($product->mrp > $product->sp)

₹{{ number_format($product->mrp, 2) }}

{{ round((($product->mrp - $product->sp) / $product->mrp) * 100) }}% Off @endif
@endforeach
@endif @endforeach @if($category->children->isEmpty() && $category->products->isNotEmpty())
@foreach($category->products->take(8) as $product)
@csrf

{{ $product->name }}

₹{{ number_format($product->sp, 2) }}

@if($product->mrp > $product->sp)

₹{{ number_format($product->mrp, 2) }}

@endif
@endforeach
@endif
@empty

New Collections Arriving Soon

We are curating the best styles for you. Please check back later for our latest arrivals.

@endforelse
@if(isset($testimonials) && $testimonials->count() > 0)

What Our Clients Say

@foreach($testimonials as $index => $testimonial)
@for($i = 0; $i < 5; $i++) @endfor

"{{ $testimonial->content }}"

{{ $testimonial->name }}

@if($testimonial->designation) {{ $testimonial->designation }} @endif
@endforeach
@foreach($testimonials as $index => $testimonial) @endforeach
@endif @if(isset($recentBlogs) && $recentBlogs->count() > 0)

From Our Blog

Latest insights, health tips, and Ayurvedic wisdom.

@foreach($recentBlogs as $blog)
@if($blog->image) {{ $blog->title }} @else
@endif
{{ $blog->published_at ? $blog->published_at->format('M d, Y') : '' }}

{{ $blog->title }}

{{ $blog->excerpt }}

@endforeach
@endif @endsection