@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->product->name }} {{ $comment->text }} {{ $comment->approved }} نمایش
@csrf @method('DELETE')
{{ $comments->render() }}
@endsection