@extends('layouts.app') @section('title', $post->title . ' — KiruDev Blog') @section('meta_description', Str::limit($post->excerpt, 155)) @section('content')
{{-- Hero --}}
← Blog @if($post->category) · {{ $post->category }} @endif

{{ $post->title }}

@if($post->excerpt)

{{ $post->excerpt }}

@endif
@if($post->author) @if($post->author->photo) {{ $post->author->name }} @else
{{ substr($post->author->name,0,2) }}
@endif
{{ $post->author->name }}
{{ $post->author->role }}
· @endif {{ $post->published_at->format('d F Y') }} {{ $post->read_time }} min read
@if($post->cover_image)
{{ $post->title }}
@endif {{-- Body --}}
{!! $post->body !!}
{{-- Tags --}} @if($post->tags && count($post->tags))
Tags: @foreach($post->tags as $tag) {{ $tag }} @endforeach
@endif
{{-- Related posts --}} @if($related->count())

More in {{ $post->category }}

@endif @push('head') @endpush @endsection