@extends('layouts.app') @section('title', 'Prokiti - Home') @push('styles') @endpush @section('content')

Prokrity Shop Products

Earn PV points with every purchase and grow your network

Get instant PV points, commissions, and build your team with our premium products

Shop Now Join Team

Shop by Category

@foreach($categories as $category) @endforeach

Featured Products

@foreach($featuredProducts as $product)
@if($product->image) {{ $product->name }} @else
@endif @if($product->is_new) New @endif @if($product->is_featured) Featured @endif @if($product->is_hot) Hot @endif
{{ Str::limit($product->name, 30) }}

{{ Str::limit($product->short_description, 60) }}

৳{{ number_format($product->price, 2) }} @if($product->mrp_price) ৳{{ number_format($product->mrp_price, 2) }} @endif
{{ $product->pv }} PV
{{ $product->stock_quantity }} in stock {{ $product->category->name ?? 'Uncategorized' }}
@endforeach

New Arrivals

@foreach($newProducts as $product)
@if($product->image) {{ $product->name }} @else
@endif New
{{ Str::limit($product->name, 30) }}
৳{{ number_format($product->price, 2) }}
{{ $product->pv }} PV
View Details
@endforeach

Hot Products

@foreach($hotProducts as $product)
@if($product->image) {{ $product->name }} @else
@endif Hot
{{ Str::limit($product->name, 30) }}

{{ $product->sales_count }} sold

৳{{ number_format($product->price, 2) }}
{{ $product->pv }} PV
@if($product->stock_quantity > 0) @else @endif
@endforeach

Best Sellers

@foreach($bestSellers as $product)
@if($product->image) {{ $product->name }} @else
@endif
{{ Str::limit($product->name, 30) }}
৳{{ number_format($product->price, 0) }}
{{ $product->pv }} PV
@if($product->stock_quantity > 0) @else @endif
@endforeach
@endsection @push('scripts') @endpush