@extends('frontend.layouts.master') @section('content')

{{ $blog->title }}

{{-- --}}
{{ \Carbon\Carbon::parse($blog->date)->format('d, M Y') }}
@foreach($blog->tags as $tag) {{ $tag->name }} @endforeach
{!! $blog->description !!}
@if($blog->author_image && $blog->author_name)
{{ $blog->author_name }} Author
@endif
@if($prev_post)
Previous post

{{ $prev_post->title }}

@endif @if($next_post)
Next post

{{ $next_post->title }}

@endif

Category

Subscribe Newsletter

Blog & Articles

Related posts

    @foreach($related_posts as $related)
  • @foreach($related->tags as $tag) {{ $tag->name }} @endforeach

    {{ $related->title }}

    @if($related->author_image && $related->author_name)
    {{ $related->author_name }} Author
    @endif
  • @endforeach
@endsection