@extends('layouts.blog') @section('title', $post->title) @section('content')
{{ $post->category->name }}

{{ $post->title }}

{{ $post->author->name }}
{{ $post->author->name }}
@if($post->author->twitter_handle) @endif @if($post->author->github_handle) @endif
@if($post->banner_url) {{ $post->title }} @endif
{!! $post->content !!}
@if($relatedPosts->count())

Related Posts

@foreach($relatedPosts as $post)
@if($post->banner_url) {{ $post->title }} @endif
@endforeach
@endif @endsection