@extends('theme::layouts.app') @section('title', $title) @section('content')
@include('theme::partials.breadcrumbs')

@lang('blog.Results found')

@lang('blog.heading|Search Results for:') "{{ request('search') }}"

@lang('blog.Showing :first-:last of :total results', ['first' => $posts->firstItem() ?? 0, 'last' => $posts->lastItem() ?? 0, 'total' => $posts->total()])

@include('theme::partials.blog.posts-loop')
@endsection