@extends('layouts.blog') @section('meta_title', 'Search: ' . $query) @section('meta_description', 'Search results for ' . $query) @section('content') {{-- Breadcrumb --}}
{{-- Main Content --}}

Search Results

{{ $posts->total() }} results for "{{ $query }}"

@forelse($posts as $post)
@if($post->featured_image_url) {{ $post->title }} @else {{ $post->title }} @endif
@if($post->category) {{ $post->category->name }} @endif

{{ $post->title }}

{{ $post->excerpt }}

{{ $post->published_at->format('d M Y') }} {{ number_format($post->views_count) }}
@empty
Tidak ditemukan hasil untuk "{{ $query }}"

Coba kata kunci lain atau lihat posts populer di sidebar.

@endforelse
{{-- Pagination --}}
{{ $posts->appends(['q' => $query])->links('vendor.pagination.blog') }}
{{-- Sidebar --}}
{{-- Search Box --}} {{-- Popular Posts --}} {{-- Tags --}}
@endsection