@php $categories=$data['category']; $product_details=$data['product_details']; $public_url= env('Public_Url'); $related_products=$data['related_products']; $child_products=$data['child_products']; $detailing= $data['detailing']; $cart_quantity=1; @endphp @extends('layouts.user-inner') @section('content') @push('custom-styles') @endpush
@if ($product_details->product_title_img)
@endif @if ($product_details->product_img_1)
@endif @if ($product_details->product_img_2)
@endif @if ($product_details->product_img_3)
@endif @if ($product_details->product_img_4)
@endif
@if ($product_details->product_title_img)
@endif @if ($product_details->product_img_1)
@endif @if ($product_details->product_img_2)
@endif @if ($product_details->product_img_3)
@endif @if ($product_details->product_img_4)
@endif
{{$product_details->product_name_en}}
Brand : {{ $product_details->brands->brand_name }}
Availability : @if($product_details->product_stock==0) {{ 'Out Of Stock' }} @elseif($product_details->product_stock<=$product_details->reorder_point) {{ 'Only a few In Stock' }}@else {{ 'In Stock' }} @endif
    @foreach ($detailing as $detail)
  • {{ $detail->spec_description }}
  • @endforeach
@foreach($child_products as $childs) @endforeach
QAR(incl. of all taxes):

QAR @if($product_details->offer_datas) @php $offer_details=$product_details->offer_datas; $offer_price=$offer_details['product_offer_amount']; $offer_percentage=$offer_details['product_offer_percentage']; @endphp {{sprintf("%.2f",$product_details->product_price)}} {{sprintf("%.2f",$offer_price)}} @else {{sprintf("%.2f",$product_details->product_price)}} @endif

@if($product_details->wish_list == 'true') In Wishlist @else Add To Wishlist @endif

{{ $product_details->product_desc_en }}

    @foreach ($detailing as $detail)
  • {{ $detail->spec_description }}
  • @endforeach
@if (count($related_products)>0)

Related products

@endif @push('custom-scripts') @endpush @endsection