@extends('layouts.backend.master') @section('title','Comments') @push('css') @endpush @section('content')

ALL COMMENTS {{ $comments->count() }}

@foreach($comments as $key=>$comment) @endforeach
Comments Info Post Info Action
Comments Info Post Info Action

{{ $comment->user->name }} {{ $comment->created_at->diffForHumans() }}

{{ $comment->comment }}

Reply

{{ str_limit($comment->post->title,'40') }}

by {{ $comment->post->user->name }}

@endsection @push('js') @endpush