@section('title', $blog['meta_title']) @section('description', $blog['meta_description']) @section('keywords', $blog['meta_keywords']) @section('tags', $blog['meta_tags']) @extends('front.layouts.app') @section('content')
Image
@if(isset($blog['name']))

{{ $blog['name'] }}

@endif

Date: {{ \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

Relevant Blogs

@forelse($relevantBlogs as $relBlog)

{{ Str::limit($relBlog->name, 60) }}

{{ \Carbon\Carbon::parse($relBlog->b_date)->format('M d, Y') }}

@empty

No relevant blogs found.

@endforelse
@endsection @push('js') @endpush