{{Lang::get('shop::admin.order_num')}} #{{$order->id}}
{{$header}}
{{Lang::get('shop::admin.status')}}
{{$order->status()}}
{{Lang::get('shop::admin.shipping_info')}}
{{$order->shipping_name}}
{{$order->shipping_adress}}
{{$order->shipping_city}}, {{$order->shipping_zipcode}} {{$order->shipping_province}}
@if(Zones::find($order->shipping_zone_id)) {{Zones::find($order->shipping_zone_id)->name}}
@endif {{$order->shipping_phone}}, {{$order->shipping_mail}}

Resumen del pedido

@foreach($order->lines as $line) @endforeach
{{$line->name}} @if($line->quantity > 0)
cantidad : {{$line->quantity}} @endif
{{App\Libraries\Fnx::printPrice($line->unit_price)}}
@if($order->shipping > 0) @endif @if($order->discount > 0) @endif @if($order->taxes > 0) @endif
{{Lang::get('shop::admin.subtotal')}} {{App\Libraries\Fnx::printPrice($order->subtotal)}}
{{Lang::get('shop::admin.shipping')}} {{App\Libraries\Fnx::printPrice($order->shipping)}}
{{Lang::get('shop::admin.discount')}} {{App\Libraries\Fnx::printPrice($order->discount)}}
{{Lang::get('shop::admin.taxes')}} {{App\Libraries\Fnx::printPrice($order->taxes)}}
{{Lang::get('shop::admin.total')}} {{App\Libraries\Fnx::printPrice($order->subtotal+$order->shipping - $order->discount)}}

{{Lang::get('shop::admin.billing_info')}}
{{$order->billing_name}}
{{$order->billing_adress}}
{{$order->billing_city}}, {{$order->billing_zipcode}} {{$order->billing_province}}
@if(Zones::find($order->billing_zone_id)) {{Zones::find($order->billing_zone_id)->name}}
@endif {{$order->billing_phone}}, {{$order->billing_mail}}
{{Lang::get('shop::admin.payment_method')}}
{{PaymentMethods::find($order->payment_method)->name}}
{{$footer}}

{{App\Libraries\Fnx::get('sitename')}}