@extends('layouts.app') @section('content') @php $postCollection = collect($posts); $featuredPost = $postCollection->first(); $otherPosts = $postCollection->slice(1); $totalMinutes = $postCollection->sum(fn ($post) => max(1, ceil(str_word_count(implode(' ', $post['content'])) / 180))); @endphp
Field notes

Thoughtful stories for a clearer mind

Short reflections on nature, mindset, and learning. Each post is built to feel calm, useful, and easy to read.

Latest writing

Fresh From The Journal

Browse the newest ideas and slow-reading notes from PHEARUM.

@if ($featuredPost) @php $featuredReadingTime = max(1, ceil(str_word_count(implode(' ', $featuredPost['content'])) / 180)); @endphp @endif
@foreach ($otherPosts as $post) @php $readingTime = max(1, ceil(str_word_count(implode(' ', $post['content'])) / 180)); @endphp
$loop->index >= 3])> {{ str_pad((string) ($loop->index + 2), 2, '0', STR_PAD_LEFT) }} {{ $post['alt'] }}
{{ $post['date'] }}

{{ $post['title'] }}

{{ $post['excerpt'] }}

{{ $readingTime }} min read {{ $post['subtitle'] }}
Read More
@endforeach
@if ($otherPosts->count() > 3)
@endif
Keep exploring

Turn reading into practice.

After a reflection, try the Focus Lab or explore the mindset behind this project.

@endsection @push('scripts') @endpush