@extends('frontend.layouts.app') @section('title', $title) @section('description', $description) @section('content') @include('frontend.layouts.breadcrumb', ['title' => 'Search Results'])
Search

Search News Articles

{{ request('q') ? 'Search results for "' . request('q') . '"' : 'Enter keywords to search through the latest posts.' }}

@forelse($news as $article)
@include('frontend.partials.news-card', ['article' => $article])
@empty

{{ request('q') ? 'No results found' : 'Start your search' }}

{{ request('q') ? 'Try different keywords or browse all news.' : 'Type a keyword above to search news articles.' }}

Browse All News
@endforelse
{{ $news->appends(request()->query())->links() }}
@include('frontend.partials.newsletter') @endsection