@foreach ($activities as $key => $activity)

{{ $key ?? '' }}

@foreach ($activity as $item => $value)
{{ $value->user->full_name ?? '' }} {{-- shared --}} {!! $value->message_html ?? '' !!} @if($value->action_flag == 'auto') @elseif($value->action_flag == 'manual') @endif

{{ $value->created_at->isoFormat('lll') ?? '' }}

@endforeach
@endforeach