@extends('frontend_eng.layouts.app') @section('title', 'Search | Om Hospital & Research Center') @section('meta', 'Welcome to Om Hospital and Research Center PVt. Ltd.') @section('content')
@if(isset($services) || isset($doctors) || isset($news) || isset($blogs)) @if($services->isNotEmpty() || $doctors->isNotEmpty() || $news->isNotEmpty() || $blogs->isNotEmpty())
@if($services) @foreach ($services as $service)

{{$service->name}}

{!!Str::limit($service->content, 120)!!}

@endforeach @endif @if($doctors) @foreach ($doctors as $doctor)

{{$doctor->name}}

{{$doctor->designation ? $doctor->designation .',' : ''}} {{$doctor->service->name}}
@endforeach @endif @if($news) @foreach ($news as $news)

{{$news->title}}

{!!Str::limit($news->content, 150)!!}

@endforeach @endif @if($blogs) @foreach ($blogs as $blog)

{{$news->name}}

{!!Str::limit($blog->content, 150)!!}

@endforeach @endif
@else

Result Not Found

@endif @endif
@endsection