@extends('layout') @section('content')

@translate('homePage', 'application_title')

@foreach ($news as $newsItem) @if ($newsItem->langs->isNotEmpty()) @php $lang = $newsItem->langs->first(); @endphp

{{ $lang->title }}

{!! \Illuminate\Support\Str::limit($lang->content, 300) !!}

@endif @endforeach
@endsection