Kết quả tìm kiếm với từ khóa: "{{ request('q') }}"
@if ($news->isNotEmpty())
@foreach ($news as $new)
@php
$firstCategory = $new->newsCategories->first();
@endphp
{{ \Carbon\Carbon::parse($new->created_at)->format('d/m/Y') }}
{!! Str::limit(strip_tags($new->content), 150, '...') !!}
@endforeach
{{ $news->links() }}
@else
Không có bài viết nào có từ khóa:
"{{ request('q') }}"
@endif
@endsection