@extends('blog::_layouts.master') @section('title', $post->title) @section('content') {{-- Header --}}

{{ $post->title }}

@foreach($post->tags as $tag) {{ $tag->name }} @endforeach

 {{ $post->createdAtFormatted }}

{{-- Starting gradient --}} @include('landing::_layouts/_partials/gradient-start', ['fill' => '#ffffff']) {{-- Post Detail --}}

{{ $post->excerpt }}

{!! $post->body !!}
{{-- Latest Posts --}} @include('landing::home/_includes/latest_posts') {{-- Ending gradient --}} @include('landing::_layouts/_partials/gradient-end', ['fill' => '#f7fafc']) @endsection