@extends('layouts.app') @section('content')
{{-- Hero Image --}}
{{ $blog->title }}
{{-- Meta --}}
{{ $blog->category }} {{ $blog->published_at?->format('F d, Y') }} {{ $blog->views }} views
{{-- Title --}}

{{ $blog->title }}

{{-- Author --}}
{{ substr($blog->author?->name ?? 'A', 0, 1) }}

{{ $blog->author?->name ?? 'BrainyToy Admin' }}

{{ $blog->category }} Writer

{{-- Content --}}
{!! nl2br(e($blog->body)) !!}
{{-- Tags --}} @if($blog->tags)

Tags

@foreach($blog->tags as $tag) {{ $tag }} @endforeach
@endif {{-- Share --}}

Share this article

@endsection