{{-- Avatar --}}
{{ $community->name }}
{{-- Setting and Follow Button --}}
@if (auth()->id() === $community->user_id) @endif @if (auth()->id() !== $community->user_id) @endif
{{ $community->description }}
{{ __('Created on') }} {{ $community->created_at->toFormattedDateString() }}
{{ $communityStoriesCount }} {{ __('Stories') }}
{{ $community->followers()->count() }} {{ __('Followers') }}
@foreach ($communityStoriesLatest as $story) @endforeach @if ($communityStoriesCount != 0) @if ($communityStoriesLatest->hasMorePages())
@endif @else
{{ __('There are no stories here yet') }}
@endif