@extends('layouts.admin') @section('title', __('Comment Details')) @section('content')
{{ __('View and manage comment details') }}
{{ __('Name') }}: {{ $comment->author_display_name }}
{{ __('Email') }}: {{ $comment->author_email }}
@if($comment->author_website){{ __('Website') }}: {{ $comment->author_website }}
@endif @if($comment->user){{ __('Registered User') }}: {{ __('Yes') }}
@endif{{ __('Status') }}: {{ ucfirst($comment->status) }}
{{ __('Date') }}: {{ $comment->created_at->format('Y-m-d H:i:s') }}
{{ __('IP Address') }}: {{ $comment->ip_address }}
{{ __('User Agent') }}: {{ Str::limit($comment->user_agent, 50) }}
{{ __('Title') }}: {{ $comment->blog->title }}
{{ __('Author') }}: {{ $comment->blog->author->name ?? __('Unknown') }}
{{ __('Published') }}: {{ $comment->blog->published_at ? $comment->blog->published_at->format('Y-m-d H:i') : __('Not published') }}