{{$blog->title}}
{{$blog->created_at}}
{{$blog->user->name}}
{!! $blog->description !!}
@extends('layouts.frontend.app') @push('meta') @endpush @section('title',$blog->title) @push('css') @endpush @section('content')
{!! $blog->description !!}
{{$comment->user->name}}
{{$comment->body}}
{{$comment->created_at->diffForHumans()}}
@forelse ($comment->replies as $reply){{$reply->user->name}}
{{$reply->body}}
{{$reply->created_at->diffForHumans()}}
Comments not available
@endforelse