@extends('layouts.app')
@section('title', 'Recommendations')
@section('content')
Recommended Products
@if (!empty($recommendations))
Product Name |
Primary Key |
@foreach ($recommendations as $recommendation)
{{ $recommendation['Produk'] }} |
{{ $recommendation['primary_key'] }} |
@endforeach
@else
No recommendations available for this product.
@endif
© {{ date('Y') }} Hearteuhearteu. All rights reserved.
@endsection