Admin: Add comments overview for moderation

This commit is contained in:
2025-10-29 15:59:43 +01:00
parent 59d63abd79
commit 9ca2f73714
6 changed files with 127 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
class CommentsController extends Controller
{
/**
* Display Comments Page.
*/
public function index(): \Illuminate\View\View
{
return view('admin.comments.index');
}
}