@extends('front.layouts.app') @section('title', $blog->meta_title ?? $blog->title) @section('meta') @if(isset($blog->meta_title)) @else @endif @if(isset($blog->meta_description)) @else @endif @if(isset($blog->meta_title)) @else @endif @if(isset($blog->description)) @else @endif @endsection @section('content')
@if(isset($blog))
{{ $blog->name }}
{{ $blog->categories->name ?? 'عام' }}

{{ $blog->name }}

{!! ($blog->description) !!}

@if($blog->additional_images)
@foreach($blog->additional_images as $image)
Additional Image
@endforeach
@endif @if(isset($blog->tags) && $blog->tags->count() > 0)

Tags:

@foreach($blog->tags as $tag) {{ $tag['name'] }} @endforeach
@endif

Share:

@else

{{ \App\Helpers\TranslationHelper::translate('No articles for this category.') }}

@endif


{{ setting('section_five_title_one', app()->getLocale()) }}

{!! setting('section_five_description_one', app()->getLocale()) !!}

@endsection