['relationship' => true], 'user' => ['relationship' => true], 'created_at' => 'date', ]; public function comment() { return $this->belongsTo(Comment::class); } public function user() { return $this->belongsTo(User::class); } }