Pedido #{{$order->id}}

Estado

{{$order->status()}}

Fecha

{{App\Libraries\Fnx::humanDate($order->created_at)}}

Dirección de envio

  • {{$order->shipping_surname}}, {{$order->shipping_name}}
  • {{$order->shipping_adress}}
  • {{$order->shipping_zipcode}}, {{$order->shipping_city}} ({{$order->shipping_province}})
  • @if($country_ship)
  • {{$country_ship->name}} @if($zone_ship) ({{$zone_ship->name}}) @endif
  • @endif
  • {{$order->shipping_phone}}
  • {{$order->shipping_mail}}

Dirección de facturación

  • {{$order->billing_surname}}, {{$order->billing_name}}
  • {{$order->billing_adress}}
  • {{$order->billing_zipcode}}, {{$order->billingcity}} ({{$order->billing_province}})
  • @if($country_bill)
  • {{$country_bill->name}} @if($zone_bill) ({{$zone_bill->name}}) @endif
  • @endif
  • {{$order->billing_phone}}
  • {{$order->billing_mail}}

@foreach ($order->lines() as $line) @endforeach @if($order->shipping>0) @endif @if($order->discount>0) @endif
Cantidad Producto Precio unitario
{{$line->quantity}} {{$line->name}} {{App\Libraries\Fnx::printPrice($line->unit_price)}}
Subtotal {{App\Libraries\Fnx::printPrice($order->subtotal)}}
IVA {{App\Libraries\Fnx::printPrice($order->taxes)}}
Gastos Envío {{App\Libraries\Fnx::printPrice($order->shipping)}}
Descuento {{App\Libraries\Fnx::printPrice($order->discount)}}
TOTAL {{App\Libraries\Fnx::printPrice($order->subtotal+$order->taxes+$order->shipping)}}

@foreach($order->statusHistory() as $hist) @endforeach
{{Lang::get('shop::admin.datechange')}} {{Lang::get('shop::admin.status')}}
{{App\Libraries\Fnx::humanDate($hist->created_at)}} {{Lang::get('shop::status.'.OrderStatus::find($hist->status_id)->name)}} {{$hist->external_comment}}