@php
$categories=$data['category'];
$product_details=$data['product_details'];
$getcolors=$data['getcolors'];
$public_url= env('Public_Url');
$child_products=$data['child_products'];
$main_parent_products=$data['main_parent_products'];
$lens_powers = $data['lens_powers'];
$detailing= $data['detailing'];
$cart_quantity=1;
@endphp
{{$product_details->product_name_en}}
Brand : {{ $product_details->brands->brand_name }}
Color : {{ $product_details->colors->color_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
@if($product_details->parent_product_id == 0)
@else
@endif
@if($product_details->product_size_id == $main_parent_products->product_size_id)
@else
@endif
@if($product_details->product_power == 1)
Choose Lens Power :
@endif
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
{{$product_details->product_price}} {{sprintf("%.2f",$offer_price)}}
@else
{{$product_details->product_price}}
@endif
|||@|||