@extends("layouts.dashboard")
@section("title", "Comments - Dashboard | TechnoBlog")
@section("dashboard_content")
Name |
Email |
Created Date |
Status |
Actions |
@foreach ($comments as $comment)
{{ $comment->name }} |
{{ $comment->email }} |
{{ date('d.m.Y', strtotime($comment->created_at)) }} |
@if ($comment->is_active)
Confirmed
@else
Not confirmed yet
@endif
|
|
@endforeach
@endsection