@extends('layouts.app') @section('title', $blog->title . ' - Saba Remedies Blog') @section('content')

{{ $blog->title }}

Published on {{ date('d F, Y', strtotime($blog->created_date ?? now())) }}
@if($blog->image)
{{ $blog->title }}
@endif
{!! nl2br(e($blog->description ?? $blog->data ?? '')) !!}

Leave a Comment

@csrf
@if($blog->comments && $blog->comments->count() > 0)

Comments ({{ $blog->comments->count() }})

@foreach($blog->comments as $cmt)
{{ $cmt->name }}

{{ $cmt->comment }}

@endforeach
@endif
@endsection