| 12345678910111213141516171819202122232425262728293031 |
- @extends('layouts.app')
- @section('content')
- <h1 class="text-2xl font-bold mb-6">Ожидают одобрения</h1>
- <div class="bg-white rounded shadow overflow-hidden">
- <table class="w-full text-left">
- <thead class="bg-gray-50 border-b">
- <tr>
- <th class="p-4">Автор</th>
- <th class="p-4">Текст</th>
- <th class="p-4">Действие</th>
- </tr>
- </thead>
- <tbody>
- @foreach($unapprovedComments as $comment)
- <tr class="border-b">
- <td class="p-4 font-semibold">{{ $comment->author_name }}</td>
- <td class="p-4">{{ $comment->content }}</td>
- <td class="p-4">
- <form action="{{ route('comments.approve', $comment) }}" method="POST">
- @csrf @method('PATCH')
- <button class="text-green-600 font-bold">Одобрить</button>
- </form>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- @endsection
|