@extends('layouts.site') @section('content')

{{$product->product_name ?? ""}}

Product
@for ($i = 0; $i < count($allImagesArr); $i++) {{$image_aliasArr[$i] ?? ''}} @endfor

{{$product->product_name ?? ""}}

SKU: {{$product->product_sku ?? ""}}

₹ {{$product->product_price ?? "Not Available"}}

{{$product->product_description ?? ""}}

Key Features:
  • Length: {{$product->length ?? "Not Available"}} Ft.
  • Width: {{$product->width ?? "Not Available"}} Inches
  • Thickness: {{$product->thickness ?? "Not Available"}} mm
  • Color: {{!empty($product->color) ?ucwords($product->color): "Not Available"}}
  • @if (isset($product->usage_of_panel))
  • Usage Of Panels: {{$product->usage_of_panel == 1 ? "Wall" : "Ceiling"}}
  • @else
  • Usage Of Panels: Not Available
  • @endif @if (isset($product->panel_included))
  • Panel Status: {{$product->panel_included == 1 ? "With Panelling" : "Without Panelling"}}
  • @else
  • Panel Status: Not Available
  • @endif @if (isset($product->instock))
  • Instock: {{$product->instock == 1 ? "Yes" : "No"}}
  • @else
  • Instock: Not Available
  • @endif
@endsection