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

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

@foreach($homepartys as $homeparty)
{{$homeparty->name}} @if($homeparty->completed) abgeschlossen @endif
@if(!$homeparty->completed) @endif
{{$homeparty->description}}
Datum
{{$homeparty->date}}
Ort
{{$homeparty->place}}
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)
@endif
@endforeach
@endsection