@php $newProductImage = App\Models\Admin\ProductImage::where('product_id', $product->id)->first()->image ?? 'default.jpg'; $ratings = App\Models\ProductRating::where(['product_id' => $product->id, 'status' => 1])->get(); $averageRating = App\Models\ProductRating::where(['product_id' => $product->id, 'status' => 1])->avg('rating'); @endphp
Product Product {{--
--}}

{{ $product->name }}

@if (!empty($product->offer_price)) {{ $product->price }} {{ $product->offer_price }} @else {{ $product->price }} @endif
@php $price = $product->price; $offerPrice = $product->offer_price; @endphp
Order Now