@extends('front.layouts.main') @section('title'){{ @trans('seo.news_title') }}@endsection @section('description'){{ @trans('seo.news_desc') }}@endsection @section('content')

{{$title}}

@if($newses->count() > 0)
@foreach($newses as $key => $news)
{{$news->title}}

{{$news->title}}

By @if($news->author_name) {{$news->author_name}} @else anonymous @endif on {{$news->posted_date_front_formatted}}{{$news->news_category->name}}

{{$news->short_description}}

Read Now
@endforeach
{{ $newses->links('front.common.pagination') }}
@else
Sorry, No any News.
@endif
@endsection