@extends('template.layouts.template-base') @section('title', 'Blog Details') @section('styles') @endsection @section('content')

Overview

{{ $blog->posted_on ? $blog->posted_on->format('M d, Y') : '—' }}
  • Active
  • Inactive

{{ $blog->title_en }}

{{ $blog->category->category_name_en ?? '—' }}

{{ $blog->slug }}

Description

{!! $blog->description_en !!}
@if($blog->thumbnail_image) Thumbnail @else

No thumbnail uploaded.

@endif
@if($blog->video_url)
@endif @if($blog->galleryImages->count())
@foreach($blog->galleryImages as $galleryImg)
Gallery Image
@endforeach
@endif

{{ $blog->meta_title ?? '—' }}

@if($blog->meta_keywords)
    @foreach(array_map('trim', explode(',', $blog->meta_keywords)) as $keyword) @if($keyword)
  • {{ $keyword }}
  • @endif @endforeach
@endif

{{ $blog->meta_description ?? '—' }}

@if($blog->video_url)
{{ substr($blog->title_en, 0, 1) }}
{{ $blog->title_en }}
@endif @endsection @section('scripts') @endsection