62 lines
1.5 KiB
PHP
62 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class StoryComment extends Model
|
|
{
|
|
use HasFactory;
|
|
use SoftDeletes;
|
|
|
|
protected $fillable = [
|
|
'story_id',
|
|
'user_id',
|
|
'parent_id',
|
|
'content',
|
|
'raw_content',
|
|
'rendered_content',
|
|
'is_approved',
|
|
];
|
|
|
|
protected $casts = [
|
|
'story_id' => 'integer',
|
|
'user_id' => 'integer',
|
|
'parent_id' => 'integer',
|
|
'is_approved' => 'boolean',
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
'deleted_at' => 'datetime',
|
|
];
|
|
|
|
public function story(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Story::class, 'story_id');
|
|
}
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'user_id');
|
|
}
|
|
|
|
public function parent(): BelongsTo
|
|
{
|
|
return $this->belongsTo(self::class, 'parent_id');
|
|
}
|
|
|
|
public function replies(): HasMany
|
|
{
|
|
return $this->hasMany(self::class, 'parent_id')->orderBy('created_at');
|
|
}
|
|
|
|
public function approvedReplies(): HasMany
|
|
{
|
|
return $this->replies()->where('is_approved', true)->whereNull('deleted_at')->with(['user.profile', 'approvedReplies']);
|
|
}
|
|
} |