ID {{ $product->id }}
Title {{ $product->title }}
Category {{ $product->category_id }}
Discount {{ $product->discount_id }}
Discount Start Time {{ $product->discount_datetime_start }}
Discount End Time {{ $product->discount_datetime_end }}
Image @foreach($product->images as $image) @endforeach
Is Active {{ ($product->is_active) ? 'Yes': 'No' }}
Created At {{ $product->created_at }}
Updated At {{ $product->updated_at }}

Serving Size Detail

@foreach($product->productServingSizes as $productServingSize) @foreach($productServingSize->productServingSizeAddons as $productServingSizeAddon) @endforeach @endforeach
Serving Size {{ $productServingSize->servingSize ? $productServingSize->servingSize->title : "N/A" }} Price Rs. {{ $productServingSize->price }} Strike Price Rs. {{ $productServingSize->strike_price }}Addons {{ $productServingSizeAddon->addon ? $productServingSizeAddon->addon->title : "N/A" }}