@extends('web.layouts.main') @section('content') @include('web.components.counter')
@if($latest_news)
{{ $latest_news->title }}

{{ $latest_news->title }}

{!! $latest_news->text !!}
@endif
@foreach($news as $single_news)
{{ $single_news->title }}

{{ $single_news->title }}

{{ $single_news->text_preview }}

@endforeach
{{ $news->links() }}
@endsection