| {{ date('d M, Y',strtotime($item->order_date)) }} |
{{ $item->invoice_id }} |
{{ $item->customer_name }} |
{{ $item->customer_address }} |
{{ $item->customer_phone }} |
{{ $item->total }} |
@foreach($item->get_products as $product)
{{$product->get_product->name}}
@if($product->attributes)
@foreach(json_decode($product->attributes, true) as $key => $attr)
{{$key}} - {{$attr}}
@endforeach
@endif
@endforeach
|
@foreach($item->get_products as $product)
{{$product->qty}}
@endforeach
|
{{$item->get_shipping_method->type}} |
@foreach($item->get_products as $product)
{{$product->get_product->sku}}
@endforeach
|
@endforeach