@extends('layout') @section('title', 'Communities') @section('content')

Communities

@auth Create Community @endauth
@forelse($communities as $community)

r/{{ $community->name }}

@if($community->description)

{{ $community->description }}

@endif
{{ $community->posts_count }} posts • {{ $community->subscribers_count }} subscribers • Created {{ $community->created_at->diffForHumans() }}
@empty

No communities yet. Be the first to create one!

@endforelse
{{ $communities->links() }}
@endsection