| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- @extends('layout')
- @section('content')
- <div class="space-y-6">
- <h1 class="text-3xl font-bold text-gray-900">Комментарии на модерацию</h1>
- <div class="bg-white shadow-sm border border-gray-100 rounded-lg overflow-hidden">
- <table class="min-w-full divide-y divide-gray-200">
- <thead class="bg-gray-50">
- <tr>
- <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">Автор</th>
- <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">Комментарий</th>
- <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">Статья</th>
- <th class="px-6 py-3 text-right text-xs font-medium text-gray-500 uppercase">Действия</th>
- </tr>
- </thead>
- <tbody class="bg-white divide-y divide-gray-200">
- @forelse($comments as $comment)
- <tr>
- <td class="px-6 py-4 whitespace-nowrap text-sm font-bold text-gray-900">
- {{ $comment->author_name }}
- </td>
- <td class="px-6 py-4 text-sm text-gray-600 max-w-xs truncate">
- {{ $comment->body }}
- </td>
- <td class="px-6 py-4 whitespace-nowrap text-sm text-indigo-600">
- <a href="{{ route('posts.show', $comment->post) }}" target="_blank">
- {{ Str::limit($comment->post->title, 20) }}
- </a>
- </td>
- <td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium space-x-2">
- <!-- Кнопка Одобрить -->
- <form action="{{ route('admin.comments.approve', $comment) }}" method="POST" class="inline-block">
- @csrf
- @method('PATCH')
- <button type="submit" class="text-green-600 hover:text-green-900 font-bold">Одобрить</button>
- </form>
- <!-- Кнопка Удалить -->
- <form action="{{ route('admin.comments.destroy', $comment) }}" method="POST" class="inline-block" onsubmit="return confirm('Удалить этот спам?');">
- @csrf
- @method('DELETE')
- <button type="submit" class="text-red-600 hover:text-red-900 ml-2">Удалить</button>
- </form>
- </td>
- </tr>
- @empty
- <tr>
- <td colspan="4" class="px-6 py-10 text-center text-gray-500">
- Нет комментариев, ожидающих проверки. Все чисто! 🎉
- </td>
- </tr>
- @endforelse
- </tbody>
- </table>
- </div>
- </div>
- @endsection
|