@extends('layouts.app') @section('meta-title'){{ $page->seo_title }} @endsection @section('meta-keywords'){{ $page->seo_keywords }} @endsection @section('meta-description'){{ $page->seo_description }} @endsection @section('meta-image'){{ $page->getFirstMediaUrl('seo_image', 'thumbnail') }} @endsection @section('content') @foreach (Alert::getMessages() as $type => $messages)
@foreach ($messages as $message) @endforeach
@endforeach
@csrf

Ellenőrzés

@foreach($cart as $item)
@php $product = \App\Product::findOrFail($item->attributes->product_id); @endphp

Fehér Diéta

szakácskönyv

{{ $product->name }}

{{ __('Egységár') }}:
{{ \App\Utils::priceForHumans($product->price) }}
{{ __('Mennyiség') }}: {{ $product->unit }}
{{ __('Ár összesen') }}:
{{ \App\Utils::priceForHumans($product->price * $item->quantity) }}
{{ __('Szállítási költség') }}:
{{ \App\Utils::priceForHumans($shippingCost = ($product->getShippingCost($item->quantity))) }}
@endforeach
@php $grossPrice = \App\Utils::sumCartPrice(Cart::getContent()); $netPrice = \App\Utils::gross2net($grossPrice); @endphp
{{--
{{ __('Nettó ár') }}:
{{ \App\Utils::priceForHumans($netPrice)}}
{{ __('Áfa összege') }}:
{{ \App\Utils::priceForHumans($grossPrice - $netPrice)}}
--}}
{{ __('Fizetés') }}:
{{ $billing_information['payment_type'] == "Utánvét" ? "Utánvét (+ 1790 Ft)" : $billing_information['payment_type'] }}
@isset($billing_information['priority_shipping'])
{{ __('Elsőbbségi csomagküldés') }}:
+ 790 Ft
@endisset
{{ __('Végösszeg') }}:
{{ \App\Utils::priceForHumans($grossPrice + ($billing_information['payment_type'] == "Utánvét" ? 1790 : 0) + (isset($billing_information['priority_shipping']) ? 790 : 0))}}
1.)

Számlázási adatok

{{ $billing_information['customer_billing_name'] }}
{{ $billing_information['customer_billing_address'] }}
{{ $billing_information['customer_billing_city'] }}
{{ $billing_information['customer_billing_postal_code'] }}
{{ $billing_information['customer_tax_number'] }}

2.)

Szállítási adatok és mód

{{ $billing_information['customer_delivery_name'] }}
{{ $billing_information['customer_delivery_address'] }}
{{ $billing_information['customer_delivery_city'] }}
{{ $billing_information['customer_delivery_postal_code'] }}
{{ $billing_information['customer_email'] }}
{{ $billing_information['customer_phone'] }}

3.)

Megerősítés

@endsection