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

BLOG

Insights & Articles

Thoughts on data engineering, cloud architecture, transit technology, and technical leadership

@if($posts->count() > 0)
@foreach($posts as $post)
@if($post->featured_image) {{ $post->title }} @else
@endif
@if($post->category) {{ $post->category->name }} @endif

{{ $post->title }}

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

{{ $post->published_at->format('M d, Y') }} {{ $post->reading_time }}
@endforeach
{{ $posts->links() }}
@else

No posts found.

@endif

Categories

Tags

@foreach($tags as $tag) {{ $tag->name }} @endforeach

Subscribe

Get notified when I publish new articles.

@csrf
@endsection