@extends('layouts.app') @section('content')

MEMBER BLOG

{{$post->title}}

{{"published by :".$post->user->name}}

{!!$post->description!!}

@csrf @if ($errors->has('comment'))
{{ $errors->first('comment') }}
@endif

@foreach($posts->comments as $comments) @if($comments->user != null)

{{$comments->user->fname}}

{{$comments->body}}

@endif @endforeach
@endsection