@extends('layouts.app') @section('content') @php // Handle both single product and multiple products scenarios $productList = isset($product) ? collect([$product]) : $products; @endphp @if($productList->count() > 0) @foreach($productList as $index => $product)
{{ ucfirst($product->name) }}
{{ $product->brand->name ?? 'Blinds' }} More Details
From £{{$product->start_from}}
@php $avgRating = $product->averageRating(); $fullStars = floor($avgRating); $hasHalfStar = ($avgRating - $fullStars) >= 0.5; @endphp @for($i = 1; $i <= 5; $i++) @if($i <= $fullStars) @elseif($i == $fullStars + 1 && $hasHalfStar) @else @endif @endfor
({{ $product->totalReviews() }} reviews)

{{ $product->short_description ?? 'High-quality blinds perfect for any room.' }}

Select Installation Method

Enter Your Measurements

@if(isset($optionTypes)) @foreach($optionTypes as $option)

{{ $option->name }}

@foreach($option->optionValues as $val) @endforeach
@endforeach @endif
delivery
Delivery
Just £9.99 for your entire order.
paypal
Payment
Buy now, pay
later.
shield
SizeSure Cover
FREE replacement blinds. Just £19.95.

Features & Benefits

Product Information

About {{ $product->name }}
{{ $product->description ?? "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. " }}
The Intricate Breakdown
Specifications
Measuring for your new window coverings is quick and effortless.
Simply follow our easy step-by-step guides. Download Specifications

Top Picks for You

What Our Customers Say

@if($product->reviews->count() > 0)

Customer Reviews for {{ $product->name }}

@foreach($product->reviews->take(3) as $review)
@for($i = 1; $i <= 5; $i++) @if($i <= $review->rating) @else @endif @endfor
@if($review->is_verified)
Verified
@endif
{{ $review->title }}
{{ $review->comment }}
@endforeach
@endif @endforeach @else

No Products Found

No products match your criteria. Please try different filters.

View All Products
@endif @endsection