@extends('layouts.app') @section('title', 'Communities') @section('page-title', 'Communities') @section('breadcrumb', 'Your communities') @section('content')
@if($communities->count())
@foreach($communities as $community)

{{ $community->name }}

{{ $community->description ?? 'Join the conversation' }}

{{ $community->posts_count }} posts
@endforeach
@else
@endif
@endsection