@extends('layouts.app') @section('content')
 {{ Lang::get('core.btn_back') }}
Order Placed: {{$orderDate->formatLocalized('%B %d, %Y')}}
Order Number: {{$orderId}}
Order Total: ${{$orderTotal}}

@foreach($orderItems['Item'] as $item) @endforeach
Items Ordered Price
{!! $item["ThumbnailURL"] !!} {{$item["Quantity"]}} of: {{$item["Description"]}} @if(count($item["SelectedOptionList"]))
Options: @foreach($item["SelectedOptionList"]["Option"] as $option) {{dd($options)}} {{$option["Name"]}} : {{$option["Value"]}} @endforeach
@endif
${{$item["UnitPrice"]}}
Shipping Address:
{{$orderShipAddr1}}
@if(!empty($orderShipAddr2))
{{$orderShipAddr2}}
@endif
{{$orderShipCity .', '. $orderShipState . ' ' . $orderShipZip}}
{{$orderShipCountry}}
@stop