@extends('layouts.layout-2') @section('content')

{{ __('navigation.my_homeparty') }} / {{ $homeparty->name }} - {{ $homeparty->date }}
zurück

@if($userHistoryPaymentOrder && $userHistoryPaymentOrder->status > 2)
Eine Zahlung wurde ausgeführt. Status: {{ trans('payment.status.'.$userHistoryPaymentOrder->getStatusType())}}
@endif {!! Form::open(['url' => route('user_homeparty_order', [$homeparty->id]), 'class' => 'form-horizontal', 'id'=>'homeparty-order-form']) !!}
Bestellung anlegen
@if(!$homeparty->completed) @endif
Lieferadresse Gastgeber/in @if(!$homeparty->completed) @endif
@include('user.homeparty._address', ['homeparty_user' => $homeparty->homeparty_host])
{{-- TODO Berechnung Bonus --}}
Aktuelle Bonusansicht
@include('user.homeparty.show_bonus', ['homeparty' => $homeparty])
@if($homeparty->homeparty_host)
Bestellung Gastgeber/in {{$homeparty->homeparty_host->billing_firstname}} {{$homeparty->homeparty_host->billing_lastname}}
@if(!$homeparty->completed)
@endif
@include('user.homeparty.show_products_order', ['homeparty_guest' => $homeparty->homeparty_host])
@endif @if($homeparty->homeparty_guests) @php($g_count = 1) @foreach($homeparty->homeparty_guests as $homeparty_guest)
Bestellung {!! $g_count++ !!}. Gast {{$homeparty_guest->billing_firstname}} {{$homeparty_guest->billing_lastname}}
@if(!$homeparty->completed)
@endif
@include('user.homeparty.show_products_order', ['homeparty_guest' => $homeparty_guest])
@endforeach @endif
Gesamtübersicht
@include('user.homeparty.show_total_order', ['homeparty' => $homeparty])
@if(!$homeparty->completed)
@if($homeparty->homeparty_host && $homeparty->homeparty_host->isAddress())


Du wirst auf unseren checkout weitergeletet, die Verbindung ist SSL verschlüsselt. @else
Die Bestellung kann erst abgesendet werden, wenn die Lieferadresse Gastgeber/in angelegt ist.
@endif @endif
@if(!$homeparty->completed) Homparty verwalten @endif zurück zur Übersicht
{!! Form::close() !!} @endsection @section('scripts') @endsection