@extends("frontend.layouts.app") @section("title") {{ app_name() }} | {{ $blog->title }} @endsection @section("content")
{{-- Featured Image --}}
{{ $blog->title }}
{{-- Title and Metadata --}}

{{ $blog->title }}

Published on {{ date('F d, Y', strtotime($blog->published_at)) }}

{{-- Blog Content --}}
{!! $blog->content !!}
{{-- Optional Tags or Categories --}} @if(!empty($blog->tags))

Tags:

@foreach(explode(',', $blog->tags) as $tag) {{ trim($tag) }} @endforeach
@endif {{-- Back to Blog List --}}
@endsection