@extends('user.layout.main') @section('content')
#

Theo dõi tin tức y tế mới nhất từ chúng tôi để luôn cập nhật thông tin sức khỏe quan trọng

@if ($news->isNotEmpty())
@foreach ($news as $new)
#
{{ \Carbon\Carbon::parse($new->created_at)->format('d/m/Y') }}

{{ Str::words($new->title, 12, '...') }}

{!! Str::limit(strip_tags($new->content), 150, '...') !!}

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

Danh mục này chưa có tin tức nào

@endif
@endsection