@if($editMode)
@include('laravel-crm::livewire.components.partials.lunch.form-fields')
@else {!! $lunch->description !!}
{{ $lunch->start_at->format('h:i A') }} on {{ $lunch->start_at->toFormattedDateString() }} to {{ $lunch->finish_at->format('h:i A') }} on {{ $lunch->finish_at->toFormattedDateString() }} @if($lunch->contacts->count() > 0)
Guests
@foreach($lunch->contacts as $contact) {{ $contact->entityable->name }}
@endforeach @endif @if($lunch->location)
Location
{{ $lunch->location }} @endif @if($lunch->location)
Description
{{ $lunch->description }} @endif @endif