@foreach(@$orderDetails->orders as $pro)
{{ $pro->product_qty }} {{ $pro->product_name }}
Code - {{ $pro->product_code }}
@if($pro->product_size)
Size - {{ $pro->product_size }}
@endif
Delivery On : {{ $pro->pro_del_date }} - {{ $pro->pro_del_time }}
@if($pro->product_main_price != $pro->product_price)
INR {{ $pro->product_main_price }}
@if($pro->pro_type == 'Eggless')
+50Rs. (Eggless)
@endif
@if($pro->heart_shape == 'Heart Shape')
+100Rs.(Heart Shape)
@endif
@if($pro->photo_cake == 'Photo Cake')
+250Rs.(Photo Cake)
@endif
= INR {{ $pro->product_price }}
@else
INR {{ $pro->product_price }}
@endif
@endforeach
Order Status
@if($orderDetails->order_status == 'New')
- New
- Pending
- In Progresh
- Shipped
- Delivered
@endif
@if($orderDetails->order_status == 'Pending')
- New
- Pending
- In Progresh
- Shipped
- Delivered
@endif
@if($orderDetails->order_status == 'In Progresh')
- New
- Pending
- In Progresh
- Shipped
- Delivered
@endif
@if($orderDetails->order_status == 'Shipped')
- New
- Pending
- In Progresh
- Shipped
- Delivered
@endif
@if($orderDetails->order_status == 'Delivered')
- New
- Pending
- In Progresh
- Shipped
- Delivered
@endif
@if($orderDetails->order_status == 'Cancelled')
@endif