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

{{ translate('search_result') }}

{{ translate('search_result_records') }}: {{ $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