summaryrefslogtreecommitdiff
path: root/src/Models/NewsComment.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Models/NewsComment.php')
-rw-r--r--src/Models/NewsComment.php47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/Models/NewsComment.php b/src/Models/NewsComment.php
new file mode 100644
index 00000000..aed1926a
--- /dev/null
+++ b/src/Models/NewsComment.php
@@ -0,0 +1,47 @@
+<?php
+declare(strict_types=1);
+
+namespace Engelsystem\Models;
+
+use Carbon\Carbon;
+use Engelsystem\Models\User\UsesUserModel;
+use Illuminate\Database\Eloquent\Relations\BelongsTo;
+use Illuminate\Database\Query\Builder as QueryBuilder;
+
+/**
+ * This class represents a news comment.
+ *
+ * @property int $id
+ * @property int $news_id
+ * @property string $text
+ * @property News $news
+ * @property Carbon|null $created_at
+ * @property Carbon|null $updated_at
+ *
+ * @method static QueryBuilder|LogEntry[] whereId($value)
+ * @method static QueryBuilder|LogEntry[] whereText($value)
+ * @method static QueryBuilder|LogEntry[] whereCreatedAt($value)
+ * @method static QueryBuilder|LogEntry[] whereUpdatedAt($value)
+ */
+class NewsComment extends BaseModel
+{
+ use UsesUserModel;
+
+ /** @var bool Enable timestamps */
+ public $timestamps = true;
+
+ /** @var string[] */
+ protected $fillable = [
+ 'news_id',
+ 'text',
+ 'user_id',
+ ];
+
+ /**
+ * @return BelongsTo
+ */
+ public function news(): BelongsTo
+ {
+ return $this->belongsTo(News::class);
+ }
+}