moderation.blade.php 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. @extends('layouts.app')
  2. @section('content')
  3. <h1 class="text-2xl font-bold mb-6">Ожидают одобрения</h1>
  4. <div class="bg-white rounded shadow overflow-hidden">
  5. <table class="w-full text-left">
  6. <thead class="bg-gray-50 border-b">
  7. <tr>
  8. <th class="p-4">Автор</th>
  9. <th class="p-4">Текст</th>
  10. <th class="p-4">Действие</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. @foreach($unapprovedComments as $comment)
  15. <tr class="border-b">
  16. <td class="p-4 font-semibold">{{ $comment->author_name }}</td>
  17. <td class="p-4">{{ $comment->content }}</td>
  18. <td class="p-4">
  19. <form action="{{ route('comments.approve', $comment) }}" method="POST">
  20. @csrf @method('PATCH')
  21. <button class="text-green-600 font-bold">Одобрить</button>
  22. </form>
  23. </td>
  24. </tr>
  25. @endforeach
  26. </tbody>
  27. </table>
  28. </div>
  29. @endsection