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

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

@php($g_count = 1) @foreach($homeparty->homeparty_users as $homeparty_user)
{{$homeparty->description}}
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) Homparty verwalten @endif Bestellung zurück zur Übersicht
@endsection