@section('content') Dear customer,

Thank you for your purchase.

This is a confirmation email that we have received and accepted your order.

@foreach($order_items as $order_item) @if ($order_item->book) @elseif ($order_item->orderShipmentPostage) @elseif ($order_item->orderShipmentCondition) @endif @endforeach
ORDER NUMBER: {{$order->order}}
{{trans('website.labels.product')}} {{trans('website.labels.quantity')}} {{trans('website.labels.item-price')}} {{trans('website.labels.price')}}
{{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}}
{{$order_shipments[$order->order_shipment_id]->title($language->id)}} {{$order_shipments[$order->order_shipment_id]->title($language->id)}} {{$order_item['quantity']}} {{number_format($order_item['price_item'], 2, ',', ' ')}} € {{number_format($order_item['price'], 2, ',', ' ')}} €
{{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

Order received: {{date('d.m.Y H:i', strtotime($order->created_at))}}

@if ($order->orderPayment->type == 'ecard' || $order->orderPayment->type == 'epay') Your order will be processed within 6 workdays after receiving. You will receive confirmation email about crediting your payment to VEDA bank account and about dispatch of your order. In case of any problem with delivery we will contact you. You can follow the processing of your order also at www.veda.sav.sk in "My profile” section.

@elseif ($order->orderPayment->type == 'deposit') Your order will be processed within 6 workdays after receiving your payment. You will receive confirmation email about crediting your payment to VEDA bank account (see below the data for payment) and about dispatch of your order. In case of any problem with delivery we will contact you. You can follow the processing of your order also at www.veda.sav.sk in “My profile” section.

Bank subject: {{Config::get('website.veda.bank-name')}}
Name of account: {{Config::get('website.veda.account-name')}}
IBAN: {{Config::get('website.veda.iban')}}
BIC (SWIFT): {{Config::get('website.veda.bic')}}
Variable symbol: {{$order->order}}
Constant symbol: {{Config::get('website.veda.constant-symbol')}}

@elseif ($order->orderPayment->type == 'banking') Your order will be processed within 6 workdays after receiving your payment. You will receive confirmation email about crediting your payment to VEDA bank account and about dispatch of your order. In case of any problem with delivery we will contact you. You can follow the processing of your order also at www.veda.sav.sk in “My profile” section.

Bank subject: {{Config::get('website.veda.bank-name')}}
Name of account: {{Config::get('website.veda.account-name')}}
IBAN: {{Config::get('website.veda.iban')}}
BIC (SWIFT): {{Config::get('website.veda.bic')}}
Variable symbol: {{$order->order}}
Constant symbol: {{Config::get('website.veda.constant-symbol')}}

@elseif ($order->orderPayment->type == 'cash') Your order will be processed within 6 workdays after receiving. You will receive confirmation email about dispatch of your order. In case of any problem with delivery we will contact you. You can follow the processing of your order also at www.veda.sav.sk in “My profile” section.

@endif Best wishes,
VEDA,
Publishing House of the Slovak Academy of Sciences

@stop