@extends('adtrpanel.layouts.master') @section('title','Yorum Yönetimi') @section('content') @include('adtrpanel.partials.header') {{ trans('admin.comments') }} {{ trans('admin.comment_owner') }} {{ trans('admin.mail_address') }} {{ trans('admin.comment_date') }} Durum {{ trans('admin.actions') }} @if (count($comments) > 0 ) @foreach($comments as $comment) {{ $comment->name }} {{ $comment->email }} {{ $comment->created_at }} @if($comment->status) Onaylandı @else Onaylanmadı @endif Sil İncele @if($comment->status) Onayı Kaldır @else Onayla @endif @endforeach {{ trans('admin.selected_for') }} {{ trans('admin.choose') }} {{ trans('admin.delete') }} {{ $comments->links() }} @else {{ trans('admin.no_comments_found') }} @endif @endsection @section('css') @endsection @section('js') @endsection