logo
{{$subject or ''}}
{!!$header or ''!!}
{{Fnx::translate('shop_order_id')}}
#{{$order->id}}
{{Fnx::translate('admin_shop_order_date')}}
{{Fnx::humanDate($order->created_at)}}
{{Fnx::translate('admin_shop_payment_method')}}
{{Fnx::translate(Girotecnics\FenixShop\Models\PaymentMethods::find($order->payment_method)->translate_key)}}
{{Fnx::translate('admin_status')}}
{{$order->status()}}
{{Fnx::translate('admin_shop_order_shipping_info')}}
{{$order->shipping_surname}}, {{$order->shipping_name}}
{{$order->shipping_address}}
{{$order->shipping_zipcode}} {{$order->shipping_city}}
{{$order->getShippingCountryName()}}
{{Fnx::translate('admin_shop_order_billing_info')}}
{{$order->billing_surname}}, {{$order->billing_name}}
{{$order->billing_address}}
{{$order->billing_zipcode}} {{$order->billing_city}}
{{$order->getBillingCountryName()}}
@if($order->comments !='') @endif
@foreach($order->lines as $line) @endforeach
Item Qty Total
@if($prod_img!='') @endif
{{$line->name}} {{$line->name}}
{{$line->reference}}
{{$line->quantity}} {{Fnx::printPrice($line->unit_price * $line->quantity)}}
Subtotal
{{Fnx::translate('shop_taxes')}}
@if($order->shipping > 0) {{Fnx::translate('shop_shipping_cost')}}
@endif {{Fnx::translate('shop_total')}}
{{Fnx::printPrice($order->subtotal)}}
{{Fnx::printPrice($order->taxes)}}
@if($order->shipping > 0) {{Fnx::printPrice($order->shipping)}}
@endif {{Fnx::printPrice($order->subtotal + $order->taxes + $order->shipping - $order->discount)}}
{{Fnx::translate('shop_comments')}}
{{$order->comments}}

{!!$footer or ''!!}
{{Fnx::get('sitename')}}
{!! nl2br(Fnx::get('address')) !!}