@extends('index') @section('main')

Made with

Gratulacje!

Właśnie dokonałeś/aś zakupu detektora AngelSounds, dzięki czemu niedługo będziesz mógł/mogła usłyszeć bicie mojego serduszka!

@if ($payLink = $order->getPaymentLink())

Zapłać online

@endif @if ($order->payment->isInAdvance() && $order->payment->provider === null)

Prosimy o wpłatę na poniższe dane:

{{ __('shop::orders.transfer.recipient') }}
{{ __('shop::orders.transfer.address') }}
{{ __('shop::orders.transfer.bank_name') }}

numer konta: {{ __('shop::orders.transfer.bank_account') }}

kwota: {!! price_currency($order->total_price, $order->currency) !!}

tytułem: Zamówienie nr {{ $order->no }}

Po zaksięgowaniu płatności niezwłocznie zrealizujemy Twoje zamówienie.

@endif @if ($order->delivery->collection_in_person == 0)

Zadzwoń i umów się na odbiór - 574 014 044

@endif

Poniżej - dla pewności - możesz upewnić się, czy podane przez Ciebie dane są prawidłowe. Zajrzyj też na swojego maila - tam też czekam na Ciebie :)

PS. Jeśli masz jakiekolwiek wątpliwości czy pytania, skontaktuj się z nami:

telefonicznie 574 014 044 mailowo biuro@angelsounds.pl
{{ __('shop::orders.details_title', ['no' => $order->no]) }}
@foreach ($order->items as $item) @if ($item->isGift()) @else @if ($item->price_old) @endif @endif @endforeach
Produkt Cena brutto Ilość Suma
{{ $item->name }} {!! $item->name !!} @if ($item->variant) {{ $item->variant->display_name }} @endif {{ __('shop::orders.product_gift') }}{!! price_currency($item->price_old) !!}{!! price_currency($item->price) !!}{{ $item->quantity }} {!! price_currency($item->price * $item->quantity) !!}

Dane zamawiającego

@if ($order->customer_type === 'company') {{ $order->company }}
@endif {{ $order->name }} {{ $order->surname }}
{{ $order->address }}
{{ $order->postcode }} {{ $order->city }}
@if ($order->customer_type === 'company') {{ __('shop::fields.tax_id') }}: {{ $order->tax_id }}
@endif {{ __('shop::fields.email') }}: {{ $order->email }}
@if ($phone = $order->delivery_address_other ? $order->delivery_address_phone : $order->phone) {{ __('shop::fields.phone') }}: {{ $phone }} @endif

Dane wysyłkowe

{{ $order->delivery_address_other ? $order->delivery_address_name : $order->name }} {{ $order->delivery_address_other ? $order->delivery_address_surname : $order->surname }}
{{ $order->delivery_address_other ? $order->delivery_address_address : $order->address }}
{{ $order->delivery_address_other ? $order->delivery_address_postcode : $order->postcode }} {{ $order->delivery_address_other ? $order->delivery_address_city : $order->city }}
{{ __('shop::fields.phone') }}: {{ $order->delivery_address_other ? $order->delivery_address_phone : $order->phone }}

Faktura

{{ $order->invoice_other ? $order->invoice_name : ($order->customer_type === 'company' ? $order->company : $order->name . ' ' . $order->surname) }}
{{ __('shop::fields.invoice_tax_id') }}: {{ $order->invoice_other ? $order->invoice_tax_id : ($order->customer_type === 'company' ? $order->tax_id : '') }}
{{ $order->invoice_other ? $order->invoice_address : $order->address }}
{{ $order->invoice_other ? $order->invoice_postcode : $order->postcode }} {{ $order->invoice_other ? $order->invoice_city : $order->city }}

Informacje

Status: {{ $order->status->name }}
Zapłacono: {{ $order->isPaid() ? __('shop::orders.paid') : __('shop::orders.not_paid') }}
Potwierdzono: {{ $order->isConfirmed() ? __('shop::orders.confirmed') : __('shop::orders.not_confirmed') }}
Data zamówienia: {{ $order->created_at->format('d.m.Y H:i') }}
Dostawa: {{ $order->delivery->name }}
Płatność: {{ $order->payment->name }}

Wartość zakupów: {!! price_currency($order->items_price, $order->currency) !!}

Koszt dostawy: {!! price_currency($order->delivery_price, $order->currency) !!}

Łącznie do zapłaty: {!! price_currency($order->total_price, $order->currency) !!}

Zapłacono: {{ $order->isPaid() ? price_currency($order->total_price, $order->currency) : price_currency(0, $order->currency) }}

@endsection