@extends('web.include.master') @section('content')
@if (\Session::has('success'))
× {!! \Session::get('success') !!}
@endif @if ($errors->any()) @foreach ($errors->all() as $error)
{{$error}}
@endforeach @endif

View Order

Danke für Ihre Bestellung, {{ ucfirst($ItemData->fname.' '. $ItemData->lname) }} !
Rechnungsadresse

{{ $ItemData->title_type }}, {{ ucfirst($ItemData->fname.' '. $ItemData->lname) }}
Telefon: {{ $ItemData->billing_phone }}
E-Mail-ID: {{ $ItemData->email }}

{{ $ItemData->billing_street_no }},
{{ $ItemData->billing_postcode }}
{{ $ItemData->billing_location }}
{{ $ItemData->billing_county }}
{{ $ItemData->billing_adress }}

@if(!empty($ItemData->office_name) && $ItemData->product_type == 'Kaufen')

{{ $ItemData->office_name }}

@elseif(!empty($ItemData->office_name) && $ItemData->product_type == 'Verkaufen')
Lieferadresse

{{ $ItemData->office_name }}

@else
Lieferadresse

{{ $ItemData->title_type }}, {{ ucfirst($ItemData->fname.' '. $ItemData->lname) }}
Telefon: {{ $ItemData->delivery_phone }}
E-Mail-ID: {{ $ItemData->email }}

{{ $ItemData->delivery_adress }}
{{ $ItemData->delivery_address }}
{{ $ItemData->delivery_postcode }}
{{ $ItemData->delivery_location }}
{{ $ItemData->delivery_country }}

@endif
Andere Informationen

@php $ItemData->paid_date; $today = Carbon\Carbon::now()->format('Y-m-d'); @endphp Zahlungsstatus: @if(isset($ItemData->paid_date) && $ItemData->paid_date <= $today) Bezahlt @else Unbezahlt @endif
Versandstatus: @if($ItemData->shipping_status) {{ $ItemData->shipping_status }} @else Ausstehend @endif
Bestelldatum: {{ date('m/d/Y h:i A', strtotime($ItemData->created_at)) }}
Produktart: {{ $ItemData->product_type }}
Auftragsnummer: {{ $ItemData->id }}
Bestell-Nr.: {{ $ItemData->payment_method }}
Versand: {{ $ItemData->goldinvest_type }}
@if($ItemData->note )Notiz: {{ $ItemData->note }}
@endif

@foreach($AllOrder as $order)
Stückpreis netto
{{ config('app.symbol') }}{{ $order->unit_price_net }}
Einheitspreis brutto
{{ config('app.symbol') }}{{ $order->unit_price_gross }}
Warenwert brutto
{{ config('app.symbol') }}{{ $order->goods_value_gross }}
MwSt.-Satz
{{ $order->vat_rate }} %
Menge
{{ $order->quantity }}
@endforeach

Bestelldetails

Zwischensumme

{{ config('app.symbol') }}{{ $order->sub_total }}

@if($order->coupon_name)

Rabatt ( {{ $order->coupon_name }})

{{ $order->coupon_value }}

@endif @if($order->goldinvest_type)

Versandkosten

{{ config('app.symbol') }}{{ $order->collection_goldinvest }}

@endif
@endsection