🆙 More fixes 🆙

This commit is contained in:
Remco
2026-01-19 21:06:32 +01:00
parent 8d3115678c
commit 19269de238
3 changed files with 8 additions and 8 deletions
+5 -5
View File
@@ -2,9 +2,9 @@
namespace App\Models;
use App\Enums\NotificationType;
use App\Models\Article\ArticleComment;
use App\Models\Article\ArticleReaction;
use App\Models\Articles\WebsiteArticleComment as ArticleComment;
use App\Models\Articles\WebsiteArticleReaction as ArticleReaction;
use App\Models\Articles\Tag;
use App\Models\Compositions\HasNotificationUrl;
use Auth;
use Illuminate\Database\Eloquent\Builder;
@@ -102,12 +102,12 @@ class Article extends Model
public function comments(): HasMany
{
return $this->hasMany(ArticleComment::class)->defaultBehavior();
return $this->hasMany(ArticleComment::class);
}
public function reactions(): HasMany
{
return $this->hasMany(ArticleReaction::class)->defaultBehavior();
return $this->hasMany(ArticleReaction::class);
}
public function user()