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