@extends('front.layouts.app') @section('content')
@include('front.partials.breadcrumbs')

@if ($page_type == 'search') @if (isset($title)) {{ $title }} @endif @else @if (isset($category) && !is_null($category)) {{ $category->name }} News from FutureWalker @else AI & Tech News from FutureWalker @endif @endif

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