@extends('layouts.main',['title'=>'Product Information']) @section('head') @endsection @section('content')
@if($product)
@if(!empty($product['images']))
@foreach($product['images'] as $img)
@endforeach
@foreach($product['images'] as $img)
@endforeach
@endif
@php $rating = $product->member->rounded_rating ?? 0; $fullStars = floor($rating); // Number of full stars $halfStar = ($rating - $fullStars) >= 0.5 ? true : false; // Check for half star $emptyStars = 5 - $fullStars - ($halfStar ? 1 : 0); // Remaining empty stars @endphp {{-- Full Stars --}} @for ($i = 0; $i < $fullStars; $i++) Full Star @endfor {{-- Half Star --}} @if ($halfStar) Half Star @endif {{-- Empty Stars --}} @for ($i = 0; $i < $emptyStars; $i++) Empty Star @endfor {{ $product->member->ratings_avg_cbr_rating ? number_format($product->member->ratings_avg_cbr_rating, 1) . ' Ratings' : 'No reviews yet' }}
Member Since {{ date('M d, Y', strtotime($product['member']['cbmCreatedAt'])) }}
  • Seller name: {{ $product['member']['cbmName'] }}
  • Platform: {{ $product['member']['cbmMarketPlaces'] }}
  • Seller store: {{ $product['member']['cbmStoreUrls'] }}

Welcome to {{ @$settings['lookup_welcome_label'] }} Lookup!

The information displayed here highlights a seller who is part of our Community Branding Program. While {{ @$settings['lookup_welcome_label'] }} trusts this seller, we are not directly affiliated with them and do not assume responsibility for their products or services.

{{ $product['member']['cbmName'] }} is a registered member of {{ @$settings['lookup_welcome_label'] }}'s Branding program

@else
No matching product found
@endif
@endsection @section('script') @if($product) @endif @endsection