@foreach(['all' => __('All'), 'email' => __('Email'), 'whatsapp' => __('WhatsApp'), 'sms' => __('SMS'), 'telegram' => __('Telegram'), 'slack' => __('Slack'), 'chat' => __('Live Chat')] as $key => $label)
@endforeach
{{-- Channel summary --}}
@if(count($events) > 0)
@php
$channelCounts = collect($events)->groupBy('channel')->map->count();
@endphp
@foreach($channelCounts as $ch => $count)
{{ $count }} {{ ucfirst($ch ?? 'email') }}
@endforeach
@endif
@if($timeline->count() > 0)
{{ __('No activity yet') }}
@endif