@include('layouts.header') @include('layouts.tostMessage')
@csrf

{{ $product->name }}

${{ $product->price }}

{{ $product->description }}

Color
Size
@if($product->stock == 'instock') @else

{{ $product->stock == 'outofstock' ? 'Out of Stock' : 'Coming Soon...' }}

@endif
@auth @endauth
@if($additionalInfo)

{{ $additionalInfo->description }}

  • Weight {{ $additionalInfo->weight }}
  • Materials {{ $additionalInfo->materials }}
  • Construction {{ $additionalInfo->construction }}
  • Fit {{ $additionalInfo->fit }}
  • Size Chart {{ $additionalInfo->size_chart }}
  • Color {{ $additionalInfo->color }}
  • CARE {{ $additionalInfo->care_instructions }}
  • RETURNS & EXCHANGES {{ $additionalInfo->returns_exchanges }}
  • @else
  • No additional information available.
  • @endif
SKU: {{ $additionalInfo ? $additionalInfo->sku : 'N/A' }} Categories: {{ $product->category->category }}

Related Products

@foreach ($relatedProducts as $relatedProduct)
@php $images = explode(',', $relatedProduct->images); @endphp {{ $relatedProduct->name }} Quick View
{{ $relatedProduct->name }} ${{ number_format($relatedProduct->price, 2) }}
@auth ICON ICON @endauth
@endforeach
@include('layouts.footer')