@extends('layout.backend.main') @section('content')
{{$brand->companyname}}
{{$brand->address}}, {{$brand->postcode}} {{$brand->city}} {{$brand->province}}
{{$brand->country}}
T {{$brand->telephone}}
E {{$brand->email}}
W {{$brand->website}}

{{ trans('x.Agent') }}

{{$order->user->profile->companyname}}

{{ trans('x.Date') }}

{{\Carbon\Carbon::now()->format('d/m/Y H:i')}}

@if ($order->userIsOwnerOrManager()) @endif

Cliente

{{$order->customer->companyname}}

@if ($order->customer->name !== '')

rif {{$order->customer->name}}

@endif

Dati di fatturazione

{{$order->customer->address}}, {{$order->customer->postcode}} {{$order->customer->city}} {{$order->customer->province}}

P.Iva/CF {{$order->customer->vat}}

Dati di spedizione

{{$order->delivery->address}}, {{$order->delivery->postcode}} {{$order->delivery->city}} {{$order->delivery->province}}

{{ trans('x.Price List') }}

{{ $order->price_list->name }}

{{ trans('x.Season') }}

{{ $order->season->name }}

{{ trans('x.Delivery Date') }}

{{ $order->season_delivery->name }}

{{ trans('x.Payment Conditions') }}

{{ $order->payment->name }}

{{ trans('x.Products type') }}

{{ trans('x.'.$order->type) }}

{{ trans('x.Notes') }}

{{$order->note}}

{{ trans('x.Details') }}:

{{-- check customs --}} @if (X::brandInUseSlug() == 'divisibile') @include('customs.divisibile.steps._4.details_tables') @else @include('sections.orders.steps._4.details_tables') @endif

N. {{ trans('x.Pieces') }}

{{$order->items_qty}}

{{ trans('x.Subtotal') }}

{{ trans('x.Variation') }} {{$order->payment->action}}{{$order->payment->amount}}%

{{X::priceFormat($order->subtotal)}} €

{{X::priceFormat($order->subtotal/100*$order->payment->amount)}} €

{{ trans('x.Total') }}

{{X::priceFormat($order->total)}} €

@if ($order->season->acceptsOrdersModification())
{{-- n-success btn-lg" style="float:right; margin:2px;">HTML --}} PDF @if ( Auth::user()->can('orders_update') ) {{ trans('x.Edit') }} @endif
@endif
@stop