@extends('front::layouts.app') @section('title', 'Product Recommendations - ' . config('app.name')) @section('content')

Product Recommendations

Discover products tailored just for you based on your preferences and behavior.

Recommendation Types

Choose how you'd like to discover new products

{{ $recommendationType }} Recommendations

@if($type == 'ai') These recommendations are powered by artificial intelligence, analyzing your browsing history, purchases, and preferences to suggest products you'll love. @elseif($type == 'collaborative') Based on what users with similar tastes have liked and purchased, helping you discover products that match your style. @else Currently popular products based on recent views, purchases, and user engagement across our platform. @endif

@if($totalCount > 0)

{{ $totalCount }} Recommended Products

View:
@foreach($recommendations as $product)
@if($product->getFirstMediaUrl('images')) {{ $product->title }} @else
@endif
Recommended

{{ $product->title }}

@if($product->special_price) ${{ number_format($product->special_price, 2) }} ${{ number_format($product->price, 2) }} @else ${{ number_format($product->price, 2) }} @endif
Stock: {{ $product->stock > 0 ? 'In Stock' : 'Out of Stock' }}
@endforeach
@else

No recommendations available

@if($type == 'ai') We need more information about your preferences to provide AI-powered recommendations. Try browsing some products or making a purchase. @elseif($type == 'collaborative') We're still learning about user preferences. Check back later for personalized recommendations. @else No trending products available at the moment. Check back later for the latest popular items. @endif

@endif

Personalized Shopping

Get recommendations based on your unique preferences and shopping history.

Start Shopping →

Discover New Brands

Explore products from brands you might not have discovered yet.

Explore Brands →

Stay Updated

Get notified about new products and recommendations tailored for you.

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