@extends('web.layouts.container') @section('content')

{{$firstNew->title}}

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

{!! wordLimit(stripText($firstNew->description, 410)) !!}

{{__('main.read_more')}}
@if(count($news)) @foreach($news as $new) @if($firstNew->id == $new->id) @continue @endif

{{$new->title}}

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

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

{{__('main.read_more')}}
@endforeach @endif
@if(count($news) > 6) @endif
@endsection @section('inner_js') @endsection