@extends('layouts.app') @section('page_title', 'Our Stories') @section('page_subtitle', 'Read about our impact, volunteer experiences, and latest community updates.') @php use Illuminate\Support\Str; @endphp @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if($posts->isEmpty())
✍️

No blog posts yet. Be the first to share a story from our community.

@else
@foreach($posts as $post)
@if($post->image_path)
{{ $post->title }}
@endif

{{ $post->title }}

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

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