@foreach ($sliders as $slider)
Image
@endforeach

Categories

@foreach ($categories as $category) @endforeach

Suggested Product

@foreach ($suggested_products as $suggested_product)
{{--
(14)
--}}

{{ $suggested_product->name }} ({{ $suggested_product->variant }})

₹{{ $suggested_product->discounted_price }} @if ($suggested_product->price != $suggested_product->discounted_price) ₹{{ $suggested_product->price }} @endif
@if (!array_key_exists($suggested_product->slug, $cart_product_slugs)) @else
@endif
@endforeach

Top Selling Product

@php $more_products = App\Models\Product::where('is_active', '1') ->where('category_id', 1) ->latest('id') ->groupBy('product_group_id') ->get(); @endphp

Featured Products

@foreach ($more_products as $more)
{{--
(14)
--}}

{{ $more->name }} ({{ $more->variant }})

₹{{ $more->discounted_price }} @if ($more->price != $more->discounted_price) ₹{{ $more->price }} @endif
@if (!array_key_exists($more->slug, $cart_product_slugs)) @else
@endif
@endforeach
{{--

Franchise Plan

@foreach ($franchise_plans as $key => $franchise_plan)
@php $text_color = 'text-primary'; if ($key === 0) { $text_color = 'text-warning'; } elseif ($key === 1) { $text_color = 'text-primary'; } elseif ($key === 2) { $text_color = 'text-info'; } @endphp
{{ $franchise_plan->name }}

{{ $franchise_plan->formatted_minimum_investment }} - {{ $franchise_plan->formatted_maximum_investment }}

{!! $franchise_plan->short_description !!}
  • {{ $franchise_plan->direct_benifit }} % Direct Benefit
  • {{ $franchise_plan->refund_service_charge }} % Refund Service Charge
@endforeach
--}}

Top Performer

@foreach ($top_performers as $top_performer)
Image
{{ $top_performer->user->name }}
{{ $top_performer->user->user_code }}
@endforeach

All Brands

@foreach ($brands as $brand) @endforeach

Happy Customers

. @foreach ($happy_customers as $happy_customer)
Image
@for ($i = 1; $i <= $happy_customer->star; $i++) @endfor

{{ $happy_customer->name }}

{{ $happy_customer->message }}

@endforeach
{{--

Free Shipping & Returns

For all orders over ₹199.00

Secure Payment

We ensure secure payment

Money Back Guarantee

Returning money 30 days

24/7 Customer Support

Friendly customer support

--}}
@push('scripts') @endpush