@extends('blog.layout') @section('meta_title', 'Search'.($q ? ': '.$q : '').' — '.config('app.name')) @section('content')

Search results @if($q) for “{{ $q }}” @endif

@forelse($posts as $post)

{{ $post->title }}

{{ $post->published_at?->format('M j, Y') }}

@empty

No posts found.

@endforelse
{{ $posts->links() }}
@endsection