@extends(get_view('index')) @section('title'){{ translate('search_result') }} - @endsection @section('header') @endsection @section('content') @if ( count($posts) > 0 ) @foreach ($posts as $post) @include(get_view('components.posts.horizontal'), ['post' => $post]) @endforeach {{ $posts->links() }} @else
{{ translate('data_not_found') }}
@endif @endsection @section('footer') @endsection