@extends('frontend.layouts.app') @section('meta_title'){{ $detailedProduct->meta_title }}@stop @section('meta_description'){{ $detailedProduct->meta_description }}@stop @section('meta_keywords'){{ $detailedProduct->tags }},{{ $detailedProduct->meta_keywords }}@stop @section('meta') @php $availability = "out of stock"; $qty = 0; if($detailedProduct->variant_product) { foreach ($detailedProduct->stocks as $key => $stock) { $qty += $stock->qty; } } else { $qty = optional($detailedProduct->stocks->first())->qty; } if($qty > 0){ $availability = "in stock"; } @endphp @endsection @section('content')
@include('frontend.product_details.image_gallery')
@include('frontend.product_details.details')
@if ($detailedProduct->auction_product) @include('frontend.product_details.review_section') @include('frontend.product_details.description') @include('frontend.product_details.product_queries') @else
@include('frontend.product_details.seller_info')
@include('frontend.product_details.top_selling_products')
@include('frontend.product_details.review_section') @include('frontend.product_details.description') @include('frontend.product_details.frequently_bought_products') @include('frontend.product_details.product_queries')
@include('frontend.product_details.top_selling_products')
@endif
@include('frontend.smart_bar') @endsection @section('modal') @if($detailedProduct->auction_product == 1) @php $highest_bid = $detailedProduct->bids->max('amount'); $min_bid_amount = $highest_bid != null ? $highest_bid+1 : $detailedProduct->starting_bid; $gst_rate = gst_applicable_product_rate($detailedProduct->id); @endphp @endif @include('modals.size_chart_show_modal') @endsection @section('script') @if(get_setting('show_custom_product_visitors')==1) @endif @endsection