@extends('layouts.app') @section('head') @endsection @section('content') @include('components.breadcrumbs')

{{$title}}

@foreach ($news as $n) @if(App::getLocale()=='uz' && $n->title_uz || App::getLocale()=='en' && $n->title_en || App::getLocale()=='ru' && $n->title_ru)
@if(App::getLocale()=='ru') @elseif(App::getLocale()=='uz') @else @endif

{{date('d.m.Y H:i:s', strtotime($n->created_at))}}

{{$n->getTitleAttribute()}}

{{$n->getPreviewAttribute()}}

{{__('site.read_more')}}
@endif @endforeach
{!! $news->links() !!}
@endsection @section('foot') @endsection