You've already forked Epicnabbo-Catalogus-Updated-Daily
🆙 More fixes 🆙
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user