@extends('layouts.app') @section('title', 'Blog - ' . \App\Models\Setting::get('site_title', 'Hannah Arinaitwe')) @section('content')

Stories & Insights

The Blog

Thoughts on storytelling, personal branding, and the journey of becoming.

All Articles @foreach($categories as $category) {{ $category->name }} @endforeach
@if(request('category')) @endif
@if($posts->count() > 0) @php $firstPost = $posts->first(); @endphp
@if($firstPost->featured_image) {{ $firstPost->title }} @else
@endif
@if($firstPost->category) {{ $firstPost->category->name }} @endif {{ $firstPost->published_at->format('M j, Y') }} • {{ $firstPost->reading_time }} min read

{{ $firstPost->title }}

{{ $firstPost->excerpt ?? Str::limit(strip_tags($firstPost->body), 180) }}

Read Article
@foreach($posts->skip(1) as $post)
@if($post->featured_image) {{ $post->title }} @else
@endif
@if($post->category) {{ $post->category->name }} @endif {{ $post->published_at->format('M j, Y') }} • {{ $post->reading_time }} min

{{ $post->title }}

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

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

No articles found

Try adjusting your search or filter to find what you're looking for.

Clear all filters
@endif
@endsection