• Products
      @foreach ($globalCategories as $category)
    • {{ $category->category_title }}
    • @if ($category->childs) @foreach ($category->childs as $child)
    • {{ $child->category_title }}
    • @endforeach @endif @endforeach
  • View Resources
    • Warranty
    • Installation &Maintenance
    • Flooring FAQs
    • Technical Documents
    • Digital Catalog
  • Visualizer
  • Where to Buy
  • Contact US
  • @if (Auth::check())
    • HELLO, {{ Auth::user()->customer_name }}!
    • MY CART
    • MY ORDERS
    • LOG OUT
    @else @endif
    • @foreach (Cart::content() as $cart)
    • @if (count($cart->productData->images) > 0) ... @else @endif
      {{ $cart->name }}
      QTY: 01
    • @endforeach @if (Cart::content()->count() > 0) VIEW SAMPLES @else
      Empty Order
      @endif