@extends(get_view('index')) @section('title'){{ translate('search_result') }} - @endsection @section('header') @endsection @section('content')

{{ translate('search_result') }}

{{ translate('total_records_found') }} {{ $posts->total() }}

@if ( count($posts) > 0 ) @foreach ($posts as $post) @include(get_view('components.posts.vertical'), ['post' => $post]) @endforeach {{ $posts->links() }} @else @include(get_view('components.errors.post-not-found')) @endif
@endsection @section('footer') @endsection