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

@if (isset($category) && !is_null($category)) {{ $category->name }} News from EchoScoop @else Latest News from EchoScoop @endif

@if ($posts->count() > 0) @foreach ($posts as $post) @include('front.partials.post_detail', ['post' => $post]) @endforeach @if ($posts instanceof \Illuminate\Pagination\Paginator)
{{ $posts->links('pagination::simple-bootstrap-5-rounded') }}
@endif @else
No posts found yet.
Back to Home
@endif
@include('front.partials.about')
@endsection