@foreach ($orders as $o)
#{{ $o->order_no }}
@if(@$order_from == 6) @endif {{--
{{ resOrderStatus($o->delivery_status) }}
--}}
{{ __('obs.item_qty') }}: {{ $o->total_qty }}
{{ __('obs.total') }}: {{ $o->net_total }}
@foreach ($o->details->where('order_qty', '>', 0) as $d) @endforeach
# {{ __('obs.product') }} {{ __('obs.qty') }} {{ __('obs.price') }}
{{ $loop->iteration }} {{ $d->product->name_eng }} {{ $d->order_qty }}X{{ $d->price }} {{ $d->price*$d->order_qty }}
{{ __('obs.date') }}: {{ date('d-M-Y h:i:A', strtotime($o->date)) }}
To: {{ $o->warehouse->name_eng }}
@if($o->delivery_status == 0) @endif
@endforeach