{{ $forum->user->name }}
{{ $forum->created_at->diffForHumans() }}
{{ $forum->title }}.
{!! nl2br($forum->description)!!}
{{ $forum->view_forum}} Views
@foreach($forum->forumcomments as $value)
@endforeach
{{ $value->users->name}}
{{ $value->created_at->diffForHumans() }}
@if(Auth::user()->id == $value->user_id)
@endif
{!! nl2br($value->comment)!!}