@extends('frontend.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_np ? $service->name_np : $service->name}}

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

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

{{$doctor->name_np ? $doctor->name_np : $doctor->name}}

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

{{$news->title_np ? $news->title_np : $news->title}}

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

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

{{$news->name_np ? $blog->name_np : $blog->name}}

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

@endforeach @endif
@else

नतिजा फेला परेन

@endif @endif
@endsection