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

Komentari

@foreach($comments as $comment) @endforeach
ID Ime Email Komentar Tip Objavljen Odgovoreno Akcije
{{ $comment->id }} {{ $comment->name }} {{ $comment->email }} {{ Str::limit($comment->content, 50) }} {{ $comment->commentable_type }} @if($comment->is_published) ✅ @else ❌ @endif @if($comment->admin_replied) ✅ @else ❌ @endif
@csrf
@csrf
@csrf @method('DELETE')
{{ $comments->links() }} @endsection