{{-- resources/views/pages/blog/index.blade.php --}} @extends('layouts.app') @section('title', 'Blog — KiruDev Technologies') @section('content')

Insights & Updates

The KiruDev Blog

Engineering insights, product updates, and tech deep-dives from our team.

{{-- Category filters --}} @if($categories->count())
All @foreach($categories as $cat) {{ $cat }} @endforeach
@endif @if($posts->count())
@foreach($posts as $post)
@if($post->cover_image)
{{ $post->title }}
@else
{{ substr($post->title,0,1) }}
@endif
@if($post->category){{ $post->category }}@endif {{ $post->read_time }} min read

{{ $post->title }}

{{ Str::limit($post->excerpt, 110) }}

@if($post->author)
{{ substr($post->author->name,0,2) }}
{{ $post->author->name }} @endif
{{ $post->published_at->format('d M Y') }}
@endforeach
{{ $posts->links() }}
@else

No posts yet

Check back soon for insights from the KiruDev team.

@endif
@endsection