@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) {{ __('homeparty.host') }} @else {{ __('homeparty.guest') }} {{$g_count++}} @endif {{$homeparty_user->billing_firstname}} {{$homeparty_user->billing_lastname}} {{-- offen ... --}}
@if($homeparty_user->is_host) {{ __('edit') }} @else @endif
@else
@if($homeparty_user->is_host) {{ __('homeparty.host') }} @else {{ __('homeparty.guest') }} {{$g_count++}} @endif {{$homeparty_user->billing_firstname}} {{$homeparty_user->billing_lastname}}
{{-- offen ... --}}
@endif
{{ __('Address') }}
{{$homeparty_user->billing_address}} {{$homeparty_user->billing_zipcode}} {{$homeparty_user->city}} @if($homeparty_user->billing_country_id){{ $homeparty_user->billing_country->getLocated() }}@endif
{{ __('Phone') }}
{{$homeparty_user->billing_phone}}
{{ __('E-Mail') }}
{{$homeparty_user->billing_email}}
@endforeach @if(!$homeparty->completed)
@endif
@if(!$homeparty->completed) {{ __('homeparty.homeparty_manage') }} @endif {{ __('homeparty.order') }} {{ __('back_to_overview') }}
@endsection