@extends('layouts.app') @section('title', ($blog->seo_metadata['title'] ?? $blog->title) . ' - Texora') @section('meta_description', $blog->seo_metadata['description'] ?? $blog->excerpt) @section('content')
Back to insights
{{ $blog->category?->name ?? 'Update' }} / {{ $blog->published_at?->format('F d, Y') ?? $blog->created_at->format('F d, Y') }} / {{ $blog->read_time ?? '5' }} min read

{{ $blog->title }}.

@if($blog->excerpt)

{{ $blog->excerpt }}

@endif
{{ $blog->title }}
{{ $blog->author->name ?? 'Texora Expert' }}
Written by {{ $blog->author->name ?? 'Texora Expert' }}
{!! $blog->content !!}
@if($blog->tags->count() > 0)
@foreach($blog->tags as $tag) # {{ $tag->name }} @endforeach
@endif
@if($relatedPosts->count() > 0)

More reads.

Related Texora articles from the same category.

@endif
@endsection