@extends('layouts.app') @section('content')

All Posts

Create New Post @foreach ($posts as $post)

{{ $post->title }}

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

@endforeach @foreach ($posts as $post)
@csrf

Upvotes: {{ $post->upvotesCount() }}

Downvotes: {{ $post->downvotesCount() }}

@endforeach @endsection