@extends('layouts.app') @section('title', 'Search — ' . settings('site_title', 'Ahmad Hasan Dynamics Musings')) @section('content')

Search

@if($query && $posts->isNotEmpty())

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

@foreach($posts as $post)

{{ $post->title }}

@if($post->excerpt)

{!! $post->excerpt !!}

@endif
@endforeach
{{ $posts->links() }}
@elseif($query)

No results found for "{{ $query }}". Try a different search term.

@endif
@endsection