@extends('layouts.admin') @section('content')
عرض الكل
@foreach($comments as $comment) @endforeach
# المستخدم تمت المراجعة الاسم الايميل المحتوى المقال تحكم
{{$comment->id}} {{$comment->user?->name}}
{{$comment->adder_name}} {{$comment->adder_email}} {{ \Str::limit($comment->content, 80) }} {{ \Str::limit($comment->article->title_en, 80) }} @can('comments-update') تحكم @endcan @can('comments-delete')
@csrf @method("DELETE")
@endcan
{{$comments->appends(request()->query())->render()}}
@endsection @push('scripts') @endpush