Improvements: fix duplicate seeder, add missing seeders, remove redundant $with, add migration down(), optimize queries

This commit is contained in:
root
2026-06-08 18:33:24 +02:00
parent 9bb2e4246b
commit 6eeb85fcf2
9 changed files with 35 additions and 15 deletions
@@ -29,6 +29,8 @@ class ArticleController extends Controller
public function show(WebsiteArticle $article): View
{
$article->load('user:id,username,look');
$reactions = $article->reactions()
->with('user:id,username')
->get();