@extends('layouts.frontend') @section('title', $post->meta_title ?? $post->title . ' - Blog') @section('meta_description', $post->meta_description ?? $post->excerpt) @section('content')
@if($post->category) {{ $post->category->name }} @endif

{{ $post->title }}

{{ $post->published_at->format('F d, Y') }} {{ $post->reading_time }} {{ number_format($post->views) }} views
@if($post->featured_image)
{{ $post->title }}
@endif
{!! $post->content !!}
@if($post->tags->count() > 0)
Tags: @foreach($post->tags as $tag) {{ $tag->name }} @endforeach
@endif
{{ $post->author->name }}

{{ $post->author->name }}

Technology Executive & Data Engineering Leader

Share:
@if($relatedPosts->count() > 0)

Related Articles

@foreach($relatedPosts as $related) @endforeach
@endif
@endsection