|
ČÍSLO OBJEDNÁVKY: {{$order->order}}
|
| {{trans('website.labels.product')}} |
{{trans('website.labels.quantity')}} |
{{trans('website.labels.item-price')}} |
{{trans('website.labels.price')}} |
@foreach($order_items as $order_item)
@if ($order_item->book)
|
{{HTML::image($order_item->book->image->url('small'), $order_item->book->title, ['width' => 60, 'height' => 85, 'style' => 'display: block;'])}}
|
{{$order_item->book->title}}
{{$order_item->book->author}}
|
@elseif ($order_item->orderShipmentPostage)
{{$order_shipments[$order->order_shipment_id]->title($language->id)}}
|
@elseif ($order_item->orderShipmentCondition)
{{$order_shipments[$order->order_shipment_id]->title($language->id)}}
|
@endif
{{$order_item['quantity']}} |
{{number_format($order_item['price_item'], 2, ',', ' ')}} € |
{{number_format($order_item['price'], 2, ',', ' ')}} € |
@endforeach
|
{{trans('website.labels.total-price-with-vat')}}:
|
{{number_format($order->price, 2, ',', ' ')}} € |
| {{trans('website.labels.payment-method')}}: |
{{$order->orderPayment->title($language->id)}} |
|
| {{trans('website.labels.shipment-method')}}: |
{{$order->orderShipment->title($language->id)}} |
|
{{trans('website.labels.personal-information')}}
{{$order->email}}
{{$order->phone_number}}
|
{{trans('website.labels.billing-address')}}
{{$order->first_name}} {{$order->last_name}}
@if (!empty($order->billing_company))
{{$order->billing_company}}
@endif
{{$order->billing_street}}
{{$order->billing_postcode}}, {{$order->billing_city}}
{{$order_countries[$order->billing_country]}}
@if (!empty($order->billing_ico) && !isGeneratedIco($order->billing_ico))
{{trans('website.labels.ico')}}: {{$order->billing_ico}}
@endif
@if (!empty($order->billing_dic))
{{trans('website.labels.dic')}}: {{$order->billing_dic}}
@endif
@if (!empty($order->billing_icdph))
{{trans('website.labels.icdph')}}: {{$order->billing_icdph}}
@endif
|
{{trans('website.labels.shipping-address')}}
@if ($order->orderShipment->type=='post-address' || $order->orderShipment->type=='post-office' || $order->orderShipment->type=='post-box' || $order->orderShipment->type=='courier-dhl' || $order->orderShipment->type=='post-czech' || $order->orderShipment->type=='post-europe')
@if ($order->orderShipment->type!='post-office' && $order->orderShipment->type!='post-box')
{{$order->shipment_first_name ? $order->shipment_first_name : $order->first_name}}
{{$order->shipment_last_name ? $order->shipment_last_name : $order->last_name}}
@endif
@if (!empty($order->shipment_company))
{{$order->shipment_company}}
@endif
{{$order->shipment_street}}
{{$order->shipment_postcode}}, {{$order->shipment_city}}
{{$order_countries[$order->shipment_country]}}
@else
{{$order->orderShipment->title($language->id)}}
@endif
|
|