@extends('layoutsfrontend.master') @section('title') @lang('Title') @endsection @section('css') @endsection @section('content')
@foreach($news as $item)
@if($item->filename) {{ $item->title }} @else Default News Image @endif
{{ $item->created_at->format('Y-m-d') }}

{{ Str::limit($item->title, 50) }}

{{ Str::limit($item->summary, 100) }}

read more
@endforeach
{{ $news->links('pagination::client') }}
@endsection @section('script') @endsection