@if (Session::has("success"))
{{ Session::get("success") }}
@endif
Order Details
Order Id: {{$od->order_id}}
Emp Id: |
{{$od->empid}} |
Name: |
{{$od->empname}} |
Email: |
{{$od->email}} |
Mobile: |
{{$od->mobile}} |
Address:
{{$od->address1}} |
{{$od->address2}} |
{{$od->country}} - {{$od->pcode}} |
@if($od->orderProducts->isNotEmpty())
@foreach($od->orderProducts as $index => $product)
Product {{$index + 1}}
Product |
Size |
Qty |
Image |
Status |
Action |
{{ $product->product }} |
{{ $product->size }} |
{{ $product->qty }} |
|
{{ $product->status }} |
Add
|
@endforeach
@else
No products found for this order.
@endif