@extends('layouts.backend.app') @push('header') @endpush @section('content')
@if ($errors->any()) @foreach ($errors->all() as $error)
  • @endforeach @endif
    Comment Table {{-- --}}
    {{-- --}} @foreach($comments as $key => $comment) {{-- --}} @endforeach
    id Comment UserPostCreated_At Action
    {{ $key+1 }} {{ $comment->comment }} {{ $comment->user->name }}{{ $comment->post->title }}{{ $comment->created_at->diffForHumans() }} {{-- --}}
    @foreach ($comments as $comment) @endforeach
    @endsection @push('footer') {!! Toastr::message() !!} @endpush