@section('title', $blog->meta_title) @section('description', $blog->meta_description) @section('keywords', $blog->meta_keywords) @section('tags', $blog->meta_tags) @extends('front.layouts.app') @push('schema') {!! \App\Helpers\SchemaHelper::render( \App\Helpers\SchemaHelper::blogPost( $blog->name, route('blog-banner.getImageBanner', [$blog->id, $blog->banner_url_name]), \Carbon\Carbon::parse($blog->b_date)->toDateString(), route('blog-details', $blog->slug), strip_tags($blog->long_description ?? ''), 'Madina Teaching Hospital (MTH)' ) ) !!} @endpush @section('content')
@if(isset($blog['name']))

{{ $blog['name'] }}

@endif
{{-- --}}
{{ \Carbon\Carbon::parse($blog->b_date)->format('M d, Y') }}
@if(isset($blog['long_description'])) {!! $blog['long_description'] !!} @endif
{{-- Tags --}}
@if($tags->count())
Tags: @foreach($tags as $tag) {{ $tag->name }} @endforeach
@endif
@if($relevantBlogs->count() > 0)
@else

No relevant blogs found.

@endif

Get in touch with us today to get medical services

@endsection {{-- Styles --}} @push('css') @endpush {{-- Scripts --}} @push('footer-scripts') @endpush