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)
|
Is Active | {{ ($product->is_active) ? 'Yes': 'No' }} |
Created At | {{ $product->created_at }} |
Updated At | {{ $product->updated_at }} |
Serving Size | {{ $productServingSize->servingSize ? $productServingSize->servingSize->title : "N/A" }} | Price | Rs. {{ $productServingSize->price }} | Strike Price | Rs. {{ $productServingSize->strike_price }} | @foreach($productServingSize->productServingSizeAddons as $productServingSizeAddon)Addons | {{ $productServingSizeAddon->addon ? $productServingSizeAddon->addon->title : "N/A" }} | @endforeach @endforeach
---|