@extends('front.layouts.app') @section('content')
Your future depends on today's news.
In the fast-evolving world of AI and tech, staying updated is not optional—it's critical for your future success. Stay updated with daily news from FutureWalker.
Start reading now
@if ($featured_posts->count() > 0)

Featured News

@foreach ($featured_posts as $post)

{{ $post->title }}

{{ $post->published_at->diffForHumans() }} {{ markdown_min_read($post->body) }}

{{ str_first_sentence($post->bites) }}

@endforeach
@endif @if ($latest_posts->count() > 0)

Latest News

@foreach ($latest_posts as $post)
{{ $post->title }}
{{ $post->published_at->diffForHumans() }} {{ markdown_min_read($post->body) }}
@endforeach
@include('front.partials.sidebar')
@endif
@endsection