@extends('admin.master') @section('title', $title) @section('content')
@foreach($comments as $comment) @endforeach
{{ __('Items') }} {{ __('Name') }} {{ __('Email') }} Comment {{ __('Approved') }} {{ __('Posted at') }}
{{ ucfirst($comment->item_name) }} {{ $comment->user_name }} {{ $comment->user_email }} {{ __('Read') }}
approved) checked @endif @change="updateStatus($event)" data-id="{{ $comment->id }}" data-item-id="{{ $comment->item_id }}" data-user-id="{{ $comment->user_id }}">
{{ $comment->created_at }}
{{ $comments->appends($base_uri)->onEachSide(1)->links() }} {{ $comments->appends($base_uri)->links('vendor.pagination.simple-semantic-ui') }}
@endsection