Call Action:
{{$communication->callAction->name}}
Description:
{{$communication->description}}
Status :
{{$communication->status}}
@foreach ($communication->events as $event)
Title :
{{$event->title}}
Start :
@php
$date = strtotime($event->start);
$start = date('Y-m-d h:i:s',$date);
@endphp
{{$start}}
End :
@php
$date = strtotime($event->end);
$end = date('Y-m-d h:i:s',$date);
@endphp
{{$end}}
@endforeach