{{-- Avatar --}}
{{-- Setting and Follow Button --}}
@can('follow', $community) @endcan @auth @can('update', $community)
{{ __('Edit') }}
@endcan @endauth

{{ $community->name }}

@if ($community->description || $community->rules) @endif
{{ __('Created on') .' ' .\Carbon\Carbon::parse($community->created_at)->locale(str_replace('_', '-', app()->getLocale()))->isoFormat('MMMM, YYYY') }}
@if ($community->stories_count > 0)
{{ $community->stories_count }} {{ __('Stories') }}
@endif @if ($community->followables_count > 0)
{{ $community->followables_count }} {{ __('Followers') }}
@endif
@if ($community->description)

{{ __('About Community') }}

{!! nl2br($community->description) !!}
@endif @if ($community->rules)

{{ __('Rules') }}

{!! nl2br($community->rules) !!}
@endif
@foreach ($communityStoriesLatest as $story) @endforeach @if ($communityStoriesCount != 0) @if ($communityStoriesLatest->hasMorePages())
@endif @else
{{ __('There are no stories here yet') }}
@endif