@extends('layouts.main') @section('title', 'Posts – World Gymnastics') @section('styles') @endsection @section('content')

POSTS

Latest updates, articles and announcements

@auth New Post @endauth
@if(session('success'))
{{ session('success') }}
@endif @if($posts->isEmpty())

No posts yet. Be the first to write one!

@auth Create Post @endauth
@else
@foreach($posts as $post)
@if($post->image) {{ $post->title }} @else
@endif
{{ $post->status }}
{{ $post->title }}

{{ Str::limit(strip_tags($post->body), 110) }}

Read more
{{ $post->user->name }} {{ $post->created_at->format('d M Y') }}
@endforeach
{{ $posts->links() }}
@endif
@endsection