@foreach($NextVisit as $data)
Visit: {{$data->visit_name}}
DateTime: {{$data->unavailable_from}}, Location: {{$data->visit_place}}, Visitor Name: {{$data->visitor_name}}
@endforeach
@endif
@if(count($NextAppointment) > 0)
@foreach($NextAppointment as $data)
Appointment: {{$data->agenda}}
DateTime: {{$data->apointmnet_start_time}}, Requested By: {{$data->requested_by}}, Appointment To: {{$data->appointment_to}}
@endforeach
@endif
@if(count($NextMeeting) > 0)
@foreach($NextMeeting as $data)
Meeting: {{$data->meeting_name}}
DateTime: {{$data->start_time}}, Location: {{$data->meeting_venue}}, Meeting Caller: {{$data->meeting_caller}}
@endforeach
@endif
@endif