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

{{ __('navigation.my_homeparty') }} / {{ $homeparty->name }} - {{ $homeparty->date }}
@if(!$homeparty->completed)   Gast anlegen @endif

@php($g_count = 1) @foreach($homeparty->homeparty_users as $homeparty_user)
@if(!$homeparty->completed)
@if($homeparty_user->is_host) Gastgeber:in @else Gast {{$g_count++}} @endif {{$homeparty_user->billing_firstname}} {{$homeparty_user->billing_lastname}} {{-- offen ... --}}
@if($homeparty_user->is_host) bearbeiten @else @endif
@else
@if($homeparty_user->is_host) Gastgeber:in @else Gast {{$g_count++}} @endif {{$homeparty_user->billing_firstname}} {{$homeparty_user->billing_lastname}}
{{-- offen ... --}}
@endif
Adresse
{{$homeparty_user->billing_address}} {{$homeparty_user->billing_zipcode}} {{$homeparty_user->city}} @if($homeparty_user->billing_country_id){{ $homeparty_user->billing_country->getLocated() }}@endif
E-Telefon
{{$homeparty_user->billing_phone}}
E-Mail
{{$homeparty_user->billing_email}}
@endforeach @if(!$homeparty->completed)
@endif
@if(!$homeparty->completed) Homparty verwalten @endif Bestellung zurück zur Übersicht
@endsection