@extends('layouts.app') @section('content')
{{-- Heading --}}

Patient Stories

Real journeys from people living with myositis and their caregivers. These stories bring hope, courage, and connection to our community.

{{-- Stories grid --}}
@foreach($stories as $story)
{{-- FULL IMAGE – NO CROPPING --}}
{{ $story->title }}
{{-- Content --}}
@if($story->name || $story->condition)

{{ $story->name }} @if($story->condition) · {{ $story->condition }} @endif

@endif

{{ $story->title }}

@if($story->description)

{{ $story->description }}

@else
@endif
Read story @if($story->created_at) {{ $story->created_at->format('d M Y') }} @endif
@endforeach
{{-- Pagination --}}
{{ $stories->links() }}
@endsection