@extends('layouts.app') @section('page-title', !empty($productInfo['title']) ? strip_tags($productInfo['title']) : strip_tags($productInfo['product_description'])) @section('meta-description', !empty($productInfo['product_description']) ? strip_tags($productInfo['product_description']) : strip_tags($productInfo['title'])) @section('meta-keyword', $productInfo['manufacturer_part_number'], $productInfo['manufacturer_part_number'] . ' ' . $productInfo['brand_name'], $productInfo['brand_name'] . ' ' . $productInfo['manufacturer_part_number']) @section('head-scripts') @endsection @section('body-content')
@if (session('success'))
{{ session('success') }}
@elseif(session('error'))
{{ session('error') }}
@endif
@if (!empty($productInfo['title']) || !empty($productInfo['product_description']))

{{ !empty($productInfo['title']) ? strip_tags($productInfo['title']) : strip_tags($productInfo['product_description']) }}

@endif @if (!empty($productInfo['product_description']))

{{ substr(strip_tags($productInfo['product_description']), 0, 150) }}...

@endif
@if (!empty($overview)) @endif
@if (!empty($product_price))
${{ number_format($product_price['web_price'], 2) }}
${{ number_format($product_price['list_price'], 2) }} @if ($product_price['list_price'] > 0 && $product_price['web_price'] > 0) {{ 100 - round(($product_price['web_price'] / $product_price['list_price']) * 100) }}% @endif
@endif
Availability : @if (!empty($product_price) && $product_price['stock'] > 0)
In Stock
@else
Limited Availability
@endif
Mfr. Part# :
{{ $productInfo['manufacturer_part_number'] }}
@if ($productInfo['is_license_require'])

{{ config('constants.license_require') }}

@endif {{--
Manufacturer :
{{ $productInfo['brand_name'] }}
--}}
@if (!empty($product_price) && !empty($product_price['web_price']))
Quantity :
@endif
@if (!empty($product_price) && !empty($product_price['web_price'])) @endif
{{--
--}}
@include('sections.brands') @include('product.partials.single-rfq-popup') @include('product.partials.single-product-cart-popup') @endsection @section('scripts-only') @include('product.partials.product-schema') @endsection