<?php
namespace App\Http\Controllers\Account;
use App\Http\Controllers\Controller;
use Artesaos\SEOTools\Facades\SEOTools;
class CommentController extends Controller
{
public function index()
{
SEOTools::setTitle('پنل کاربری');
$comments = auth()->user()->comments()->with('commentable')->latest()->paginate($this->pageLimit);
return view('account.comments.index', compact('comments'));
}
}