@extends('admin.layout.panel') @section('title') مدیریت دیدگاه ها @endsection @section('css') @endsection @section('content')
با تعیین فیلتر های خود در خروجی تغییر ایجاد کنید
با انتخاب امکانات در دیدگاه های خود تغییر ایجاد کنید
| شناسه | هدف مورد نظر | نام کاربر | نظر | {{--تعداد پسندیدن | تعداد نپسندیدن | --}}اسپویل | وضعیت | امکانات |
|---|---|---|---|---|---|---|---|---|
| {{ $comment->id }} | {{ $comment->getModel() }} | {{ $comment->user->username }} |
|
{{-- {{ $comment->likeVotes() }} | {{ $comment->dislikeVotes() }} | --}}@if ($comment->spoil == 1) بله @else خیر @endif | @if ($comment->comment_status_id == 1) {{ $comment->commentStatus->title }} @elseif ($comment->comment_status_id == 2) {{ $comment->commentStatus->title }} @elseif ($comment->comment_status_id == 3) {{ $comment->commentStatus->title }} @else {{ $comment->commentStatus->title }} @endif |
@can(\App\Enum\Permissions::WEB_CHANGE_STATUS_EN_LECTURE)
comment_status_id == 1) class="btn btn-success d-inline-flex justify-content-center align-items-lg-center"
@elseif ($comment->comment_status_id == 2)
class="btn btn-danger d-inline-flex justify-content-center align-items-lg-center"
@elseif ($comment->comment_status_id == 3)
class="btn btn-light d-inline-flex justify-content-center align-items-lg-center"
@else
class="btn btn-info d-inline-flex justify-content-center align-items-lg-center" @endif
data-effect="effect-scale" data-toggle="modal"
href="#modalChangeStatus{{ $comment->id }}">
|