@extends('frontend.frontend-page-master') @section('page-title') {{__('Search For: ')}} {{$search_term}} @endsection @section('breadcrumb')
  • {{get_static_option('blog_page_'.$user_select_lang_slug.'_name')}}
  • {{__('Search For: ')}} {{$search_term}}
  • @endsection @section('page-meta-data') @endsection @section('content')
    @if(count($all_blogs) < 1)
    {{__('Nothing found related to ').$search_term}}
    @endif @foreach($all_blogs as $data)
    {!! render_image_markup_by_attachment_id($data->image) !!}

    {{$data->title}}

    {{$data->excerpt}}

    @endforeach
    @include('frontend.partials.sidebar')
    @endsection