@extends('layouts.admin.master') @section('tab-name','نظرات') @section('content')
@forelse($comments as $comment) @empty @endforelse
# نویسنده موبایل متن نظر بخش مربوطه وضعیت تاریخ ثبت عملیات
{{ $loop->iteration + $comments->firstItem() - 1 }}
{{ $comment->name }} @if($comment->parent_id) پاسخ به: {{ $comment->parent->name ?? 'ناشناس' }} @endif
{{ $comment->mobile ?? '---' }}
{{ Str::limit($comment->message, 60, '...') }}
@if($comment->commentable) {{ $comment->getSection() }} @else حذف شده @endif
{{ $comment->getJalaliCreatedAtAttribute() }}
{{-- @include('admin.comments.partials.modal', ['comment' => $comment]) --}}
@csrf @method('DELETE')
هیچ نظری یافت نشد.
{{ $comments->links() }}
@push('scripts') @endpush @stop