@extends('site.layouts.master') @section('seoTags') @seoTags() @endsection @php $seo = SEO\Models\Page::where('path', URL::full())->first(); $tagTranslations = [ 'Investment & Markets' => 'الاستثمار والأسواق', 'Projects & Opportunities' => 'المشروعات والفرص', 'Areas & Cities' => 'المناطق والمدن', 'Real Estate Guide' => 'الدليل العقاري', 'Future of Real Estate' => 'مستقبل العقارات', ]; @endphp @section('metatags') @if(empty($seo->title)) @section('title') {{ $blog->title }} @endsection @endif @if(!empty($seo)) @else @endif @endsection @section('content')
{{ Breadcrumbs::render('blog', $blog) }}
{!! $breadcrumbSchema !!} {!! $blogPostSchema !!}
@php $articleTag = null; if(isset($blog->tags) && $blog->tags->count()) { $articleTag = $blog->tags->first()->name ?? null; } $displayArticleTag = $articleTag && app()->getLocale() === 'ar' ? ($tagTranslations[$articleTag] ?? $articleTag) : $articleTag; @endphp @if($displayArticleTag) {{ $displayArticleTag }} @endif

{{ $blog->title }}

@if($blog->image && $blog->image->full_url)
{{ $blog->title }}
@endif
{!! $content !!}
@endsection @section('script') @endsection