芝麻web文件管理V1.00
编辑当前文件:/home/c7lekhnath/silverray.com.au/Modules/Blog/resources/views/Comment/show.blade.php
@extends('admin.master_layout') @section('title')
{{ __('Post Comments') }}
@endsection @section('admin-content')
{{-- Breadcrumb --}}
@foreach ($comments as $comment)
@if ($comment->status == 1)
{{ __('Approved') }}
@else
{{ __('Pending') }}
@endif
{{ $comment->name }}
{{ formattedDateTime($comment?->created_at) }}
{!! $comment->comment !!}
{{ __('Trash') }}
@endforeach
{{ $comments->links() }}
@endsection @push('js') @endpush