@extends('layouts.app') @section('content')
@if($story->condition)
{{ $story->condition }}
@endif

{{ $story->title }}

@if($story->name)
{{ $story->name }}
@endif @if($story->excerpt || $story->summary)

{{ \Illuminate\Support\Str::limit($story->excerpt ?? $story->summary, 120, '...') }}

@endif
@if($story->image_path)
{{ $story->title }}
@endif
@if($story->body) {!! $story->body !!} @elseif($story->description) {!! $story->description !!} @endif

💡
Key Insights

Challenges Faced

  • Diagnosis delays and misdiagnosis
  • Access to specialized treatment
  • Managing symptoms and side effects

Key Learnings

  • Importance of patient advocacy
  • Value of support networks
  • Lifestyle modifications that help

👤
About The Patient

@if($story->name)

Patient Name

{{ $story->name }}

@endif @if($story->condition)

Condition

{{ $story->condition }}

@endif

Impact of This Story

This story has been shared to help others understand the realities of living with myositis and to provide hope and practical insights to patients and caregivers.

Inspired by this story?

Share your own journey or connect with our community

More Inspiring Stories

View All Stories
@php // Get 3 random published stories excluding current one use App\Models\PatientStory; $relatedStories = PatientStory::where('is_published', true) ->where('id', '!=', $story->id) ->inRandomOrder() ->limit(3) ->get(); @endphp @forelse($relatedStories as $relatedStory)
@if($relatedStory->image_path) {{ $relatedStory->title }} @else
💪
@endif
@if($relatedStory->condition) {{ $relatedStory->condition }} @endif

{{ $relatedStory->title }}

@if($relatedStory->name)
{{ $relatedStory->name }}
@endif @if($relatedStory->excerpt || $relatedStory->summary)

{{ \Illuminate\Support\Str::limit($relatedStory->excerpt ?? $relatedStory->summary, 80, '...') }}

@endif Read Full Story
@empty

No other stories available at the moment.

@endforelse
@if(isset($seo->schema_js)) @endif
@endsection @push('styles') @endpush @push('scripts') @endpush