@extends('layouts.app') @section('title', $community->name) @section('page-title', $community->name) @section('breadcrumb', 'Community / Posts') @section('content')

{{ $community->description }}

← All communities
@forelse($community->posts as $post)
{{ strtoupper(substr($post->user?->name ?? 'U', 0, 1)) }}

{{ $post->user?->name }}

{{ $post->created_at->diffForHumans() }}

@if($post->title)

{{ $post->title }}

@endif

{{ $post->body }}

@empty
@endforelse
@endsection