@extends('customer.layout.master') @section('pageTitle', (isset($pageTitle)) ? $pageTitle : config('app.APP_NAME') ) @section('pageDescription', (isset($pageDescription)) ? $pageDescription : config('app.APP_NAME') ) @section('pageKeywords', (isset($pageKeywords)) ? $pageKeywords : config('app.APP_NAME') ) @section('noIndex', $product->status == 0 ? true : '') @section('content')
@if (isset($product)) @include('customer.common.breadcrums', ['url_path' => $product->url_postfix, 'name' => $product->name]) @endif
@include('customer.product.media-gallery')
@include('customer.product.product-info')
@if(count($product->getRelatedProducts())) @include('customer.product.related-product', ['items' => $product->getRelatedProducts()]) @endif @if(count($product->getUpSellingProducts())) @include('customer.product.up-selling-product', ['items' => $product->getUpSellingProducts()]) @endif @if(count($product->getCrossSellingProducts())) @include('customer.product.cross-selling-product', ['items' => $product->getCrossSellingProducts()]) @endif
@if($product->getPdpDescription())
{!! $product->getPdpDescription() !!}
@endif @include('customer.schemas.pdp', ['product' => $product]) @endsection