@extends(get_view('index')) @section('title'){{ translate('search_result') }} - @endsection @section('header') @endsection @section('content') @if ( count($posts) > 0 ) @foreach ($posts as $post) @include('front.'.Common::templateName().'.components.posts.vertical', ['post' => $post]) @endforeach {{ $posts->links() }} @else @include(get_view('components.errors.post-not-found')) @endif @endsection @section('footer') @endsection