@extends('layouts.master') @section('memberBlogView')
Member Blog View
@if (session('status')) @endif
@csrf
  • {{$results->title}}

    {!!$results->description!!}

    @foreach($comments as $comment)
    {{$comment->user->fname.' '.$comment->user->mname}}
    @if(Auth::user()->id == $comment->user->id || Auth::user()->user_type == 1)
    @endif
    {{$comment->updated_at->diffForHumans(\Carbon\Carbon::now())}}
    @endforeach

@endsection @section('scripts') @endsection