@extends('layouts.frontend') @section('title', 'Blog') @section('content')

Latest News & Insights

Stay updated with our latest stories, tutorials, and announcements.

@foreach($posts as $post)
@if($post->hasMedia('featured_images')) {{ $post->title }} @else
@endif
{{ $post->category->name ?? 'Uncategorized' }}
{{ $post->published_at->format('M d, Y') }} {{ $post->author->name }}

{{ $post->title }}

{{ $post->excerpt ?: Str::limit(strip_tags($post->content), 120) }}

Read More
@endforeach
{{ $posts->links() }}
@endsection