@extends('admin.layouts.admin') @section('title') index comments @endsection @section('content')
در این قسمت نظراتی که در صفحه اصلی به نمایش درآمده‌اند را میتوانید مدیریت نمایید
لیست کامنت ها ({{ $comments->total() }})
@foreach ($comments as $key => $comment) @endforeach
# نام کاربر عنوان متن کامنت وضعیت عملیات
{{ $comments->firstItem() + $key }} {{-- --}} {{ $comment->user->name == null ? $comment->user->cellphone : $comment->user->name }} {{-- --}} {{ $comment->title }} {{ $comment->description }} {{ $comment->published }} نمایش
@csrf @method('DELETE')
{{ $comments->render() }}
@endsection