Files
zh-chat-server/app/Models/Comment.php
2022-11-01 16:39:45 +08:00

20 lines
355 B
PHP

<?php
namespace App\Models;
use App\Models\Traits\BelongsToUser;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class Comment extends Model
{
use SoftDeletes;
use BelongsToUser;
public function parent(): BelongsTo
{
return $this->belongsTo(__CLASS__, 'parent_id');
}
}