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

{{ __('navigation.my_homeparty') }} / {{ __('navigation.overview') }}
  Neue Auszeitparty anlegen

@foreach($homepartys as $homeparty)
{{$homeparty->name}} @if($homeparty->completed) abgeschlossen @endif
@if(!$homeparty->completed) @endif
{{$homeparty->description}}
Datum
{{$homeparty->date}}
Veranstaltungsort
{{$homeparty->place}} / @if($homeparty->country) {{ $homeparty->country->getLocated() }} @endif
Gäste
{{$homeparty->homeparty_guests->count()}}
Umsatz
@if(isset($homeparty->order['price'])){{Util::formatNumber($homeparty->order['price'])}}@endif
Points
@if(isset($homeparty->order['points'])){{$homeparty->order['points']}}@endif
@if(!$homeparty->completed && $homeparty->step >= 10)
@endif
@if(!$homeparty->completed) Verwalten @if($homeparty->step < 10)
Lieferadresse und Gastgeber:in sind noch nicht angelegt. Verwalten Danach können Gäste angelegt und Bestellung aufgegeben werden.
@else Gästeliste Gast anlegen Bestellung @endif @else Gästeliste Bestellung ansehen @endif
@endforeach
@endsection