@extends("app") @section('head_title', $search .' | '.get_buzzy_config('sitename') ) @section('head_description', $search ) @section("content")

{{ $search }}

@if($posts->total() > 0)
@foreach($posts as $k => $item) @include('pages.catpostloadpage') @endforeach


{!! $posts->appends(['q' => request()->get('q')])->render() !!}
@else @include('errors.emptycontent') @endif
@endsection