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}}
|
Cantidad
|
Producto
|
Precio unitario
|
@foreach ($order->lines() as $line)
|
{{$line->quantity}}
|
{{$line->name}}
|
{{App\Libraries\Fnx::printPrice($line->unit_price)}}
|
@endforeach
|
|
Subtotal
|
{{App\Libraries\Fnx::printPrice($order->subtotal)}}
|
|
|
IVA
|
{{App\Libraries\Fnx::printPrice($order->taxes)}}
|
@if($order->shipping>0)
|
|
Gastos Envío
|
{{App\Libraries\Fnx::printPrice($order->shipping)}}
|
@endif
@if($order->discount>0)
|
|
Descuento
|
{{App\Libraries\Fnx::printPrice($order->discount)}}
|
@endif
|
|
TOTAL
|
{{App\Libraries\Fnx::printPrice($order->subtotal+$order->taxes+$order->shipping)}}
|
|
{{Lang::get('shop::admin.datechange')}}
|
{{Lang::get('shop::admin.status')}}
|
|
@foreach($order->statusHistory() as $hist)
|
{{App\Libraries\Fnx::humanDate($hist->created_at)}}
|
{{Lang::get('shop::status.'.OrderStatus::find($hist->status_id)->name)}}
|
{{$hist->external_comment}}
|
@endforeach