@if ($posts->isEmpty())

{{ __('No page available in your language at the moment') }}

@else @foreach ($posts as $post)
@if (isset($post->translations[0]) && isset($post->translations[0]->title))

{{ $post->translations[0]->title }}

@endif
@if (isset($post->translations[0]) && isset($post->translations[0]->content))
{!! \App\Helpers\StringHelper::sanitizeHtml($post->translations[0]->content) !!}
@endif
@livewire('welcome-page.call-card-carousel', ['random' => false])
@if (isset($post->translations[0]) && isset($post->translations[0]->excerpt))
{{ $post->translations[0]->excerpt }}
{{ __('Register now') }}
@endif @endforeach @endif