@extends('layouts.userLayouts') @section('main')

نقد و نظرات

@if(count($comments) == 0)

موردی برای نمایش وجود ندارد!

@endif @foreach ($comments as $comment)
امتیاز من به محصول
@if($comment->status == 1)
تایید شده
@elseif($comment->status == 0)
در انتظار تایید
@else
تایید نشده
@endif
@if($comment->body != strip_tags($comment->body)) {!! $comment->body !!} @else

{{$comment->body}}

@endif
{{$comment->like()->where('type_id','like')->count()}} {{$comment->like()->where('type_id','dislike')->count()}}
@endforeach
{!! $comments->links() !!}
@include('layouts.loading') @endsection @section('footer') @parent @stop