@include('frontend.layouts.navbar')

Welcome to the SCLOE Forum

{{ $forum->user->name }}

{{ $forum->created_at->diffForHumans() }}

{{ $forum->title }}.

{!! nl2br($forum->description)!!}

{{ $forum->view_forum}} Views

@foreach($forum->forumcomments as $value)

{{ $value->users->name}}

{{ $value->created_at->diffForHumans() }}

@if(Auth::user()->id == $value->user_id)
@csrf @method('DELETE') Delete
@endif

{!! nl2br($value->comment)!!}

@endforeach

Reply

@csrf
@include('frontend.layouts.footer')