{{-- Header --}}
C
Convoro

{{ __('Hi :name,', ['name' => $user->name]) }}

{{ __('Here\'s what happened in the community over the :period.', ['period' => $periodLabel]) }}

@if ($unread > 0)
๐Ÿ”” {!! __('You have :count unread :notifications.', ['count' => $unread, 'notifications' => \Illuminate\Support\Str::plural(__('notification'), $unread)]) !!}
@endif @forelse ($topics as $topic)
{{ $topic['title'] }}

{{ $topic['excerpt'] }}

{{ __('by :author', ['author' => $topic['author']]) }} ยท {{ $topic['replyCount'] }} {{ \Illuminate\Support\Str::plural(__('reply'), $topic['replyCount']) }}
@empty

{{ __('No new topics this time โ€” check in to start a conversation.') }}

@endforelse
{{ __('Open Convoro') }}

{{ __('You\'re receiving this because your digest is set to :frequency.', ['frequency' => $user->digest_frequency]) }}
{!! __('Change it anytime in your :link', ['link' => '' . __('profile settings') . '']) !!}, {{ __('or') }} {{ __('unsubscribe from digests') }}.