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

Latest News

Stay up to date with the world of gymnastics

All @foreach(['News','Event','Results','Update'] as $cat) {{ $cat }}s @endforeach
@if(session('success'))
{{ session('success') }}
@endif
@forelse($posts as $post)
@if($post->image) {{ $post->title }} @else
@endif {{ $post->category }}
{{ $post->title }}
{{ Str::limit(strip_tags($post->body), 130) }}
@empty

No posts yet

{{ $category ? "No $category posts found." : 'Check back later for updates.' }}

@auth Be the first to post @endauth
@endforelse
@if($posts->hasPages())
{{ $posts->links() }}
@endif @endsection