{{ __('Conferences') }}

@if ($conferences->count() > 0)
@foreach ($conferences as $conference)
{{ $conference->published_at?->format('M d, Y') }}

{{ $conference->getTranslation('title', app()->getLocale()) }}

@php $content = $conference->getTranslation('content', app()->getLocale()); $excerpt = null; if ($content && is_array($content)) { $texts = []; array_walk_recursive($content, function ($v, $k) use (&$texts) { if ($k === 'text' && is_string($v)) { $texts[] = $v; } }); $excerpt = Str::limit(implode(' ', $texts), 150) ?: null; } elseif (is_string($content)) { $excerpt = Str::limit(strip_tags($content), 150); } @endphp @if ($excerpt)

{{ $excerpt }}

@endif {{ __('Read More') }} →
@endforeach
{{ $conferences->links() }}
@else

{{ __('No conferences found.') }}

@endif