@extends('frontend.layouts.app') @section('meta_title'){{ $detailedProduct->meta_title }}@stop @section('meta_description'){{ $detailedProduct->meta_description }}@stop @section('meta_keywords'){{ $detailedProduct->tags }}@stop @section('meta') @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.related_products') @include('frontend.product_details.product_queries')
@include('frontend.product_details.top_selling_products')
@endif
@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; @endphp @endif @endsection @section('script') @endsection