@extends('default.layouts.app') @section('title', isset($product) ? $product->name . ' | Ralph Lauren' : 'Products - Ralph Lauren') @section('content') @if(isset($product)) Skip to main content
@foreach($product->images as $index => $image) @endforeach

{{ $product->name }}

${{ number_format($product->price, 2) }} @if($product->is_new) New Arrival @endif
({{ $product->reviews_count }} Reviews)
@if($product->colors && count($product->colors) > 0)
Color: {{ $product->colors[0]['name'] ?? '' }}
@foreach($product->colors as $index => $color) @endforeach
@endif @if($product->sizes && count($product->sizes) > 0)
Size: Select Size
@foreach($product->sizes as $size) @endforeach
@endif
@csrf
Find in Store

Free Fast Shipping

Sign in to your Ralph Lauren account for complimentary shipping on all orders.

{!! nl2br(e($product->description)) !!}

Enjoy free returns and exchanges within 30 days of the order shipment date. Items must be unwashed, unworn, and unaltered with the original tags.

Select the gift option at checkout to include a personalized message and our signature navy box.

Complete The Look

@foreach($recommendations as $rec)
{{ $rec->name }}

{{ $rec->name }}

${{ number_format($rec->price, 2) }}

@endforeach
@else

Our Products

Discover our collection of premium fashion items

@foreach($products as $index => $product)
{{ $product->name }}

{{ $product->name }}

{{ $product->category->name }}

${{ number_format($product->price, 2) }}

@endforeach
{{ $products->links() }}
@endif @endsection