@extends('admin.layouts.app') @section('title', 'Yorumlar - CBL Admin Panel') @section('breadcrumbs') Dashboard / Yorumlar @endsection @section('content')

YORUMLAR

Tüm yorumları yönetin ve filtreleyin.

Toplam: {{ $comments->total() }} yorum

Gelişmiş Arama ve Filtreleme

@if(request('category') || request('status') || request('comment_id') || request('search')) Filtreleri Temizle @endif

Hızlı İstatistikler

Onay Bekleyen
{{ $commentStats['press']['pending'] + $commentStats['news']['pending'] + $commentStats['teams']['pending'] + $commentStats['players']['pending'] + $commentStats['matches']['pending'] + $commentStats['general']['pending'] }}
Onaylanmış
{{ $commentStats['press']['approved'] + $commentStats['news']['approved'] + $commentStats['teams']['approved'] + $commentStats['players']['approved'] + $commentStats['matches']['approved'] + $commentStats['general']['approved'] }}

Yorum Listesi

{{ $comments->firstItem() ?? 0 }} - {{ $comments->lastItem() ?? 0 }} / {{ $comments->total() }}
@if($comments->count() > 0)
@foreach($comments as $comment) @endforeach
ID Kullanıcı İçerik Tip Durum Tarih İşlemler
#{{ $comment->kyid }}
{{ substr($comment->isim ?: 'A', 0, 1) }}
{{ $comment->isim ?: 'Anonim' }}
{{ $comment->unvan ?: '-' }}
{{ Str::limit($comment->yorum, 100) }}
@if($comment->takimID) Takım @elseif($comment->oyuncuID) Oyuncu @elseif($comment->macID) Maç @elseif($comment->haberID) Haber @elseif($comment->basindaID) Basında @else Genel @endif
@if($comment->onay == 1) Onaylandı @elseif($comment->onay == 0) Onay Bekliyor @else Reddedildi @endif
{{ date('d.m.Y H:i', $comment->tarih) }}
@if($comment->onay == 0)
@csrf
@csrf
@endif
@csrf @method('DELETE')
@if($comments->hasPages())
{{ $comments->links() }}
@endif @else

Henüz yorum bulunmuyor

Seçilen kriterlere uygun yorum bulunamadı.

@endif
@endsection