No stories have been published for this project yet.
@foreach($stories as $story)
@php
$firstTextBlock = collect($story->content)->firstWhere('type', 'text');
$summary = $firstTextBlock ? Str::limit(strip_tags($firstTextBlock['data']['content']), 150) : 'Click to read this success story...';
@endphp
@if($story->image)
 }})
@endif
@if($story->is_featured)
@endif
{{ $story->published_date ? $story->published_date->format('M d, Y') : $story->created_at->format('M d, Y') }}
{{ $story->title }}
{{ $summary }}
@endforeach