'datetime', ]; public function send_user() { return $this->belongsTo(User::class, 'sender')->withDefault(['id' => 0, 'username' => 'System']); } public function answer_user() { return $this->belongsTo(User::class, 'answeredby'); } }