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

Popular Posts

@forelse($posts as $post)
@auth
@csrf
@else @endauth {{ $post->votes }} @auth
@csrf
@else @endauth

{{ $post->title }}

r/{{ $post->community->name }} • Posted by u/{{ $post->user->name }} • {{ $post->created_at->diffForHumans() }}
@if($post->content)

{{ Str::limit($post->content, 200) }}

@endif @if($post->url) {{ $post->url }} @endif
@empty

No posts yet. Be the first to create one!

@endforelse
{{ $posts->links() }}

About

Welcome to our Reddit-like community forum! Share your thoughts, engage in discussions, and connect with others.

@auth Create Post @else Sign Up @endauth
@endsection