@extends("layouts.dashboard") @section("title", "Comments - Dashboard | TechnoBlog") @section("dashboard_content")

List of comments

@foreach ($comments as $comment) @endforeach
Name Email Created Date Status Actions
{{ $comment->name }} {{ $comment->email }} {{ date('d.m.Y', strtotime($comment->created_at)) }} @if ($comment->is_active) Confirmed @else Not confirmed yet @endif
@endsection