@extends('layouts.app') @section('title','News and Updates') @section('content')

Latest News

@foreach($news as $item)

{{ $item->title }}

{{ $item->published_at?->format('M d, Y') }}

{{ \Illuminate\Support\Str::limit($item->content, 180) }}

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