@if(count($news)) @foreach($news as $new)

{{$new->title}}

{{date('d M Y', strtotime($new->created_at))}}

{!! wordLimit(stripText($new->description, 100)) !!}

{{__('main.read_more')}}
@endforeach @if(count($news) < 7)
@endif @else
{{__('articles.no_news_to_shown')}}
@endif